ember-inspector 4.13.1-alpha.2024.8.9 → 4.13.1-alpha.2025.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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.c8707b06d2f496a0d15d.js +40 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.582.6d68f76dc5c8ba2b48a8.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.c8707b06d2f496a0d15d.js +40 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.582.6d68f76dc5c8ba2b48a8.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.c8707b06d2f496a0d15d.js +40 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.582.6d68f76dc5c8ba2b48a8.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.c8707b06d2f496a0d15d.js +40 -0
- package/dist/websocket/assets/chunk.582.6d68f76dc5c8ba2b48a8.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
package/app/styles/utils.scss
CHANGED
@@ -1,76 +1,196 @@
|
|
1
1
|
$units: 0, 1, 2, 3, 4, 5, 6;
|
2
2
|
|
3
|
-
.box-border {
|
3
|
+
.box-border {
|
4
|
+
box-sizing: border-box;
|
5
|
+
}
|
6
|
+
|
7
|
+
.absolute {
|
8
|
+
position: absolute;
|
9
|
+
}
|
4
10
|
|
5
|
-
.
|
6
|
-
|
7
|
-
|
11
|
+
.relative {
|
12
|
+
position: relative;
|
13
|
+
}
|
14
|
+
|
15
|
+
.grid {
|
16
|
+
display: grid;
|
17
|
+
}
|
8
18
|
|
9
19
|
.sticky {
|
10
|
-
position: -webkit-sticky;
|
11
20
|
position: sticky;
|
12
21
|
}
|
13
22
|
|
14
|
-
.top-0 {
|
15
|
-
|
16
|
-
|
17
|
-
.left-0 { left: 0; }
|
23
|
+
.top-0 {
|
24
|
+
top: 0;
|
25
|
+
}
|
18
26
|
|
19
|
-
.
|
27
|
+
.right-0 {
|
28
|
+
right: 0;
|
29
|
+
}
|
30
|
+
|
31
|
+
.bottom-0 {
|
20
32
|
bottom: 0;
|
33
|
+
}
|
34
|
+
|
35
|
+
.left-0 {
|
21
36
|
left: 0;
|
22
|
-
right: 0;
|
23
|
-
top: 0;
|
24
37
|
}
|
25
38
|
|
26
|
-
.
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
.
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
.
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
.
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
.
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
.
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
.
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
.
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
.
|
63
|
-
|
39
|
+
.inset-0 {
|
40
|
+
inset: 0;
|
41
|
+
}
|
42
|
+
|
43
|
+
.overflow-auto {
|
44
|
+
overflow: auto;
|
45
|
+
}
|
46
|
+
|
47
|
+
.overflow-hidden {
|
48
|
+
overflow: hidden;
|
49
|
+
}
|
50
|
+
|
51
|
+
.block {
|
52
|
+
display: block;
|
53
|
+
}
|
54
|
+
|
55
|
+
.inline {
|
56
|
+
display: inline;
|
57
|
+
}
|
58
|
+
|
59
|
+
.inline-block {
|
60
|
+
display: inline-block;
|
61
|
+
}
|
62
|
+
|
63
|
+
.flex {
|
64
|
+
display: flex;
|
65
|
+
}
|
66
|
+
|
67
|
+
.inline-flex {
|
68
|
+
display: inline-flex;
|
69
|
+
}
|
70
|
+
|
71
|
+
.flex-1 {
|
72
|
+
flex: 1 1 0%;
|
73
|
+
}
|
74
|
+
|
75
|
+
.flex-auto {
|
76
|
+
flex: 1 1 auto;
|
77
|
+
}
|
78
|
+
|
79
|
+
.flex-grow {
|
80
|
+
flex-grow: 1;
|
81
|
+
}
|
82
|
+
|
83
|
+
.flex-grow-0 {
|
84
|
+
flex-grow: 0;
|
85
|
+
}
|
86
|
+
|
87
|
+
.flex-shrink {
|
88
|
+
flex-shrink: 1;
|
89
|
+
}
|
90
|
+
|
91
|
+
.flex-shrink-0 {
|
92
|
+
flex-shrink: 0;
|
93
|
+
}
|
94
|
+
|
95
|
+
.flex-row {
|
96
|
+
flex-direction: row;
|
97
|
+
}
|
98
|
+
|
99
|
+
.flex-col {
|
100
|
+
flex-direction: column;
|
101
|
+
}
|
102
|
+
|
103
|
+
.items-center {
|
104
|
+
align-items: center;
|
105
|
+
}
|
106
|
+
|
107
|
+
.self-stretch {
|
108
|
+
align-self: stretch;
|
109
|
+
}
|
110
|
+
|
111
|
+
.justify-start {
|
112
|
+
justify-content: flex-start;
|
113
|
+
}
|
114
|
+
|
115
|
+
.justify-center {
|
116
|
+
justify-content: center;
|
117
|
+
}
|
118
|
+
|
119
|
+
.w-7 {
|
120
|
+
width: var(--unit7);
|
121
|
+
}
|
122
|
+
|
123
|
+
.w-8 {
|
124
|
+
width: var(--unit8);
|
125
|
+
}
|
126
|
+
|
127
|
+
.w-9 {
|
128
|
+
width: var(--unit9);
|
129
|
+
}
|
130
|
+
|
131
|
+
.w-10 {
|
132
|
+
width: var(--unit10);
|
133
|
+
}
|
134
|
+
|
135
|
+
.w-11 {
|
136
|
+
width: var(--unit11);
|
137
|
+
}
|
138
|
+
|
139
|
+
.w-12 {
|
140
|
+
width: var(--unit12);
|
141
|
+
}
|
142
|
+
|
143
|
+
.w-full {
|
144
|
+
width: 100%;
|
145
|
+
}
|
146
|
+
|
147
|
+
.w-auto {
|
148
|
+
width: auto;
|
149
|
+
}
|
150
|
+
|
151
|
+
.h-7 {
|
152
|
+
height: var(--unit7);
|
153
|
+
}
|
154
|
+
|
155
|
+
.h-full {
|
156
|
+
height: 100%;
|
157
|
+
}
|
158
|
+
|
159
|
+
.h-auto {
|
160
|
+
height: auto;
|
161
|
+
}
|
162
|
+
|
163
|
+
.m-auto {
|
164
|
+
margin: auto;
|
165
|
+
}
|
166
|
+
|
167
|
+
.border-0 {
|
168
|
+
border-width: 0;
|
169
|
+
}
|
64
170
|
|
65
171
|
@each $key in $units {
|
66
|
-
.w-#{$key} {
|
67
|
-
|
172
|
+
.w-#{$key} {
|
173
|
+
width: var(--unit#{$key});
|
174
|
+
}
|
175
|
+
.h-#{$key} {
|
176
|
+
height: var(--unit#{$key});
|
177
|
+
}
|
68
178
|
|
69
|
-
.p-#{$key} {
|
70
|
-
|
71
|
-
|
72
|
-
.
|
73
|
-
|
179
|
+
.p-#{$key} {
|
180
|
+
padding: var(--unit#{$key});
|
181
|
+
}
|
182
|
+
.pt-#{$key} {
|
183
|
+
padding-top: var(--unit#{$key});
|
184
|
+
}
|
185
|
+
.pr-#{$key} {
|
186
|
+
padding-right: var(--unit#{$key});
|
187
|
+
}
|
188
|
+
.pb-#{$key} {
|
189
|
+
padding-bottom: var(--unit#{$key});
|
190
|
+
}
|
191
|
+
.pl-#{$key} {
|
192
|
+
padding-left: var(--unit#{$key});
|
193
|
+
}
|
74
194
|
|
75
195
|
.px-#{$key} {
|
76
196
|
padding-left: var(--unit#{$key});
|
@@ -82,11 +202,21 @@ $units: 0, 1, 2, 3, 4, 5, 6;
|
|
82
202
|
padding-top: var(--unit#{$key});
|
83
203
|
}
|
84
204
|
|
85
|
-
.m-#{$key} {
|
86
|
-
|
87
|
-
|
88
|
-
.
|
89
|
-
|
205
|
+
.m-#{$key} {
|
206
|
+
margin: var(--unit#{$key});
|
207
|
+
}
|
208
|
+
.mt-#{$key} {
|
209
|
+
margin-top: var(--unit#{$key});
|
210
|
+
}
|
211
|
+
.mr-#{$key} {
|
212
|
+
margin-right: var(--unit#{$key});
|
213
|
+
}
|
214
|
+
.mb-#{$key} {
|
215
|
+
margin-bottom: var(--unit#{$key});
|
216
|
+
}
|
217
|
+
.ml-#{$key} {
|
218
|
+
margin-left: var(--unit#{$key});
|
219
|
+
}
|
90
220
|
|
91
221
|
.mx-#{$key} {
|
92
222
|
margin-left: var(--unit#{$key});
|
@@ -99,23 +229,69 @@ $units: 0, 1, 2, 3, 4, 5, 6;
|
|
99
229
|
}
|
100
230
|
}
|
101
231
|
|
102
|
-
.rounded-none {
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
.rounded-
|
232
|
+
.rounded-none {
|
233
|
+
border-radius: 0;
|
234
|
+
}
|
235
|
+
|
236
|
+
.rounded-sm {
|
237
|
+
border-radius: calc(var(--unit1) / 2);
|
238
|
+
}
|
239
|
+
|
240
|
+
.rounded {
|
241
|
+
border-radius: var(--unit1);
|
242
|
+
}
|
243
|
+
|
244
|
+
.rounded-lg {
|
245
|
+
border-radius: var(--unit2);
|
246
|
+
}
|
247
|
+
|
248
|
+
.rounded-full {
|
249
|
+
border-radius: 9999px;
|
250
|
+
}
|
251
|
+
|
252
|
+
.font-bold {
|
253
|
+
font-weight: bold;
|
254
|
+
}
|
255
|
+
|
256
|
+
.font-mono {
|
257
|
+
font-family: var(--font-monospace);
|
258
|
+
}
|
259
|
+
|
260
|
+
.leading-none {
|
261
|
+
line-height: 1;
|
262
|
+
}
|
263
|
+
|
264
|
+
.no-underline {
|
265
|
+
text-decoration: none;
|
266
|
+
}
|
267
|
+
|
268
|
+
.underline {
|
269
|
+
text-decoration: underline;
|
270
|
+
}
|
271
|
+
|
272
|
+
.line-through {
|
273
|
+
text-decoration: line-through;
|
274
|
+
}
|
275
|
+
|
276
|
+
.text-left {
|
277
|
+
text-align: left;
|
278
|
+
}
|
279
|
+
|
280
|
+
.text-center {
|
281
|
+
text-align: center;
|
282
|
+
}
|
283
|
+
|
284
|
+
.text-right {
|
285
|
+
text-align: right;
|
286
|
+
}
|
107
287
|
|
108
|
-
.
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
.
|
113
|
-
|
114
|
-
|
115
|
-
.text-center { text-align: center; }
|
116
|
-
.text-right { text-align: right; }
|
117
|
-
.whitespace-no-wrap { white-space: nowrap; }
|
118
|
-
.break-all { word-break: break-all; }
|
288
|
+
.whitespace-no-wrap {
|
289
|
+
white-space: nowrap;
|
290
|
+
}
|
291
|
+
|
292
|
+
.break-all {
|
293
|
+
word-break: break-all;
|
294
|
+
}
|
119
295
|
|
120
296
|
.truncate {
|
121
297
|
overflow: hidden;
|
@@ -123,18 +299,37 @@ $units: 0, 1, 2, 3, 4, 5, 6;
|
|
123
299
|
white-space: nowrap;
|
124
300
|
}
|
125
301
|
|
126
|
-
.bg-transparent {
|
302
|
+
.bg-transparent {
|
303
|
+
background-color: var(--transparent);
|
304
|
+
}
|
127
305
|
|
128
|
-
.fill-current {
|
306
|
+
.fill-current {
|
307
|
+
fill: currentcolor;
|
308
|
+
}
|
309
|
+
|
310
|
+
.cursor-default {
|
311
|
+
cursor: default;
|
312
|
+
}
|
313
|
+
|
314
|
+
.cursor-pointer {
|
315
|
+
cursor: pointer;
|
316
|
+
}
|
317
|
+
|
318
|
+
.cursor-col-resize {
|
319
|
+
cursor: col-resize;
|
320
|
+
}
|
129
321
|
|
130
|
-
.
|
131
|
-
|
132
|
-
|
322
|
+
.select-none {
|
323
|
+
user-select: none;
|
324
|
+
}
|
133
325
|
|
134
|
-
.
|
326
|
+
.z-0 {
|
327
|
+
z-index: 0;
|
328
|
+
}
|
135
329
|
|
136
|
-
.z-
|
137
|
-
|
330
|
+
.z-10 {
|
331
|
+
z-index: 10;
|
332
|
+
}
|
138
333
|
|
139
334
|
.appearance-none {
|
140
335
|
-webkit-appearance: none;
|
@@ -142,47 +337,138 @@ $units: 0, 1, 2, 3, 4, 5, 6;
|
|
142
337
|
appearance: none;
|
143
338
|
}
|
144
339
|
|
145
|
-
.pointer-events-none {
|
340
|
+
.pointer-events-none {
|
341
|
+
pointer-events: none;
|
342
|
+
}
|
146
343
|
|
147
|
-
.outline-none {
|
344
|
+
.outline-none {
|
345
|
+
outline: 0;
|
346
|
+
}
|
148
347
|
|
149
|
-
.opacity-100 {
|
150
|
-
|
151
|
-
|
152
|
-
.opacity-25 { opacity: 0.25; }
|
153
|
-
.opacity-0 { opacity: 0; }
|
348
|
+
.opacity-100 {
|
349
|
+
opacity: 1;
|
350
|
+
}
|
154
351
|
|
155
|
-
.
|
352
|
+
.opacity-75 {
|
353
|
+
opacity: 0.75;
|
354
|
+
}
|
355
|
+
|
356
|
+
.opacity-50 {
|
357
|
+
opacity: 0.5;
|
358
|
+
}
|
359
|
+
|
360
|
+
.opacity-25 {
|
361
|
+
opacity: 0.25;
|
362
|
+
}
|
363
|
+
|
364
|
+
.opacity-0 {
|
365
|
+
opacity: 0;
|
366
|
+
}
|
367
|
+
|
368
|
+
.list-none {
|
369
|
+
list-style-type: none;
|
370
|
+
}
|
156
371
|
|
157
372
|
/*
|
158
373
|
Utilities not part of Tailwind:
|
159
374
|
*/
|
160
375
|
|
161
|
-
.text-inherit {
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
.bg-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
.
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
.
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
.
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
.
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
.text-
|
186
|
-
|
187
|
-
|
188
|
-
|
376
|
+
.text-inherit {
|
377
|
+
color: var(--inherit);
|
378
|
+
}
|
379
|
+
|
380
|
+
.bg-base00 {
|
381
|
+
background-color: var(--base00);
|
382
|
+
}
|
383
|
+
|
384
|
+
.bg-base01 {
|
385
|
+
background-color: var(--base01);
|
386
|
+
}
|
387
|
+
|
388
|
+
.bg-base02 {
|
389
|
+
background-color: var(--base02);
|
390
|
+
}
|
391
|
+
|
392
|
+
.bg-base05 {
|
393
|
+
background-color: var(--base05);
|
394
|
+
}
|
395
|
+
|
396
|
+
.bg-spec00 {
|
397
|
+
background-color: var(--spec00);
|
398
|
+
}
|
399
|
+
|
400
|
+
.text-white {
|
401
|
+
color: var(--white);
|
402
|
+
}
|
403
|
+
|
404
|
+
.text-base09 {
|
405
|
+
color: var(--base09);
|
406
|
+
}
|
407
|
+
|
408
|
+
.text-base10 {
|
409
|
+
color: var(--base10);
|
410
|
+
}
|
411
|
+
|
412
|
+
.text-base11 {
|
413
|
+
color: var(--base11);
|
414
|
+
}
|
415
|
+
|
416
|
+
.text-base12 {
|
417
|
+
color: var(--base12);
|
418
|
+
}
|
419
|
+
|
420
|
+
.text-base13 {
|
421
|
+
color: var(--base13);
|
422
|
+
}
|
423
|
+
|
424
|
+
.text-base14 {
|
425
|
+
color: var(--base14);
|
426
|
+
}
|
427
|
+
|
428
|
+
.text-base15 {
|
429
|
+
color: var(--base15);
|
430
|
+
}
|
431
|
+
|
432
|
+
.text-spec01 {
|
433
|
+
color: var(--spec01);
|
434
|
+
}
|
435
|
+
|
436
|
+
.text-xs {
|
437
|
+
font-size: 1rem;
|
438
|
+
}
|
439
|
+
|
440
|
+
.text-sm {
|
441
|
+
font-size: 1.1rem;
|
442
|
+
}
|
443
|
+
|
444
|
+
.text-base {
|
445
|
+
font-size: 1.2rem;
|
446
|
+
}
|
447
|
+
|
448
|
+
.text-md {
|
449
|
+
font-size: 1.3rem;
|
450
|
+
}
|
451
|
+
|
452
|
+
.text-lg {
|
453
|
+
font-size: 1.4rem;
|
454
|
+
}
|
455
|
+
|
456
|
+
.text-xl {
|
457
|
+
font-size: 1.5rem;
|
458
|
+
}
|
459
|
+
|
460
|
+
.text-2xl {
|
461
|
+
font-size: 1.6rem;
|
462
|
+
}
|
463
|
+
|
464
|
+
.text-3xl {
|
465
|
+
font-size: 1.7rem;
|
466
|
+
}
|
467
|
+
|
468
|
+
.text-4xl {
|
469
|
+
font-size: 1.8rem;
|
470
|
+
}
|
471
|
+
|
472
|
+
.text-5xl {
|
473
|
+
font-size: 1.9rem;
|
474
|
+
}
|
@@ -7,24 +7,24 @@
|
|
7
7
|
>
|
8
8
|
{{#if this.isEmberApplication}}
|
9
9
|
<div class="split">
|
10
|
-
<div class="
|
11
|
-
<div class="split split
|
10
|
+
<div class="split-panel">
|
11
|
+
<div class="split split-main">
|
12
12
|
<Ui::DraggableColumn
|
13
|
-
@classes="
|
13
|
+
@classes="split-panel split-panel-sidebar-1"
|
14
14
|
@side="left"
|
15
15
|
@width={{this.navWidth}}
|
16
16
|
>
|
17
|
-
<div class="
|
17
|
+
<div class="split-panel-hd">
|
18
18
|
<AppPicker @collapsed={{this.navIsCollapsed}} />
|
19
19
|
</div>
|
20
20
|
|
21
21
|
<SideNav
|
22
|
-
class="
|
22
|
+
class="split-panel-bd"
|
23
23
|
@collapsed={{this.navIsCollapsed}}
|
24
24
|
@deprecationCount={{this.deprecationCount}}
|
25
25
|
/>
|
26
26
|
|
27
|
-
<div class="
|
27
|
+
<div class="split-panel-ft nav-footer {{if this.navIsCollapsed "nav-collapsed" "nav-expanded"}}">
|
28
28
|
<a
|
29
29
|
target="_blank"
|
30
30
|
title="Submit an Issue"
|
@@ -44,11 +44,11 @@
|
|
44
44
|
</div>
|
45
45
|
</Ui::DraggableColumn>
|
46
46
|
|
47
|
-
<div class="
|
48
|
-
<div class="
|
47
|
+
<div class="split-panel">
|
48
|
+
<div class="split-panel-hd">
|
49
49
|
<div id="toolbar"></div>
|
50
50
|
<button
|
51
|
-
class="object-inspector-toggle
|
51
|
+
class="object-inspector-toggle toolbar-icon-button absolute top-0 right-0"
|
52
52
|
{{on "click" this.toggleInspector}}
|
53
53
|
type="button"
|
54
54
|
title="{{if this.inspectorExpanded "hide" "show"}} object inspector"
|
@@ -57,7 +57,7 @@
|
|
57
57
|
</button>
|
58
58
|
</div>
|
59
59
|
|
60
|
-
<div class="
|
60
|
+
<div class="split-panel-bd" {{did-insert this.setupContentElement}}>
|
61
61
|
{{outlet}}
|
62
62
|
</div>
|
63
63
|
</div>
|
@@ -66,7 +66,7 @@
|
|
66
66
|
|
67
67
|
{{#if this.inspectorExpanded}}
|
68
68
|
<Ui::DraggableColumn
|
69
|
-
@classes="
|
69
|
+
@classes="split-panel"
|
70
70
|
@side="right"
|
71
71
|
@width={{this.inspectorWidth}}
|
72
72
|
>
|
@@ -15,7 +15,7 @@
|
|
15
15
|
@currentItem={{this.currentItem}}
|
16
16
|
@previewing={{this.currentPreviewItem}}
|
17
17
|
@itemHeight={{this.itemHeight}}
|
18
|
-
class="
|
18
|
+
class="list-content"
|
19
19
|
tabindex="-1"
|
20
20
|
{{did-insert this.arrowKeysSetup}}
|
21
21
|
{{will-destroy this.arrowKeysTeardown}}
|
@@ -1,9 +1,8 @@
|
|
1
|
-
{{! template-lint-disable no-action}}
|
2
1
|
{{#if this.toolbarContainer}}
|
3
2
|
{{#in-element this.toolbarContainer}}
|
4
3
|
<DeprecationsToolbar
|
5
4
|
@changeDeprecationWorkflow={{this.changeDeprecationWorkflow}}
|
6
|
-
@clear={{
|
5
|
+
@clear={{this.clear}}
|
7
6
|
@searchValue={{this.searchValue}}
|
8
7
|
@toggleDeprecationWorkflow={{this.toggleDeprecationWorkflow}}
|
9
8
|
/>
|
@@ -11,7 +10,7 @@
|
|
11
10
|
{{/if}}
|
12
11
|
|
13
12
|
{{#if this.filtered.length}}
|
14
|
-
<div class="
|
13
|
+
<div class="list-content js-deprecations">
|
15
14
|
<VerticalCollection @items={{this.filtered}} @estimateHeight={{20}} as |content|>
|
16
15
|
<DeprecationItem
|
17
16
|
@model={{content}}
|