ember-inspector 4.13.1-alpha.2024.8.9 → 4.13.1-alpha.2025.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/app/components/app-picker.hbs +2 -2
- package/app/components/component-tree-item.hbs +13 -13
- package/app/components/component-tree-toolbar.hbs +3 -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/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-grouped.hbs +5 -5
- package/app/components/object-inspector/property.hbs +16 -16
- package/app/components/object-inspector/property.ts +26 -17
- package/app/components/object-inspector/sort-properties.js +12 -4
- package/app/components/object-inspector.hbs +8 -8
- 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/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 +33 -34
- package/app/controllers/component-tree.js +3 -2
- 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 +1 -0
- 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/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 +6 -12
- 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 +1 -1
- 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} +43 -46
- package/app/services/adapters/websocket.ts +40 -0
- package/app/services/layout.ts +88 -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} +9 -20
- package/app/styles/base.scss +4 -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 +22 -21
- package/app/styles/utils.scss +408 -122
- package/app/templates/application.hbs +11 -11
- package/app/templates/component-tree.hbs +1 -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 +30 -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.6a5edcbbcf29cbe1b167.js +40 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
- package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.css +150 -155
- package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.js +486 -590
- package/dist/bookmarklet/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- 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/vendor.css +147 -148
- package/dist/bookmarklet/panes-3-16-0/assets/vendor.js +5153 -5980
- package/dist/bookmarklet/panes-3-16-0/ember_debug.js +250 -268
- package/dist/bookmarklet/panes-3-16-0/index.html +3 -4
- package/dist/chrome/background.js +26 -21
- package/dist/chrome/boot.js +1 -1
- package/dist/chrome/content-script.js +11 -11
- package/dist/chrome/devtools.js +12 -3
- package/dist/chrome/manifest.json +2 -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.6a5edcbbcf29cbe1b167.js +40 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
- package/dist/chrome/panes-3-16-0/assets/ember-inspector.css +150 -155
- package/dist/chrome/panes-3-16-0/assets/ember-inspector.js +486 -590
- package/dist/chrome/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- 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/vendor.css +147 -148
- package/dist/chrome/panes-3-16-0/assets/vendor.js +5153 -5980
- package/dist/chrome/panes-3-16-0/ember_debug.js +250 -268
- package/dist/chrome/panes-3-16-0/index.html +3 -4
- 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 +11 -11
- package/dist/firefox/devtools.js +12 -3
- package/dist/firefox/manifest.json +2 -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.6a5edcbbcf29cbe1b167.js +40 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
- package/dist/firefox/panes-3-16-0/assets/ember-inspector.css +150 -155
- package/dist/firefox/panes-3-16-0/assets/ember-inspector.js +486 -590
- package/dist/firefox/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- 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/vendor.css +147 -148
- package/dist/firefox/panes-3-16-0/assets/vendor.js +5153 -5980
- package/dist/firefox/panes-3-16-0/ember_debug.js +250 -268
- package/dist/firefox/panes-3-16-0/index.html +3 -4
- 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.6a5edcbbcf29cbe1b167.js +40 -0
- package/dist/websocket/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
- package/dist/websocket/assets/ember-inspector.css +150 -155
- package/dist/websocket/assets/ember-inspector.js +486 -590
- package/dist/websocket/assets/svg/ellipsis.svg +3 -3
- 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/vendor.css +147 -148
- package/dist/websocket/assets/vendor.js +5153 -5980
- package/dist/websocket/ember_debug.js +250 -268
- package/dist/websocket/index.html +3 -4
- package/ember-cli-build.js +11 -11
- package/ember_debug/adapters/basic.js +2 -1
- package/ember_debug/adapters/bookmarklet.js +1 -0
- package/ember_debug/adapters/firefox.js +3 -3
- package/ember_debug/adapters/web-extension.js +2 -1
- package/ember_debug/data-debug.js +5 -6
- package/ember_debug/deprecation-debug.js +8 -8
- package/ember_debug/general-debug.js +1 -1
- package/ember_debug/libs/capture-render-tree.js +0 -1
- package/ember_debug/libs/promise-assembler.js +1 -0
- package/ember_debug/libs/render-tree.js +13 -12
- package/ember_debug/libs/source-map.js +5 -4
- package/ember_debug/libs/view-inspection.js +12 -12
- package/ember_debug/main.js +1 -1
- package/ember_debug/models/profile-manager.js +2 -1
- package/ember_debug/object-inspector.js +19 -18
- package/ember_debug/port.js +1 -0
- package/ember_debug/promise-debug.js +1 -1
- package/ember_debug/route-debug.js +3 -2
- package/ember_debug/services/session.js +1 -1
- package/ember_debug/utils/classify.js +1 -1
- package/ember_debug/utils/ember/debug.js +2 -0
- package/ember_debug/utils/ember/loader.js +2 -2
- package/ember_debug/utils/ember/runloop.js +2 -0
- package/ember_debug/utils/ember-object-names.js +2 -2
- package/ember_debug/utils/ember.js +9 -3
- package/ember_debug/utils/evented.js +1 -1
- package/ember_debug/utils/get-object-name.js +2 -2
- package/ember_debug/utils/rsvp.js +1 -0
- package/ember_debug/utils/type-check.js +5 -1
- package/ember_debug/vendor/startup-wrapper.js +4 -1
- package/ember_debug/view-debug.js +3 -2
- package/eslint.config.mjs +172 -0
- package/gulpfile.js +1 -1
- package/lib/ui/addon/components/drag-handle.hbs +4 -4
- package/lib/ui/addon/components/drag-handle.js +3 -1
- package/lib/ui/addon/components/empty-message.hbs +1 -1
- package/lib/ui/addon/components/error-page.hbs +3 -3
- package/lib/ui/addon/components/resizable-column.js +1 -1
- package/lib/ui/addon/components/toolbar-clear-button.hbs +1 -1
- package/lib/ui/addon/components/toolbar-reload-button.hbs +1 -1
- package/lib/ui/addon/components/toolbar-search-field.hbs +2 -2
- package/lib/ui/addon/styles/_disclosure-triangle.scss +3 -1
- package/lib/ui/addon/styles/_drag-handle.scss +7 -7
- package/lib/ui/addon/styles/_empty-message.scss +1 -1
- package/lib/ui/addon/styles/_error-page.scss +8 -7
- package/lib/ui/addon/styles/_list.scss +46 -45
- package/lib/ui/addon/styles/_nav.scss +29 -27
- package/lib/ui/addon/styles/_object-inspector-toggle.scss +5 -5
- package/lib/ui/addon/styles/_pill.scss +4 -4
- package/lib/ui/addon/styles/_send-to-console.scss +1 -1
- package/lib/ui/addon/styles/_split.scss +17 -20
- package/lib/ui/addon/styles/addon.scss +13 -13
- package/lib/ui/addon/styles/toolbar/_checkbox.scss +5 -5
- package/lib/ui/addon/styles/toolbar/_icon-button.scss +44 -25
- package/lib/ui/addon/styles/toolbar/_index.scss +6 -5
- package/lib/ui/addon/styles/toolbar/_radio.scss +10 -10
- package/lib/ui/addon/styles/toolbar/_search.scss +5 -3
- package/package.json +85 -86
- package/public/assets/svg/ellipsis.svg +3 -3
- 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/scripts/download-panes.js +1 -1
- package/skeletons/bookmarklet/load_inspector.js +30 -11
- package/skeletons/web-extension/background.js +26 -21
- package/skeletons/web-extension/boot.js +1 -1
- package/skeletons/web-extension/content-script.js +11 -11
- package/skeletons/web-extension/devtools.js +12 -3
- package/skeletons/web-extension/manifest.json +2 -2
- 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 +43 -57
- package/tests/acceptance/container-test.js +0 -2
- package/tests/acceptance/data-test.js +8 -10
- 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 +3 -3
- package/tests/ember_debug/container-debug-test.js +4 -4
- package/tests/ember_debug/deprecation-debug-test.js +8 -5
- package/tests/ember_debug/ember-debug-test.js +1 -4
- package/tests/ember_debug/object-inspector-test.js +44 -44
- package/tests/ember_debug/profile-manager-test.js +140 -165
- package/tests/ember_debug/profile-node-test.js +3 -3
- package/tests/ember_debug/promise-assembler-test.js +12 -9
- package/tests/ember_debug/promise-debug-test.js +5 -6
- package/tests/ember_debug/route-debug-test.js +8 -7
- package/tests/ember_debug/view-debug-test.js +179 -181
- package/tests/helpers/{index.js → index.ts} +6 -5
- package/tests/helpers/setup-ember-debug-test.js +14 -0
- package/tests/integration/injection-test.js +12 -13
- package/tests/test-adapter.js +15 -15
- package/tests/test-helper.js +6 -1
- 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 +22 -0
- package/tsconfig.json +3 -1
- package/types/ember-inspector/index.d.ts +2 -1
- package/types/global.d.ts +1 -7
- package/.editorconfig +0 -19
- package/.ember-cli +0 -15
- package/.eslintignore +0 -33
- package/.eslintrc.js +0 -86
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -30
- package/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
- package/.github/dependabot.yml +0 -14
- package/.github/pull_request_template.md +0 -4
- package/.github/workflows/build.yml +0 -339
- package/.github/workflows/plan-release.yml +0 -83
- package/.github/workflows/publish.yml +0 -60
- package/.prettierignore +0 -25
- package/.prettierrc.js +0 -14
- package/.release-plan.json +0 -17
- package/.stylelintrc.js +0 -3
- package/.template-lintrc.js +0 -12
- package/.tool-versions +0 -2
- package/.watchmanconfig +0 -3
- package/app/components/.gitkeep +0 -0
- package/app/components/list-content.js +0 -130
- package/app/controllers/.gitkeep +0 -0
- package/app/controllers/promise-tree.js +0 -130
- package/app/helpers/.gitkeep +0 -0
- package/app/libs/promise-assembler.js +0 -169
- package/app/models/.gitkeep +0 -0
- package/app/routes/.gitkeep +0 -0
- 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.143ca772b0b28102c74a.js +0 -28
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.178.b50e140d1ed8777b583e.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/chrome/panes-3-16-0/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
- package/dist/chrome/panes-3-16-0/assets/chunk.178.b50e140d1ed8777b583e.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/firefox/panes-3-16-0/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
- package/dist/firefox/panes-3-16-0/assets/chunk.178.b50e140d1ed8777b583e.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/websocket/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
- package/dist/websocket/assets/chunk.178.b50e140d1ed8777b583e.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/ember_debug/.eslintrc.js +0 -13
- package/tests/helpers/trigger-port.js +0 -6
- package/tests/unit/.gitkeep +0 -0
- /package/app/{app.js → app.ts} +0 -0
- /package/app/controllers/{info.js → info.ts} +0 -0
- /package/app/services/adapters/{firefox.js → firefox.ts} +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
<div class="
|
1
|
+
<div class="toolbar-search relative mx-1" ...attributes>
|
2
2
|
<Input
|
3
3
|
id={{this.inputId}}
|
4
4
|
@type="text"
|
@@ -9,7 +9,7 @@
|
|
9
9
|
|
10
10
|
{{#if @value}}
|
11
11
|
<button
|
12
|
-
class="
|
12
|
+
class="toolbar-icon-button toolbar-search-clear-button absolute right-0 w-auto h-auto"
|
13
13
|
title="clear"
|
14
14
|
data-test-search-field-clear-button
|
15
15
|
{{on "click" this.clear}}
|
@@ -14,15 +14,15 @@
|
|
14
14
|
z-index: 500;
|
15
15
|
}
|
16
16
|
|
17
|
-
.drag-handle
|
17
|
+
.drag-handle-right {
|
18
18
|
margin-right: calc(var(--drag-handle-width) / 2 * -1);
|
19
19
|
}
|
20
20
|
|
21
|
-
.drag-handle
|
21
|
+
.drag-handle-left {
|
22
22
|
margin-left: calc(var(--drag-handle-width) / 2 * -1);
|
23
23
|
}
|
24
24
|
|
25
|
-
.drag-
|
25
|
+
.drag-handle-border {
|
26
26
|
border-left: 1px solid var(--base06);
|
27
27
|
margin-left: calc(var(--drag-handle-width) / 2);
|
28
28
|
width: 1px;
|
@@ -31,19 +31,19 @@
|
|
31
31
|
.drag-handle:active {
|
32
32
|
width: var(--drag-handle-active-width);
|
33
33
|
|
34
|
-
&.drag-handle
|
34
|
+
&.drag-handle-right {
|
35
35
|
margin-right: calc(var(--drag-handle-active-width) / 2 * -1);
|
36
36
|
}
|
37
37
|
|
38
|
-
&.drag-handle
|
38
|
+
&.drag-handle-left {
|
39
39
|
margin-left: calc(var(--drag-handle-active-width) / 2 * -1);
|
40
40
|
}
|
41
41
|
|
42
|
-
.drag-
|
42
|
+
.drag-handle-border {
|
43
43
|
margin-left: calc(var(--drag-handle-active-width) / 2);
|
44
44
|
}
|
45
45
|
}
|
46
46
|
|
47
|
-
.drag-handle
|
47
|
+
.drag-handle-faded {
|
48
48
|
opacity: 0.3;
|
49
49
|
}
|
@@ -5,7 +5,7 @@
|
|
5
5
|
For example: when application is not detected.
|
6
6
|
*/
|
7
7
|
|
8
|
-
.error-
|
8
|
+
.error-page-content {
|
9
9
|
border: 1px solid var(--base04);
|
10
10
|
width: 530px;
|
11
11
|
|
@@ -13,7 +13,7 @@
|
|
13
13
|
list-style-type: disc;
|
14
14
|
padding-left: var(--unit4);
|
15
15
|
}
|
16
|
-
|
16
|
+
|
17
17
|
li {
|
18
18
|
padding: 2px 0;
|
19
19
|
}
|
@@ -24,7 +24,7 @@
|
|
24
24
|
}
|
25
25
|
}
|
26
26
|
|
27
|
-
.error-
|
27
|
+
.error-page-header {
|
28
28
|
border-bottom: 1px solid var(--base04);
|
29
29
|
top: -25px;
|
30
30
|
|
@@ -33,21 +33,22 @@
|
|
33
33
|
flex-shrink: 0;
|
34
34
|
height: 89px;
|
35
35
|
width: 128px;
|
36
|
-
animation:
|
36
|
+
animation: tomster-reveal 0.4s cubic-bezier(0.19, 1, 0.22, 1);
|
37
37
|
animation-delay: 0.75s;
|
38
38
|
animation-fill-mode: forwards;
|
39
39
|
}
|
40
40
|
}
|
41
41
|
|
42
|
-
@keyframes
|
42
|
+
@keyframes tomster-reveal {
|
43
43
|
from {
|
44
44
|
transform: translateY(90px);
|
45
45
|
}
|
46
|
+
|
46
47
|
to {
|
47
|
-
transform: translateY(
|
48
|
+
transform: translateY(0);
|
48
49
|
}
|
49
50
|
}
|
50
51
|
|
51
|
-
.error-
|
52
|
+
.error-page-body {
|
52
53
|
border-bottom: 1px solid var(--base04);
|
53
54
|
}
|
@@ -1,3 +1,4 @@
|
|
1
|
+
/* stylelint-disable no-duplicate-selectors */
|
1
2
|
.list {
|
2
3
|
background: var(--base00);
|
3
4
|
box-sizing: border-box;
|
@@ -7,7 +8,7 @@
|
|
7
8
|
position: relative;
|
8
9
|
}
|
9
10
|
|
10
|
-
.
|
11
|
+
.list-content {
|
11
12
|
overflow: scroll;
|
12
13
|
transform: translateZ(0);
|
13
14
|
}
|
@@ -24,7 +25,7 @@
|
|
24
25
|
}
|
25
26
|
}
|
26
27
|
|
27
|
-
.
|
28
|
+
.list-header {
|
28
29
|
border-bottom: 1px solid var(--base05);
|
29
30
|
height: 30px;
|
30
31
|
overflow: hidden;
|
@@ -33,11 +34,11 @@
|
|
33
34
|
text-align: left;
|
34
35
|
user-select: none;
|
35
36
|
|
36
|
-
.
|
37
|
+
.list-row {
|
37
38
|
background: var(--base00);
|
38
39
|
}
|
39
40
|
|
40
|
-
.
|
41
|
+
.list-cell {
|
41
42
|
color: var(--inherit);
|
42
43
|
font-weight: normal;
|
43
44
|
opacity: 1;
|
@@ -47,8 +48,8 @@
|
|
47
48
|
}
|
48
49
|
}
|
49
50
|
|
50
|
-
.list:not(.
|
51
|
-
.
|
51
|
+
.list:not(.list-no-alternate-color) .list-content {
|
52
|
+
.list-row {
|
52
53
|
background: var(--base02);
|
53
54
|
|
54
55
|
&.striped {
|
@@ -57,17 +58,17 @@
|
|
57
58
|
}
|
58
59
|
}
|
59
60
|
|
60
|
-
.list.list
|
61
|
-
.
|
61
|
+
.list.list-css-striping {
|
62
|
+
.list-row:nth-child(even) {
|
62
63
|
background: var(--base00);
|
63
64
|
}
|
64
65
|
}
|
65
66
|
|
66
|
-
.
|
67
|
+
.list-cell-content {
|
67
68
|
width: 100%;
|
68
69
|
}
|
69
70
|
|
70
|
-
.
|
71
|
+
.list-cell {
|
71
72
|
box-sizing: border-box;
|
72
73
|
line-height: 30px;
|
73
74
|
min-height: 30px;
|
@@ -77,49 +78,49 @@
|
|
77
78
|
text-overflow: ellipsis;
|
78
79
|
white-space: nowrap;
|
79
80
|
|
80
|
-
|
81
|
+
&-size-small {
|
81
82
|
flex: none;
|
82
83
|
width: 50px;
|
83
84
|
}
|
84
85
|
|
85
|
-
|
86
|
+
&-size-medium {
|
86
87
|
flex: none;
|
87
88
|
width: 130px;
|
88
89
|
}
|
89
90
|
|
90
|
-
|
91
|
+
&-size-larger {
|
91
92
|
flex: none;
|
92
93
|
width: 350px;
|
93
94
|
}
|
94
95
|
|
95
|
-
|
96
|
+
&-size-large {
|
96
97
|
flex: none;
|
97
98
|
width: 250px;
|
98
99
|
}
|
99
100
|
|
100
|
-
|
101
|
+
&-size-huge {
|
101
102
|
flex: none;
|
102
103
|
width: 450px;
|
103
104
|
}
|
104
105
|
|
105
|
-
|
106
|
+
&-value-numeric {
|
106
107
|
font-family: var(--font-monospace);
|
107
108
|
min-width: 65px;
|
108
109
|
padding-right: 10px;
|
109
110
|
text-align: right;
|
110
111
|
}
|
111
112
|
|
112
|
-
|
113
|
+
&-main {
|
113
114
|
font-weight: bold;
|
114
115
|
}
|
115
116
|
|
116
|
-
|
117
|
+
&-spacer {
|
117
118
|
border: none;
|
118
119
|
flex: none;
|
119
120
|
width: 0;
|
120
121
|
}
|
121
122
|
|
122
|
-
|
123
|
+
&-clickable {
|
123
124
|
cursor: pointer;
|
124
125
|
}
|
125
126
|
}
|
@@ -128,7 +129,7 @@
|
|
128
129
|
* Content in a cell that should not take the entire
|
129
130
|
* space. Usually because it has a $E after it.
|
130
131
|
*/
|
131
|
-
.
|
132
|
+
.list-cell-partial {
|
132
133
|
display: inline-block;
|
133
134
|
float: left;
|
134
135
|
max-width: calc(100% - 40px);
|
@@ -137,11 +138,11 @@
|
|
137
138
|
white-space: nowrap;
|
138
139
|
}
|
139
140
|
|
140
|
-
.
|
141
|
+
.list-cell-partial-clickable {
|
141
142
|
cursor: pointer;
|
142
143
|
}
|
143
144
|
|
144
|
-
.
|
145
|
+
.list-cell-partial-size-medium {
|
145
146
|
max-width: calc(100% - 60px);
|
146
147
|
}
|
147
148
|
|
@@ -149,40 +150,40 @@
|
|
149
150
|
* For example a $E icon to the right
|
150
151
|
* of a cell.
|
151
152
|
*/
|
152
|
-
.
|
153
|
+
.list-cell-helper {
|
153
154
|
float: right;
|
154
155
|
margin-right: 5px;
|
155
156
|
}
|
156
157
|
|
157
|
-
.
|
158
|
+
.list-link {
|
158
159
|
cursor: pointer;
|
159
160
|
}
|
160
161
|
|
161
|
-
.
|
162
|
-
.
|
162
|
+
.list-row:hover {
|
163
|
+
.list-cell {
|
163
164
|
opacity: 1;
|
164
165
|
|
165
|
-
|
166
|
+
&-clickable {
|
166
167
|
text-decoration: underline;
|
167
168
|
}
|
168
169
|
}
|
169
170
|
|
170
|
-
.
|
171
|
+
.list-cell-partial-clickable {
|
171
172
|
text-decoration: underline;
|
172
173
|
}
|
173
174
|
|
174
|
-
.
|
175
|
+
.list-link {
|
175
176
|
text-decoration: underline;
|
176
177
|
}
|
177
178
|
}
|
178
179
|
|
179
|
-
.
|
180
|
-
.
|
180
|
+
.list-row-highlight .list-cell,
|
181
|
+
.list-cell-highlight {
|
181
182
|
opacity: 1;
|
182
183
|
}
|
183
184
|
|
184
185
|
/* ARROW FOR COLLAPSING AND EXPANDING */
|
185
|
-
.
|
186
|
+
.list-cell-arrow {
|
186
187
|
cursor: pointer;
|
187
188
|
display: block;
|
188
189
|
float: left;
|
@@ -190,7 +191,7 @@
|
|
190
191
|
position: relative;
|
191
192
|
width: 15px;
|
192
193
|
|
193
|
-
|
194
|
+
&::before {
|
194
195
|
color: var(--base10);
|
195
196
|
font-size: 75%;
|
196
197
|
position: absolute;
|
@@ -200,37 +201,37 @@
|
|
200
201
|
}
|
201
202
|
|
202
203
|
/* cell expanding/collapsing */
|
203
|
-
.
|
204
|
-
.
|
204
|
+
.list-cell-arrow-expanded,
|
205
|
+
.list-cell-arrow-collapsed {
|
205
206
|
cursor: pointer;
|
206
207
|
}
|
207
208
|
|
208
|
-
.
|
209
|
-
.
|
209
|
+
.list-cell-arrow-collapsed {
|
210
|
+
.list-cell-arrow::before {
|
210
211
|
content: "\25B6";
|
211
212
|
}
|
212
213
|
}
|
213
214
|
|
214
|
-
.
|
215
|
-
.
|
215
|
+
.list-cell-arrow-expanded {
|
216
|
+
.list-cell-arrow::before {
|
216
217
|
content: "\25BC";
|
217
218
|
}
|
218
219
|
}
|
219
220
|
|
220
|
-
.
|
221
|
-
.
|
221
|
+
.list-row-arrow-collapsed,
|
222
|
+
.list-row-arrow-expanded {
|
222
223
|
cursor: pointer;
|
223
224
|
position: relative;
|
224
225
|
}
|
225
226
|
|
226
|
-
.
|
227
|
-
.
|
227
|
+
.list-row-arrow-collapsed {
|
228
|
+
.list-cell-arrow::before {
|
228
229
|
content: "\25B6";
|
229
230
|
}
|
230
231
|
}
|
231
232
|
|
232
|
-
.
|
233
|
-
.
|
233
|
+
.list-row-arrow-expanded {
|
234
|
+
.list-cell-arrow::before {
|
234
235
|
content: "\25BC";
|
235
236
|
}
|
236
237
|
}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
$nav
|
1
|
+
$nav-main-item-height: 38px;
|
2
2
|
|
3
|
-
.
|
3
|
+
.nav-title {
|
4
4
|
color: var(--base09);
|
5
5
|
cursor: default;
|
6
6
|
font-size: 1.2rem;
|
@@ -26,7 +26,7 @@ $nav--main-item-height: 38px;
|
|
26
26
|
Anchor tag
|
27
27
|
*/
|
28
28
|
|
29
|
-
.
|
29
|
+
.nav-item {
|
30
30
|
align-items: center;
|
31
31
|
color: var(--base15);
|
32
32
|
cursor: default;
|
@@ -39,15 +39,17 @@ $nav--main-item-height: 38px;
|
|
39
39
|
text-overflow: ellipsis;
|
40
40
|
white-space: nowrap;
|
41
41
|
|
42
|
-
&:focus {
|
42
|
+
&:focus {
|
43
|
+
outline: none;
|
44
|
+
}
|
43
45
|
}
|
44
46
|
|
45
|
-
.
|
47
|
+
.nav-item.active {
|
46
48
|
background: var(--focus);
|
47
49
|
color: var(--focus-text);
|
48
50
|
}
|
49
51
|
|
50
|
-
.app.inactive .
|
52
|
+
.app.inactive .nav-item.active {
|
51
53
|
background: var(--base06);
|
52
54
|
}
|
53
55
|
|
@@ -57,45 +59,45 @@ $nav--main-item-height: 38px;
|
|
57
59
|
Main text of Nav Item
|
58
60
|
*/
|
59
61
|
|
60
|
-
.
|
62
|
+
.nav-item-label {
|
61
63
|
flex-grow: 1;
|
62
64
|
font-size: 1.3rem;
|
63
65
|
}
|
64
66
|
|
65
|
-
.nav
|
66
|
-
.nav
|
67
|
+
.nav-collapsed .nav-item-label,
|
68
|
+
.nav-collapsed .nav-item .pill {
|
67
69
|
display: none;
|
68
70
|
}
|
69
71
|
|
70
|
-
.
|
72
|
+
.nav-item-icon {
|
71
73
|
flex-shrink: 0;
|
72
74
|
height: 22px;
|
73
75
|
margin-right: 7px;
|
74
76
|
width: 22px;
|
75
77
|
}
|
76
78
|
|
77
|
-
.
|
79
|
+
.nav-icon-stroke {
|
78
80
|
fill: var(--base12);
|
79
81
|
}
|
80
82
|
|
81
|
-
.
|
83
|
+
.nav-item.active .nav-icon-stroke {
|
82
84
|
fill: var(--focus-text);
|
83
85
|
}
|
84
86
|
|
85
87
|
/* Custom navs */
|
86
88
|
|
87
|
-
.nav
|
88
|
-
height: $nav
|
89
|
-
line-height: $nav
|
89
|
+
.nav-main .nav-item {
|
90
|
+
height: $nav-main-item-height;
|
91
|
+
line-height: $nav-main-item-height;
|
90
92
|
padding-left: 12px;
|
91
93
|
}
|
92
94
|
|
93
|
-
.nav
|
95
|
+
.nav-main .pill {
|
94
96
|
margin-right: var(--unit1);
|
95
97
|
margin-left: var(--unit1);
|
96
98
|
}
|
97
99
|
|
98
|
-
.nav.nav
|
100
|
+
.nav.nav-main .nav-title {
|
99
101
|
padding-left: 14px;
|
100
102
|
}
|
101
103
|
|
@@ -123,30 +125,30 @@ $nav--main-item-height: 38px;
|
|
123
125
|
}
|
124
126
|
|
125
127
|
// when nav is expaned, layout horizontally
|
126
|
-
.
|
128
|
+
.nav-footer.nav-expanded {
|
127
129
|
display: grid;
|
128
|
-
grid-template: "left center right" $nav
|
129
|
-
height: $nav
|
130
|
+
grid-template: "left center right" $nav-main-item-height / auto 1fr auto;
|
131
|
+
height: $nav-main-item-height;
|
130
132
|
}
|
131
133
|
|
132
134
|
// when nav is collapsed, layout vertically
|
133
|
-
.
|
135
|
+
.nav-footer.nav-collapsed {
|
134
136
|
display: grid;
|
135
137
|
grid-template:
|
136
|
-
"left" $nav
|
137
|
-
"right" $nav
|
138
|
+
"left" $nav-main-item-height - 6px
|
139
|
+
"right" $nav-main-item-height - 6px;
|
138
140
|
height: auto;
|
139
141
|
}
|
140
142
|
|
141
|
-
.
|
143
|
+
.nav-overflow.nav-overflow-active {
|
142
144
|
background-color: var(--focus);
|
143
145
|
|
144
|
-
.
|
146
|
+
.nav-icon-stroke {
|
145
147
|
fill: var(--focus-text);
|
146
148
|
}
|
147
149
|
}
|
148
150
|
|
149
151
|
// force select to cover clickable area
|
150
|
-
.
|
151
|
-
height: $nav
|
152
|
+
.nav-overflow select {
|
153
|
+
height: $nav-main-item-height;
|
152
154
|
}
|
@@ -1,11 +1,11 @@
|
|
1
|
-
.object-inspector-toggle.
|
2
|
-
margin-right: 0; // .
|
1
|
+
.object-inspector-toggle.toolbar-icon-button {
|
2
|
+
margin-right: 0; // .toolbar-icon-button override
|
3
3
|
max-height: var(--toolbar-height);
|
4
|
-
padding-right: 6px; // .
|
5
|
-
padding-left: 6px; // .
|
4
|
+
padding-right: 6px; // .toolbar-icon-button override
|
5
|
+
padding-left: 6px; // .toolbar-icon-button override
|
6
6
|
transform: scaleX(-1);
|
7
7
|
|
8
|
-
// use .
|
8
|
+
// use .toolbar-icon-button active style AND flip horizontally
|
9
9
|
&:active {
|
10
10
|
transform: translate(1px, 1px) scaleX(-1);
|
11
11
|
}
|
@@ -16,16 +16,16 @@
|
|
16
16
|
background: var(--pill-bg-active);
|
17
17
|
}
|
18
18
|
|
19
|
-
.pill
|
20
|
-
font-size:
|
19
|
+
.pill-small {
|
20
|
+
font-size: 1rem;
|
21
21
|
padding: 2px 4px;
|
22
22
|
}
|
23
23
|
|
24
|
-
.pill
|
24
|
+
.pill-text {
|
25
25
|
font-family: var(--font-sans-serif);
|
26
26
|
}
|
27
27
|
|
28
|
-
.pill
|
28
|
+
.pill-blue {
|
29
29
|
background: var(--focus);
|
30
30
|
color: var(--focus-text);
|
31
31
|
}
|
@@ -7,19 +7,16 @@
|
|
7
7
|
/* .split: The container for one or more panels */
|
8
8
|
|
9
9
|
.split {
|
10
|
-
|
10
|
+
inset: 0;
|
11
11
|
display: flex;
|
12
12
|
flex: auto;
|
13
13
|
flex-direction: row;
|
14
|
-
left: 0;
|
15
14
|
position: absolute;
|
16
|
-
right: 0;
|
17
|
-
top: 0;
|
18
15
|
}
|
19
16
|
|
20
|
-
/* .
|
17
|
+
/* .split-panel: Contains a body, and optional header and footer elements */
|
21
18
|
|
22
|
-
.
|
19
|
+
.split-panel {
|
23
20
|
display: flex;
|
24
21
|
flex: auto;
|
25
22
|
flex-direction: column;
|
@@ -27,14 +24,14 @@
|
|
27
24
|
overflow: hidden;
|
28
25
|
}
|
29
26
|
|
30
|
-
.
|
31
|
-
.
|
32
|
-
.
|
27
|
+
.split-panel-hd,
|
28
|
+
.split-panel-bd,
|
29
|
+
.split-panel-ft {
|
33
30
|
position: relative;
|
34
31
|
}
|
35
32
|
|
36
|
-
.
|
37
|
-
.
|
33
|
+
.split-panel-hd,
|
34
|
+
.split-panel-ft {
|
38
35
|
border-color: var(--base03);
|
39
36
|
box-sizing: border-box;
|
40
37
|
display: flex;
|
@@ -42,14 +39,14 @@
|
|
42
39
|
flex-direction: column;
|
43
40
|
}
|
44
41
|
|
45
|
-
.
|
42
|
+
.split-panel-hd {
|
46
43
|
background: var(--base00);
|
47
44
|
border-bottom-style: solid;
|
48
45
|
border-bottom-width: 1px;
|
49
46
|
min-height: 29px;
|
50
47
|
}
|
51
48
|
|
52
|
-
.
|
49
|
+
.split-panel-bd {
|
53
50
|
background: var(--base00);
|
54
51
|
flex: auto;
|
55
52
|
overflow: scroll;
|
@@ -57,7 +54,7 @@
|
|
57
54
|
width: auto;
|
58
55
|
}
|
59
56
|
|
60
|
-
.
|
57
|
+
.split-panel-ft {
|
61
58
|
background: var(--base01);
|
62
59
|
border-top-style: solid;
|
63
60
|
border-top-width: 1px;
|
@@ -65,26 +62,26 @@
|
|
65
62
|
justify-content: center;
|
66
63
|
}
|
67
64
|
|
68
|
-
.
|
69
|
-
.
|
65
|
+
.split-panel,
|
66
|
+
.split-panel-bd {
|
70
67
|
height: 100%;
|
71
68
|
}
|
72
69
|
|
73
70
|
/* Custom panels */
|
74
71
|
|
75
|
-
.
|
72
|
+
.split-panel-sidebar-1 .split-panel-bd {
|
76
73
|
background: var(--base01);
|
77
74
|
}
|
78
75
|
|
79
|
-
.
|
76
|
+
.split-panel-sidebar-2 .split-panel-bd {
|
80
77
|
background: var(--base01);
|
81
78
|
}
|
82
79
|
|
83
80
|
/* Fix main list-view scrolling */
|
84
|
-
.split
|
81
|
+
.split-main > .split-panel > .split-panel-bd {
|
85
82
|
overflow: hidden;
|
86
83
|
}
|
87
84
|
|
88
|
-
.split
|
85
|
+
.split-main > .split-panel-sidebar-1 > .split-panel-bd {
|
89
86
|
overflow-y: auto;
|
90
87
|
}
|