Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@nuxt/devtools

nuxt1.7mMIT2.0.0-beta.3TypeScript support: included

The Nuxt DevTools gives you insights and transparency about your Nuxt App.

readme

Nuxt DevTools

Nuxt DevTools

npm version npm downloads License Nuxt Volta

Unleash Nuxt Developer Experience.
Nuxt DevTools is a set of visual tools that help you to know your app better.

👋 Introduction | 💡 Ideas & Suggestions | 🗺️ Project Roadmap | 📚 Documentation


[!NOTE] You are viewing the v2.x branch which are in active development. For the latest stable version, please refer to the v1.x branch

Installation

Nuxt DevTools v2 requires Nuxt v3.15.0 or higher.

Nuxt DevTools is enabled by default in Nuxt v3.8.0. You can press <kbd>Shift</kbd> + <kbd>Alt</kbd> / <kbd>⇧ Shift</kbd> + <kbd>⌥ Option</kbd> + <kbd>D</kbd> in your app to open it up.

If you want to explicitly enable or disable Nuxt DevTools, you can update your nuxt.config with:

export default defineNuxtConfig({
  devtools: {
    enabled: true // or false to disable
  }
})

Nightly Release Channel

Similar to Nuxt's Nightly Channel, DevTools also offers a nightly release channel, that automatically releases for every commit to main branch.

You can opt-in to the nightly release channel by running:

{
  "devDependencies": {
--    "@nuxt/devtools": "^0.1.0"
++    "@nuxt/devtools": "npm:@nuxt/devtools-nightly@latest"
  }
}

Remove lockfile (package-lock.json, yarn.lock, or pnpm-lock.yaml) and reinstall dependencies.

Module Options

To configure Nuxt DevTools, you can pass the devtools options.

// nuxt.config.ts
export default defineNuxtConfig({
  devtools: {
    // Enable devtools (default: true)
    enabled: true,
    // VS Code Server options
    vscode: {},
    // ...other options
  }
})

For all options available, please refer to TSDocs in your IDE, or the type definition file.

Features

Read the Announcement Blog Post 🎊 for why we built Nuxt DevTools and what it can do!

Module Authors

Please refer to the Module Authors Guide.

Contribution Guide

Please refer to the Contribution Guide.

Anonymous Usage Analytics

Nuxt DevTools collects anonymous telemetry data about general usage. This helps us to accurately gauge feature usage and customization across all our users. This data will let us better understand how each features in Nuxt DevTools are used, measuring improvements made (DX and performances) and their relevance. It would also help us to prioritize our efforts and focus on the features that matter the most to our users.

Nuxt DevTools' telemetry data is piped through Nuxt Telemetry, meaning that Nuxt DevTools will respect your local and global Nuxt Telemetry settings. You can also opt-out Nuxt DevTools' telemetry in the Nuxt DevTools settings.

The data we collect is completely anonymous, not traceable to the source (using hash+seed), and only meaningful in aggregate form. No data we collect is personally identifiable or trackable.

Events

On top of the default Nuxt Telemetry events, Nuxt DevTools also collects the following events:

  • Versions of Nuxt DevTools
  • Navigations between tabs/feature
    • This helps us to understand which features are used the most to prioritize our efforts.
  • Browser and OS names and versions
    • This helps us improve compatibility across different browsers and operating systems.
  • Click event on some action buttons

License

MIT

changelog

2.0.0-beta.3 (2025-01-18)

2.0.0-beta.2 (2025-01-16)

Bug Fixes

  • support Nuxt 4 window context format (0459d44)

Features

  • show module setup time (a81055d)
  • show the floating panel by default, close #717 (6108b17)
  • support basic view of resolved options with Discovery.js (#771) (59b738c)
  • use slimmer shiki bundle (91bc060)

2.0.0-beta.1 (2025-01-13)

Bug Fixes

  • component tree format (f4017f3)
  • components graph (1bae95a)
  • improve filepath item ui (8f4ff4a)
  • vscode: set a default value for the vscode host parameter (#766) (2e6b4e4)

Features

  • add copy button for filepath item (94b3822)
  • allow to customize editor to open, fix #748 (fe98c80)
  • enhance module resolution paths for getPackageInfo (#767) (04269d0)
  • migrate to my-ua-parser (a290648)
  • put vue devtools ui in a separate category (5b566fb)

1.7.0 (2024-12-26)

Features

  • improves vscode integration, support multiple backends (#763) (463f6ad)

1.6.4 (2024-12-12)

Bug Fixes

1.6.3 (2024-12-03)

Bug Fixes

  • revert #757, pin vite-plugin-inspect version (a399082)

1.6.2 (2024-12-03)

Bug Fixes

  • add v4 compatibility version handeling for pages tab (#758) (bd8651c)

Features

  • support vite-plugin-inspect for both Vite 5 and 6 (#757) (cfcbc24)

1.6.1 (2024-11-20)

Bug Fixes

Features

  • apply lint, use explict import (2c6d2d3)

1.6.0 (2024-10-12)

Bug Fixes

1.5.2 (2024-10-02)

Bug Fixes

  • try downgrade vite-plugin-vue-inspector (572a0d6)

1.5.1 (2024-09-23)

Bug Fixes

1.5.0 (2024-09-20)

Bug Fixes

  • avoid using top-level await, fix #723 (29b0e39)
  • disable quicktype schema generation temporary (c1554a3)
  • handle null in deepSync (#729) (8c0efdb)

1.4.2 (2024-09-10)

Bug Fixes

1.4.1 (2024-08-26)

Bug Fixes

  • devtools-kit re-export (d16cafc)
  • state-editor: update deepSync function (#713) (a7b9efb)

1.4.0 (2024-08-26)

Features

  • kit: introduce host-client utility (167373c)

1.3.14 (2024-08-20)

1.3.13 (2024-08-20)

1.3.12 (2024-08-20)

1.3.11 (2024-08-20)

1.3.10 (2024-08-20)

Bug Fixes

Features

  • add search functionality to components graph (#696) (1a0f81a)

1.3.9 (2024-07-02)

Bug Fixes

  • capture for circular reference in state editor (841fd76)
  • introduce client.revision to trigger state editor update (418a22e)
  • modules: update compatibility check for Nuxt 3 and 4 (#689) (2354da7)
  • use ofetch for fast-npm-meta (4188f8d)

1.3.8 (2024-07-02)

Performance Improvements

  • avoid deps on npm-registry-fetch, save install size (3d74691)

1.3.7 (2024-06-27)

Bug Fixes

Features

  • use nuxt search api for showing docs (#681) (52b6468)

Performance Improvements

  • use npm-registry-fetch instead of pacote to deduce the package size (a049c52)

1.3.6 (2024-06-21)

Features

1.3.5 (2024-06-21)

Bug Fixes

  • downgrade module-builder (de79dc4)

1.3.4 (2024-06-21)

Bug Fixes

1.3.3 (2024-06-04)

Bug Fixes

1.3.2 (2024-05-27)

Bug Fixes

1.3.1 (2024-05-10)

Bug Fixes

  • module builder chunk path patch (87199a1)

1.3.0 (2024-05-10)

Bug Fixes

  • devtools: optimize the home page layout (#654) (a1ad266)
  • upgrade vite-plugin-vue-inspector, fix #657 (f67f0f2)

Features

1.2.0 (2024-04-19)

Bug Fixes

  • adopt forward-compatible approach to builder:watch (#637) (800d71f)
  • opt in to import.meta.* properties (#635) (ce60ab4)

1.1.5 (2024-03-28)

Features

1.1.4 (2024-03-26)

Bug Fixes

1.1.3 (2024-03-21)

Bug Fixes

  • devtools: do not try to overlay on server (#630) (9b633cd)

1.1.2 (2024-03-21)

Bug Fixes

Features

  • enable picture in picture for localhost (#627) (c43500a)

1.1.1 (2024-03-20)

Bug Fixes

1.1.0 (2024-03-20)

Bug Fixes

  • augment runtime config correctly (2d199b8)
  • devtools border-radius (#617) (36c300a)
  • floating-vue arrow style (#578) (4553d50)
  • floating-vue arrow style in dark (#582) (0023611)
  • inspect tab when custom buildAssetsDir is configured, fixes #589 (#588) (97386b2)
  • override tsx dependency to known fixed version (broken on Node v18.19.0+) (#606) (1bc2e71)
  • provide a label for accessbility (#591) (6cb9220)
  • remove unnecessary line + open devtools calling twice syncClient (#584) (9a2dbc2)
  • support for resizing window in touch screen (#616) (31e01fb)
  • ui: @apply conflict with tailwind (#619) (4e1d329)
  • ui: Added composable to build config (#579) (f3c3de1)
  • ui: disabled NButton. Also disable NuxtLink when used with to. (#581) (12dae59)

Features

1.0.8 (2024-01-11)

Bug Fixes

1.0.7 (2024-01-11)

Bug Fixes

  • devtools: update default types to module.d.ts/.mts (#559) (2ecd32c)
  • make twitter og tags optional (41ee5ec)
  • open-graph: fix type error, close #563 (c63055a)
  • support iframeProps option for CSP, fix Stackblitz (0eb7a82)
  • timeline-helper-wrapper: Fix return value in timeline wrapper for promises (#567) (0645e35)
  • update title of Eye Dropper command (#558) (ea58139)

Features

  • server-routes: implement persisting input values in localStorage (#545) (67dbf65)

1.0.6 (2023-12-13)

Bug Fixes

  • improve rpc import message, close #528 (721dda8)
  • server-routes: improve filterByCollection for runtime routes (#538) (ec144d1)
  • SideNav: logo text color in light mode (#537) (4dbe60d)
  • stable integrations setup to have consistent plugins order (#542) (310929b)

1.0.5 (2023-12-07)

Bug Fixes

  • allow iframe to work in stricter cross-origin policy (7ec0d3c)
  • devtools: don't enable devtools when in test mode (#532) (3a7f143)

Features

1.0.4 (2023-11-27)

Bug Fixes

  • pip: check for https support (#522) (5360cf4)
  • require auth token with getImageMeta and getTextAssetContent (69316c4)
  • require token for restartNuxt (09384af)

Features

1.0.3 (2023-11-20)

Bug Fixes

Features

  • disable devtools in test mode (51e8de6)

1.0.2 (2023-11-11)

Bug Fixes

  • do not show false connecting overlay on legacy Vite, close #497 (a48c248)
  • timeline: do not inject for macro module, close #507 (923edaf)

1.0.1 (2023-11-09)

Bug Fixes

1.0.0 (2023-10-18)

Features

1.0.0-beta.3 (2023-10-17)

Bug Fixes

Features

  • add telegram social preview tab (#473) (64036ca)
  • add link for Nuxt and Vue on overview tab (5314fff)
  • add more telemetry events (a565d57)
  • assets: file upload extension validation (#391) (df623e0)
  • bring back disconnected dialog (a81721d)
  • improve disconnect indicator (8654684)
  • improve UX of dev auth (bb4baf5)
  • modules: dynamic sorting for module installation list (#470) (4478015)
  • server-routes: add optional checkbox for inputs (#474) (077a907)

1.0.0-beta.2 (2023-10-14)

Bug Fixes

  • current route reactivity on pages tab (d2d44c3)
  • improve RWD of open-graph tab (dfeaf23)
  • improve UI layout of pages tab (66e59ae)
  • increase DETAILS_MAX_ITEMS (de90087)
  • navbar on components graph view (501432f)
  • require auth condition (2e968cd)

Features

1.0.0-beta.1 (2023-10-11)

Bug Fixes

  • assets: watcher (#455) (70bfed7)
  • auto install works with yarn berry, close #454 (cdf50b4)
  • move inline script timing to work with nuxt-security, #463 (c5e41da)
  • resolve private runtime correctly from .env, close #424 (708bb18)

Features

  • ability to reset options (95b5ba1)
  • disable dev auth on sandboxed env (14935ee)
  • provide better error message for magicast, close #395 (6f5ce18)
  • ui: NNavbar component (#442) (b77b98b)

1.0.0-beta.0 (2023-10-01)

Bug Fixes

  • improve permssion prompt (91ae0bd)
  • overview: pluralize nouns properly (#436) (5011c35)
  • server-routes: use window.location.origin for doamin (#450) (a85e3c0)
  • terminals view (df5dd76)
  • ui: improve some ui details (cd0b8a5)
  • ui: improve theme color contrast (88220f0)

Features

  • hide panel by default when not explicit enabled (#440) (7c614c9)
  • server-routes: send from app instead of devtools, close #253 (#441) (57deaf0)
  • ui: NBadge component (#433) (5e0f9dd)
  • ui: NDrawer component (#435) (7a387de)
  • ui: NSplitPane component (#438) (7bc4701)
  • ui: switch fonts to DM Sans and DM Mono to align with Nuxt's theme (43c5b47)

Performance Improvements

0.8.5 (2023-09-25)

Features

0.8.4 (2023-09-20)

Bug Fixes

  • copy __NUXT__ object to popup frame (ea46cea)
  • deps: set @nuxt/devtools as devDependency (#425) (4e280c9)
  • popup button (d1171b0)
  • settings: make sure client has value (#418) (9757c00)

Features

0.8.3 (2023-09-06)

Bug Fixes

  • route tracking handle currentRoute to be null (7ca1fc9)

0.8.2 (2023-08-28)

Bug Fixes

  • virtual-files: fetch data as json (131a2ee)

0.8.1 (2023-08-28)

Bug Fixes

  • default box-sizing for floating panel (a674379)
  • find vite client path from subframe parent (#386) (e28606a)
  • improve client injection error message (de9baa3)

Features

0.8.0 (2023-08-10)

Features

  • components: show dependencies and dependents in component details (7dbc3d1)
  • composables useNuxtDevTools (#383) (e74b60c)
  • filter for used/unused components, close #358 (5012012)
  • ui-kit: add NSelectTab component (509a1ec)

0.7.6 (2023-08-09)

Bug Fixes

  • devtools panel justify content (#369) (c3272f4)
  • notification z-index (#376) (3867814)
  • resolve DevTools vite loading issue with buildAssetsDir (#375) (22bcd0d)
  • server-routes: filter middleware from scannedHandlers (#377) (09f6da3)

Features

0.7.5 (2023-08-06)

Bug Fixes

Features

0.7.4 (2023-08-01)

Bug Fixes

  • find vite client path automatically, close #352 (b78d04f)

0.7.3 (2023-08-01)

Bug Fixes

  • the panel is stuttering when dragging on the mobile end (#350) (6677dd7)
  • upgrade vite-plugin-inspect, close #324 (ea41a5d)

0.7.2 (2023-07-31)

Bug Fixes

Features

0.7.1 (2023-07-23)

Bug Fixes

  • kit: broken types for useDevtoolsClient() (#340) (934b1d4)
  • kit: types for renderCodeHighlight (#341) (d4e1541)

Features

0.7.0 (2023-07-20)

Bug Fixes

  • analyze build without git (#320) (76a566b)
  • client: close button add zIndex (#315) (37427ec)
  • do not sync floating panel state across tabs (41752b2)
  • plugin-metrics: properly forward all args, close #337 (ec1c821)
  • respect Nuxt's devServer config when creating request for auth URL (#328) (7d766ac)
  • server-routes: filter only dir as collection (#329) (4d2f842)
  • timeline: duplication injection (f5e3766)
  • timeline: error tolerant promising checking (762a669)
  • timeline: filter logic (414ad1c)
  • timeline: result check (72c877b)
  • use error-stack-parser-es (8c1974b)

Features

0.6.7 (2023-07-05)

Bug Fixes

  • navbar: center items (#307) (43ff171)
  • server-routes: fixed boolean undefined value (#304) (95f3dd8)
  • server-routes: make sure input's key has value (#306) (8f25d72)

Features

  • allow pinning tabs (059f98b)
  • server-routes: display latest selected route (#309) (2977264)

0.6.6 (2023-06-30)

Bug Fixes

  • handle when iframe is failed to create (ace5d5b)
  • stackblitz support (33e83ae)

0.6.5 (2023-06-30)

Bug Fixes

  • open DevTools back when open file in embedded VS Code (#299) (45dc415)
  • plugins: change execution time position (#294) (2b5f8e5)
  • server-routes: fixed same path different methods (#301) (6dd8eb3)
  • try catch iframe cross-domain error (ddf41ea)

Features

0.6.4 (2023-06-26)

Bug Fixes

  • disable iframe interactive on dragging (cc84ccf)
  • prevent floating panel to dragged outside of window (#290) (6d315cd)
  • respect safe area, close #272 (2d84e4f)

Features

0.6.3 (2023-06-23)

Bug Fixes

  • add button and font reset to floating panel (f819b0c)
  • ComponentGraph: show global components in different color (#278) (41a881d)
  • overview: modules count (#284) (2ef2664)

Features

0.6.2 (2023-06-21)

Bug Fixes

Features

  • allow manually enter the token (fad945a)

0.6.1 (2023-06-15)

Bug Fixes

Features

  • auth required view for terminal (f1bf102)

0.6.0 (2023-06-13)

Bug Fixes

  • composables: hide usages of macro modules (e6cdbf3)
  • introduce local auth for running commands (#257) (306c6a5)
  • kit: explicit set file extension, close #262 (594a352)

Features

  • mutliple level command-palette, commands for docs (#247) (3cf828e)
  • new floating panel and layouting system (#266) (4b02cca)

0.5.5 (2023-05-25)

Bug Fixes

  • command-palette: avoid key conflicts (c86697e)
  • CommandPalette: fix item scroll (#246) (9aa13f6)
  • pages: route parsing (d525412)

0.5.4 (2023-05-24)

Bug Fixes

Features

0.5.3 (2023-05-23)

0.5.2 (2023-05-23)

Bug Fixes

  • improve module installing experience (ab8083b)
  • reactivity life cycle (486db15)

0.5.1 (2023-05-23)

Bug Fixes

  • analyze-build: state update (0e32bde)
  • plugin-metrics: forward plugin meta (facef7a)
  • ui-kit: set text prop as optional in NSectionBlock (#241) (16f726c)

Features

  • opt-out all experimental flag (ff850b1)

0.5.0 (2023-05-18)

Bug Fixes

  • build-analyze: improve ui (bd263ee)
  • components: improve graph relationship filtering, close #192 (c27f80b)
  • debounce disconnect indicator (895e6e3)
  • devtools-ui-kit: update unocss config path (#238) (5162bdd)
  • double disable vue-inspector (9dc0694)
  • improve module meta resolution (7dc3d93)
  • install-module: process exit code (8c8097e)
  • open-graph: avoid layout shift (4b1eb2c)
  • open-graph: use description for facebook (#239) (31c92f5)
  • print error on process failing (37f690b)
  • style: switch, radio, checkbox hover style (#230) (97f5b1a)
  • uninstall modules (#229) (f7db6a2)

Features

  • add component inspect button to the sidebar (512d852)
  • add dark/light mode switch transition (#224) (782e0da)
  • allow override vue-inspector options, close #234 (3311f11)
  • components: add legend for graph (de6a97d)
  • display vue version, close #236 (83b775a)
  • experimental add module from DevTools (#222) (501682b)
  • experimental build analyze (#190) (2344afd)
  • isolate ui options per-project (#232) (3b99477)
  • open-graph: use useSeoMeta over useHead (f7d11ee)
  • refactor components, close #227 (0caa4de)
  • server-routes: rolling out of experiment state (ed87dfd)
  • sidenav overflow as popup (da6c29f)
  • ui: fullscreen disconnect indicator (a158b1b)

0.4.6 (2023-05-08)

Bug Fixes

Features

0.4.5 (2023-04-30)

Bug Fixes

  • correctly read plugins list (76bc71d)
  • use compile time markdown (f9979b9)

0.4.4 (2023-04-30)

Features

0.4.3 (2023-04-29)

Bug Fixes

Features

0.4.2 (2023-04-24)

Bug Fixes

Features

Performance Improvements

  • defer devtools client initialization (2949e0d)
  • defer devtools client loading (ebc9a38)
  • improve runtime icons render (ea37a07)

0.4.1 (2023-04-18)

Bug Fixes

  • fix domain to work with https (#178) (646fb9b)
  • server-routes: add method dropdown (#187) (f47060e)
  • server-routes: handle base url (06eb4d7)
  • server-routes: persistence between route switches (#186) (2791d3e)
  • ServerRouteDetail: fix domain port & body (#185) (7b1fbf1)
  • ui-kit: NTextInput styles (0ed638e)
  • ui-kit: ssr compatibility, close #183 (4f49cd4)

Features

  • provide docs for built-in composables (e32b8d5)
  • server-routes: more code snippets (40913b9)
  • server-routes: open route in editor button (#189) (c0cbfdb)
  • styling (4be0a97)
  • ui-kit: Make NTextInput more generic (#181) (f3d61da)

0.4.0 (2023-04-11)

Bug Fixes

  • server-route: added route type to url (#175) (0bbeb28)
  • server-routes: route resolving (1895a16)
  • styling (d08b233)
  • ui-kit: NCodeBlock layout shift (875ff88)
  • wizard: also check versions greater than 3.4 (dd14aac)
  • wizard: remove global module install in 3.4 (c5fdf23)

Features

0.3.2 (2023-04-07)

Bug Fixes

Features

0.3.1 (2023-03-27)

Bug Fixes

  • explicit import defineNuxtPlugin (03535dc)

0.3.0 (2023-03-27)

Bug Fixes

  • assets: show <NuxtImage> snippet when @nuxt/image is installed (#133) (d440f14)
  • change shortcut to Shift + Alt + D, close #153 (ede19a7)
  • component inspector, close #137 (d608a0f)
  • components graph layout (b853005)
  • display font preview in assets detail (a18c762)
  • extra scrollbar (#139) (a94fd4d)
  • improve path display (7ed9657)
  • make assets detail scrollable (f0a547d)
  • popper text color in light mode (254b45e)
  • scrolling regression after splitpanes (455ec6c)
  • ui: fix unexpected sidenav icon scale on windows chrome (#138) (310117a)
  • vue inspector in latest Nuxt (f736291)

Features

Performance Improvements

0.2.5 (2023-02-28)

Bug Fixes

  • client: make iframe-client reactive (7f1df2c)
  • client: make ws connection non-blocking (6ed46e0)
  • deprioritize runtime categoray in components (14d3857)
  • filter out lazy runtime component (507cae2)
  • ui-kit: make make code block reactive to color mode (2c530d8)
  • ui-kit: runtime utils reference (2111622)

Features

  • add storage tab (#100) (c153313)
  • disconnect indicator (579e091)
  • extract resize panel (a30ea5f)
  • ui-kit: introduce NCodeBlock and NMarkdown components (f9a4f4b)

0.2.4 (2023-02-28)

Bug Fixes

  • hooks extend type (019bad4)
  • ui-kit: remove nuxt components override (132bafe)

Features

  • able to disable inspectors, close #103 (56d9c56)
  • add show workspace filter to component graph (ad8118e)
  • client: add splitpanes for resizable columns (#101) (2846ab2)
  • re-layout component views (2db818a)
  • ui-kit: expose NSectionBlock and NIconTitle, introduce NSelect (#102) (cebe031)

0.2.3 (2023-02-24)

Bug Fixes

  • always extends fs.allow (0c07ee0)
  • improve isGlobalInstall detection (500215d)

0.2.2 (2023-02-24)

Bug Fixes

0.2.1 (2023-02-24)

Bug Fixes

  • always show shortcut tip (01ddd67)
  • should not override Vite's default fs.allow (9b24dd7)

0.2.0 (2023-02-23)

Bug Fixes

  • button: remove zoom from buttons to allow double tap on phone (#195) (f22200c)
  • click outside handling, fix #90 (40ddb1d)
  • correctly exit inspector, close #94 (3900d6b)
  • move back to components view when selecting a component (8a62d1f), closes #93
  • nuxt ui playground, close #188, close #184 (#192) (7268b3c)
  • templates: avoid using blur in no-animation mode, disable animation in Safari (#175) (23e09be)
  • ui: NTextInput fill width (de5c772)
  • ui: always add global style (3951517)
  • ui: auto wrap for example layout, close #163 (#164) (57a4d9e)
  • ui: color-mode using nuxt module (#86) (779131e)
  • ui: colors (31a33d6)
  • ui: darkmode style (9e1e5fe)
  • ui: explicit imports (822e8cb)
  • ui: fix cjs stub paths (00e6dc3)
  • ui: fix color mode toggle on Nuxt (8f03da2)
  • ui: improve background contrast (6344904)
  • ui: let nuxt/kit resolve module source (#117) (79c08fa)
  • ui: make carbon icons as deps (a530f04)
  • ui: use NuxtLink (202b1c7)
  • use repo for detecting logo (b7b3980)

Features

0.1.6 (2023-02-22)

Bug Fixes

  • cli: make sure only one nuxt devtools module is enabled, close #86 (92ccf1c)
  • composables popup (e669008)

Features

0.1.5 (2023-02-22)

Bug Fixes

  • do not bundle is-installed-globally, close #84 (87b3232)

Features

  • client: allow file column resize in VFS (#82) (70907e0)

0.1.4 (2023-02-16)

Bug Fixes

0.1.3 (2023-02-16)

Bug Fixes

  • performance downgrade (#66) (8683c50)
  • performance downgrade in node env (#71) (a90b825)
  • a11y: add aria-label & aria-expanded attrs to toggle button (#49) (7ea0fe6)
  • cannot close component inspector (#70) (63bf34f)
  • cli: improve windows compatibility, close #62 (e1ff704)
  • do not bundle pacote, close #41 (87d64db)
  • explicit import performance hook, close #61 (c7f83f8)
  • props without reactivity transform (0b21cb8)
  • revert vscode default mode to local-serve (9312802)
  • trigger client reactivity on app mounted (a9898c1)
  • use pointer cursor for user module which redirects to file (#51) (8c05e32)

Features

0.1.2 (2023-02-10)

Bug Fixes

  • legacy module path removal (378cc1c)

0.1.1 (2023-02-10)

Bug Fixes

  • insecure websocket connection (#36) (2c79aa5)
  • use cjs in global install to be compactible with Nuxt 2, close #42 (fb70274)

0.1.0 (2023-02-09)

Bug Fixes

Features

0.6.6 (2023-06-30)

Bug Fixes

  • handle when iframe is failed to create (ace5d5b)
  • stackblitz support (33e83ae)

0.6.5 (2023-06-30)

Bug Fixes

  • open DevTools back when open file in embedded VS Code (#299) (45dc415)
  • plugins: change execution time position (#294) (2b5f8e5)
  • server-routes: fixed same path different methods (#301) (6dd8eb3)
  • try catch iframe cross-domain error (ddf41ea)

Features

0.6.4 (2023-06-26)

Bug Fixes

  • disable iframe interactive on dragging (cc84ccf)
  • prevent floating panel to dragged outside of window (#290) (6d315cd)
  • respect safe area, close #272 (2d84e4f)

Features

0.6.3 (2023-06-23)

Bug Fixes

  • add button and font reset to floating panel (f819b0c)
  • ComponentGraph: show global components in different color (#278) (41a881d)
  • overview: modules count (#284) (2ef2664)

Features

0.6.2 (2023-06-21)

Bug Fixes

Features

  • allow manually enter the token (fad945a)

0.6.1 (2023-06-15)

Bug Fixes

Features

  • auth required view for terminal (f1bf102)

0.6.0 (2023-06-13)

Bug Fixes

  • composables: hide usages of macro modules (e6cdbf3)
  • introduce local auth for running commands (#257) (306c6a5)
  • kit: explicit set file extension, close #262 (594a352)

Features

  • mutliple level command-palette, commands for docs (#247) (3cf828e)
  • new floating panel and layouting system (#266) (4b02cca)

0.5.5 (2023-05-25)

Bug Fixes

  • command-palette: avoid key conflicts (c86697e)
  • CommandPalette: fix item scroll (#246) (9aa13f6)
  • pages: route parsing (d525412)

0.5.4 (2023-05-24)

Bug Fixes

Features

0.5.3 (2023-05-23)

0.5.2 (2023-05-23)

Bug Fixes

  • improve module installing experience (ab8083b)
  • reactivity life cycle (486db15)

0.5.1 (2023-05-23)

Bug Fixes

  • analyze-build: state update (0e32bde)
  • plugin-metrics: forward plugin meta (facef7a)
  • ui-kit: set text prop as optional in NSectionBlock (#241) (16f726c)

Features

  • opt-out all experimental flag (ff850b1)

0.5.0 (2023-05-18)

Bug Fixes

  • build-analyze: improve ui (bd263ee)
  • components: improve graph relationship filtering, close #192 (c27f80b)
  • debounce disconnect indicator (895e6e3)
  • devtools-ui-kit: update unocss config path (#238) (5162bdd)
  • double disable vue-inspector (9dc0694)
  • improve module meta resolution (7dc3d93)
  • install-module: process exit code (8c8097e)
  • open-graph: avoid layout shift (4b1eb2c)
  • open-graph: use description for facebook (#239) (31c92f5)
  • print error on process failing (37f690b)
  • style: switch, radio, checkbox hover style (#230) (97f5b1a)
  • uninstall modules (#229) (f7db6a2)

Features

  • add component inspect button to the sidebar (512d852)
  • add dark/light mode switch transition (#224) (782e0da)
  • allow override vue-inspector options, close #234 (3311f11)
  • components: add legend for graph (de6a97d)
  • display vue version, close #236 (83b775a)
  • experimental add module from DevTools (#222) (501682b)
  • experimental build analyze (#190) (2344afd)
  • isolate ui options per-project (#232) (3b99477)
  • open-graph: use useSeoMeta over useHead (f7d11ee)
  • refactor components, close #227 (0caa4de)
  • server-routes: rolling out of experiment state (ed87dfd)
  • sidenav overflow as popup (da6c29f)
  • ui: fullscreen disconnect indicator (a158b1b)

0.4.6 (2023-05-08)

Bug Fixes

Features

0.4.5 (2023-04-30)

Bug Fixes

  • correctly read plugins list (76bc71d)
  • use compile time markdown (f9979b9)

0.4.4 (2023-04-30)

Features

0.4.3 (2023-04-29)

Bug Fixes

Features

0.4.2 (2023-04-24)

Bug Fixes

Features

Performance Improvements

  • defer devtools client initialization (2949e0d)
  • defer devtools client loading (ebc9a38)
  • improve runtime icons render (ea37a07)

0.4.1 (2023-04-18)

Bug Fixes

  • fix domain to work with https (#178) (646fb9b)
  • server-routes: add method dropdown (#187) (f47060e)
  • server-routes: handle base url (06eb4d7)
  • server-routes: persistence between route switches (#186) (2791d3e)
  • ServerRouteDetail: fix domain port & body (#185) (7b1fbf1)
  • ui-kit: NTextInput styles (0ed638e)
  • ui-kit: ssr compatibility, close #183 (4f49cd4)

Features

  • provide docs for built-in composables (e32b8d5)
  • server-routes: more code snippets (40913b9)
  • server-routes: open route in editor button (#189) (c0cbfdb)
  • styling (4be0a97)
  • ui-kit: Make NTextInput more generic (#181) (f3d61da)

0.4.0 (2023-04-11)

Bug Fixes

  • server-route: added route type to url (#175) (0bbeb28)
  • server-routes: route resolving (1895a16)
  • styling (d08b233)
  • ui-kit: NCodeBlock layout shift (875ff88)
  • wizard: also check versions greater than 3.4 (dd14aac)
  • wizard: remove global module install in 3.4 (c5fdf23)

Features

0.3.2 (2023-04-07)

Bug Fixes

Features

0.3.1 (2023-03-27)

Bug Fixes

  • explicit import defineNuxtPlugin (03535dc)

0.3.0 (2023-03-27)

Bug Fixes

  • assets: show <NuxtImage> snippet when @nuxt/image is installed (#133) (d440f14)
  • change shortcut to Shift + Alt + D, close #153 (ede19a7)
  • component inspector, close #137 (d608a0f)
  • components graph layout (b853005)
  • display font preview in assets detail (a18c762)
  • extra scrollbar (#139) (a94fd4d)
  • improve path display (7ed9657)
  • make assets detail scrollable (f0a547d)
  • popper text color in light mode (254b45e)
  • scrolling regression after splitpanes (455ec6c)
  • ui: fix unexpected sidenav icon scale on windows chrome (#138) (310117a)
  • vue inspector in latest Nuxt (f736291)

Features

Performance Improvements

0.2.5 (2023-02-28)

Bug Fixes

  • client: make iframe-client reactive (7f1df2c)
  • client: make ws connection non-blocking (6ed46e0)
  • deprioritize runtime categoray in components (14d3857)
  • filter out lazy runtime component (507cae2)
  • ui-kit: make make code block reactive to color mode (2c530d8)
  • ui-kit: runtime utils reference (2111622)

Features

  • add storage tab (#100) (c153313)
  • disconnect indicator (579e091)
  • extract resize panel (a30ea5f)
  • ui-kit: introduce NCodeBlock and NMarkdown components (f9a4f4b)

0.2.4 (2023-02-28)

Bug Fixes

  • hooks extend type (019bad4)
  • ui-kit: remove nuxt components override (132bafe)

Features

  • able to disable inspectors, close #103 (56d9c56)
  • add show workspace filter to component graph (ad8118e)
  • client: add splitpanes for resizable columns (#101) (2846ab2)
  • re-layout component views (2db818a)
  • ui-kit: expose NSectionBlock and NIconTitle, introduce NSelect (#102) (cebe031)

0.2.3 (2023-02-24)

Bug Fixes

  • always extends fs.allow (0c07ee0)
  • improve isGlobalInstall detection (500215d)

0.2.2 (2023-02-24)

Bug Fixes

0.2.1 (2023-02-24)

Bug Fixes

  • always show shortcut tip (01ddd67)
  • should not override Vite's default fs.allow (9b24dd7)

0.2.0 (2023-02-23)

Bug Fixes

  • button: remove zoom from buttons to allow double tap on phone (#195) (f22200c)
  • click outside handling, fix #90 (40ddb1d)
  • correctly exit inspector, close #94 (3900d6b)
  • move back to components view when selecting a component (8a62d1f), closes #93
  • nuxt ui playground, close #188, close #184 (#192) (7268b3c)
  • templates: avoid using blur in no-animation mode, disable animation in Safari (#175) (23e09be)
  • ui: NTextInput fill width (de5c772)
  • ui: always add global style (3951517)
  • ui: auto wrap for example layout, close #163 (#164) (57a4d9e)
  • ui: color-mode using nuxt module (#86) (779131e)
  • ui: colors (31a33d6)
  • ui: darkmode style (9e1e5fe)
  • ui: explicit imports (822e8cb)
  • ui: fix cjs stub paths (00e6dc3)
  • ui: fix color mode toggle on Nuxt (8f03da2)
  • ui: improve background contrast (6344904)
  • ui: let nuxt/kit resolve module source (#117) (79c08fa)
  • ui: make carbon icons as deps (a530f04)
  • ui: use NuxtLink (202b1c7)
  • use repo for detecting logo (b7b3980)

Features

0.1.6 (2023-02-22)

Bug Fixes

  • cli: make sure only one nuxt devtools module is enabled, close #86 (92ccf1c)
  • composables popup (e669008)

Features

0.1.5 (2023-02-22)

Bug Fixes

  • do not bundle is-installed-globally, close #84 (87b3232)

Features

  • client: allow file column resize in VFS (#82) (70907e0)

0.1.4 (2023-02-16)

Bug Fixes

0.1.3 (2023-02-16)

Bug Fixes

  • performance downgrade (#66) (8683c50)
  • performance downgrade in node env (#71) (a90b825)
  • a11y: add aria-label & aria-expanded attrs to toggle button (#49) (7ea0fe6)
  • cannot close component inspector (#70) (63bf34f)
  • cli: improve windows compatibility, close #62 (e1ff704)
  • do not bundle pacote, close #41 (87d64db)
  • explicit import performance hook, close #61 (c7f83f8)
  • props without reactivity transform (0b21cb8)
  • revert vscode default mode to local-serve (9312802)
  • trigger client reactivity on app mounted (a9898c1)
  • use pointer cursor for user module which redirects to file (#51) (8c05e32)

Features

0.1.2 (2023-02-10)

Bug Fixes

  • legacy module path removal (378cc1c)

0.1.1 (2023-02-10)

Bug Fixes

  • insecure websocket connection (#36) (2c79aa5)
  • use cjs in global install to be compactible with Nuxt 2, close #42 (fb70274)

0.1.0 (2023-02-09)

Bug Fixes

Features

0.6.5 (2023-06-30)

Bug Fixes

  • open DevTools back when open file in embedded VS Code (#299) (45dc415)
  • plugins: change execution time position (#294) (2b5f8e5)
  • server-routes: fixed same path different methods (#301) (6dd8eb3)
  • try catch iframe cross-domain error (ddf41ea)

Features

0.6.4 (2023-06-26)

Bug Fixes

  • disable iframe interactive on dragging (cc84ccf)
  • prevent floating panel to dragged outside of window (#290) (6d315cd)
  • respect safe area, close #272 (2d84e4f)

Features

0.6.3 (2023-06-23)

Bug Fixes

  • add button and font reset to floating panel (f819b0c)
  • ComponentGraph: show global components in different color (#278) (41a881d)
  • overview: modules count (#284) (2ef2664)

Features

0.6.2 (2023-06-21)

Bug Fixes

Features

  • allow manually enter the token (fad945a)

0.6.1 (2023-06-15)

Bug Fixes

Features

  • auth required view for terminal (f1bf102)

0.6.0 (2023-06-13)

Bug Fixes

  • composables: hide usages of macro modules (e6cdbf3)
  • introduce local auth for running commands (#257) (306c6a5)
  • kit: explicit set file extension, close #262 (594a352)

Features

  • mutliple level command-palette, commands for docs (#247) (3cf828e)
  • new floating panel and layouting system (#266) (4b02cca)

0.5.5 (2023-05-25)

Bug Fixes

  • command-palette: avoid key conflicts (c86697e)
  • CommandPalette: fix item scroll (#246) (9aa13f6)
  • pages: route parsing (d525412)

0.5.4 (2023-05-24)

Bug Fixes

Features

0.5.3 (2023-05-23)

0.5.2 (2023-05-23)

Bug Fixes

  • improve module installing experience (ab8083b)
  • reactivity life cycle (486db15)

0.5.1 (2023-05-23)

Bug Fixes

  • analyze-build: state update (0e32bde)
  • plugin-metrics: forward plugin meta (facef7a)
  • ui-kit: set text prop as optional in NSectionBlock (#241) (16f726c)

Features

  • opt-out all experimental flag (ff850b1)

0.5.0 (2023-05-18)

Bug Fixes

  • build-analyze: improve ui (bd263ee)
  • components: improve graph relationship filtering, close #192 (c27f80b)
  • debounce disconnect indicator (895e6e3)
  • devtools-ui-kit: update unocss config path (#238) (5162bdd)
  • double disable vue-inspector (9dc0694)
  • improve module meta resolution (7dc3d93)
  • install-module: process exit code (8c8097e)
  • open-graph: avoid layout shift (4b1eb2c)
  • open-graph: use description for facebook (#239) (31c92f5)
  • print error on process failing (37f690b)
  • style: switch, radio, checkbox hover style (#230) (97f5b1a)
  • uninstall modules (#229) (f7db6a2)

Features

  • add component inspect button to the sidebar (512d852)
  • add dark/light mode switch transition (#224) (782e0da)
  • allow override vue-inspector options, close #234 (3311f11)
  • components: add legend for graph (de6a97d)
  • display vue version, close #236 (83b775a)
  • experimental add module from DevTools (#222) (501682b)
  • experimental build analyze (#190) (2344afd)
  • isolate ui options per-project (#232) (3b99477)
  • open-graph: use useSeoMeta over useHead (f7d11ee)
  • refactor components, close #227 (0caa4de)
  • server-routes: rolling out of experiment state (ed87dfd)
  • sidenav overflow as popup (da6c29f)
  • ui: fullscreen disconnect indicator (a158b1b)

0.4.6 (2023-05-08)

Bug Fixes

Features

0.4.5 (2023-04-30)

Bug Fixes

  • correctly read plugins list (76bc71d)
  • use compile time markdown (f9979b9)

0.4.4 (2023-04-30)

Features

0.4.3 (2023-04-29)

Bug Fixes

Features

0.4.2 (2023-04-24)

Bug Fixes

Features

Performance Improvements

  • defer devtools client initialization (2949e0d)
  • defer devtools client loading (ebc9a38)
  • improve runtime icons render (ea37a07)

0.4.1 (2023-04-18)

Bug Fixes

  • fix domain to work with https (#178) (646fb9b)
  • server-routes: add method dropdown (#187) (f47060e)
  • server-routes: handle base url (06eb4d7)
  • server-routes: persistence between route switches (#186) (2791d3e)
  • ServerRouteDetail: fix domain port & body (#185) (7b1fbf1)
  • ui-kit: NTextInput styles (0ed638e)
  • ui-kit: ssr compatibility, close #183 (4f49cd4)

Features

  • provide docs for built-in composables (e32b8d5)
  • server-routes: more code snippets (40913b9)
  • server-routes: open route in editor button (#189) (c0cbfdb)
  • styling (4be0a97)
  • ui-kit: Make NTextInput more generic (#181) (f3d61da)

0.4.0 (2023-04-11)

Bug Fixes

  • server-route: added route type to url (#175) (0bbeb28)
  • server-routes: route resolving (1895a16)
  • styling (d08b233)
  • ui-kit: NCodeBlock layout shift (875ff88)
  • wizard: also check versions greater than 3.4 (dd14aac)
  • wizard: remove global module install in 3.4 (c5fdf23)

Features

0.3.2 (2023-04-07)

Bug Fixes

Features

0.3.1 (2023-03-27)

Bug Fixes

  • explicit import defineNuxtPlugin (03535dc)

0.3.0 (2023-03-27)

Bug Fixes

  • assets: show <NuxtImage> snippet when @nuxt/image is installed (#133) (d440f14)
  • change shortcut to Shift + Alt + D, close #153 (ede19a7)
  • component inspector, close #137 (d608a0f)
  • components graph layout (b853005)
  • display font preview in assets detail (a18c762)
  • extra scrollbar (#139) (a94fd4d)
  • improve path display (7ed9657)
  • make assets detail scrollable (f0a547d)
  • popper text color in light mode (254b45e)
  • scrolling regression after splitpanes (455ec6c)
  • ui: fix unexpected sidenav icon scale on windows chrome (#138) (310117a)
  • vue inspector in latest Nuxt (f736291)

Features

Performance Improvements

0.2.5 (2023-02-28)

Bug Fixes

  • client: make iframe-client reactive (7f1df2c)
  • client: make ws connection non-blocking (6ed46e0)
  • deprioritize runtime categoray in components (14d3857)
  • filter out lazy runtime component (507cae2)
  • ui-kit: make make code block reactive to color mode (2c530d8)
  • ui-kit: runtime utils reference (2111622)

Features

  • add storage tab (#100) (c153313)
  • disconnect indicator (579e091)
  • extract resize panel (a30ea5f)
  • ui-kit: introduce NCodeBlock and NMarkdown components (f9a4f4b)

0.2.4 (2023-02-28)

Bug Fixes

  • hooks extend type (019bad4)
  • ui-kit: remove nuxt components override (132bafe)

Features

  • able to disable inspectors, close #103 (56d9c56)
  • add show workspace filter to component graph (ad8118e)
  • client: add splitpanes for resizable columns (#101) (2846ab2)
  • re-layout component views (2db818a)
  • ui-kit: expose NSectionBlock and NIconTitle, introduce NSelect (#102) (cebe031)

0.2.3 (2023-02-24)

Bug Fixes

  • always extends fs.allow (0c07ee0)
  • improve isGlobalInstall detection (500215d)

0.2.2 (2023-02-24)

Bug Fixes

0.2.1 (2023-02-24)

Bug Fixes

  • always show shortcut tip (01ddd67)
  • should not override Vite's default fs.allow (9b24dd7)

0.2.0 (2023-02-23)

Bug Fixes

  • button: remove zoom from buttons to allow double tap on phone (#195) (f22200c)
  • click outside handling, fix #90 (40ddb1d)
  • correctly exit inspector, close #94 (3900d6b)
  • move back to components view when selecting a component (8a62d1f), closes #93
  • nuxt ui playground, close #188, close #184 (#192) (7268b3c)
  • templates: avoid using blur in no-animation mode, disable animation in Safari (#175) (23e09be)
  • ui: NTextInput fill width (de5c772)
  • ui: always add global style (3951517)
  • ui: auto wrap for example layout, close #163 (#164) (57a4d9e)
  • ui: color-mode using nuxt module (#86) (779131e)
  • ui: colors (31a33d6)
  • ui: darkmode style (9e1e5fe)
  • ui: explicit imports (822e8cb)
  • ui: fix cjs stub paths (00e6dc3)
  • ui: fix color mode toggle on Nuxt (8f03da2)
  • ui: improve background contrast (6344904)
  • ui: let nuxt/kit resolve module source (#117) (79c08fa)
  • ui: make carbon icons as deps (a530f04)
  • ui: use NuxtLink (202b1c7)
  • use repo for detecting logo (b7b3980)

Features

0.1.6 (2023-02-22)

Bug Fixes

  • cli: make sure only one nuxt devtools module is enabled, close #86 (92ccf1c)
  • composables popup (e669008)

Features

0.1.5 (2023-02-22)

Bug Fixes

  • do not bundle is-installed-globally, close #84 (87b3232)

Features

  • client: allow file column resize in VFS (#82) (70907e0)

0.1.4 (2023-02-16)

Bug Fixes

0.1.3 (2023-02-16)

Bug Fixes

  • performance downgrade (#66) (8683c50)
  • performance downgrade in node env (#71) (a90b825)
  • a11y: add aria-label & aria-expanded attrs to toggle button (#49) (7ea0fe6)
  • cannot close component inspector (#70) (63bf34f)
  • cli: improve windows compatibility, close #62 (e1ff704)
  • do not bundle pacote, close #41 (87d64db)
  • explicit import performance hook, close #61 (c7f83f8)
  • props without reactivity transform (0b21cb8)
  • revert vscode default mode to local-serve (9312802)
  • trigger client reactivity on app mounted (a9898c1)
  • use pointer cursor for user module which redirects to file (#51) (8c05e32)

Features

0.1.2 (2023-02-10)

Bug Fixes

  • legacy module path removal (378cc1c)

0.1.1 (2023-02-10)

Bug Fixes

  • insecure websocket connection (#36) (2c79aa5)
  • use cjs in global install to be compactible with Nuxt 2, close #42 (fb70274)

0.1.0 (2023-02-09)

Bug Fixes

Features

0.6.4 (2023-06-26)

Bug Fixes

  • disable iframe interactive on dragging (cc84ccf)
  • prevent floating panel to dragged outside of window (#290) (6d315cd)
  • respect safe area, close #272 (2d84e4f)

Features

0.6.3 (2023-06-23)

Bug Fixes

  • add button and font reset to floating panel (f819b0c)
  • ComponentGraph: show global components in different color (#278) (41a881d)
  • overview: modules count (#284) (2ef2664)

Features

0.6.2 (2023-06-21)

Bug Fixes

Features

  • allow manually enter the token (fad945a)

0.6.1 (2023-06-15)

Bug Fixes

Features

  • auth required view for terminal (f1bf102)

0.6.0 (2023-06-13)

Bug Fixes

  • composables: hide usages of macro modules (e6cdbf3)
  • introduce local auth for running commands (#257) (306c6a5)
  • kit: explicit set file extension, close #262 (594a352)

Features

  • mutliple level command-palette, commands for docs (#247) (3cf828e)
  • new floating panel and layouting system (#266) (4b02cca)

0.5.5 (2023-05-25)

Bug Fixes

  • command-palette: avoid key conflicts (c86697e)
  • CommandPalette: fix item scroll (#246) (9aa13f6)
  • pages: route parsing (d525412)

0.5.4 (2023-05-24)

Bug Fixes

Features

0.5.3 (2023-05-23)

0.5.2 (2023-05-23)

Bug Fixes

  • improve module installing experience (ab8083b)
  • reactivity life cycle (486db15)

0.5.1 (2023-05-23)

Bug Fixes

  • analyze-build: state update (0e32bde)
  • plugin-metrics: forward plugin meta (facef7a)
  • ui-kit: set text prop as optional in NSectionBlock (#241) (16f726c)

Features

  • opt-out all experimental flag (ff850b1)

0.5.0 (2023-05-18)

Bug Fixes

  • build-analyze: improve ui (bd263ee)
  • components: improve graph relationship filtering, close #192 (c27f80b)
  • debounce disconnect indicator (895e6e3)
  • devtools-ui-kit: update unocss config path (#238) (5162bdd)
  • double disable vue-inspector (9dc0694)
  • improve module meta resolution (7dc3d93)
  • install-module: process exit code (8c8097e)
  • open-graph: avoid layout shift (4b1eb2c)
  • open-graph: use description for facebook (#239) (31c92f5)
  • print error on process failing (37f690b)
  • style: switch, radio, checkbox hover style (#230) (97f5b1a)
  • uninstall modules (#229) (f7db6a2)

Features

  • add component inspect button to the sidebar (512d852)
  • add dark/light mode switch transition (#224) (782e0da)
  • allow override vue-inspector options, close #234 (3311f11)
  • components: add legend for graph (de6a97d)
  • display vue version, close #236 (83b775a)
  • experimental add module from DevTools (#222) (501682b)
  • experimental build analyze (#190) (2344afd)
  • isolate ui options per-project (#232) (3b99477)
  • open-graph: use useSeoMeta over useHead (f7d11ee)
  • refactor components, close #227 (0caa4de)
  • server-routes: rolling out of experiment state (ed87dfd)
  • sidenav overflow as popup (da6c29f)
  • ui: fullscreen disconnect indicator (a158b1b)

0.4.6 (2023-05-08)

Bug Fixes

Features

0.4.5 (2023-04-30)

Bug Fixes

  • correctly read plugins list (76bc71d)
  • use compile time markdown (f9979b9)

0.4.4 (2023-04-30)

Features

0.4.3 (2023-04-29)

Bug Fixes

Features

0.4.2 (2023-04-24)

Bug Fixes

Features

Performance Improvements

  • defer devtools client initialization (2949e0d)
  • defer devtools client loading (ebc9a38)
  • improve runtime icons render (ea37a07)

0.4.1 (2023-04-18)

Bug Fixes

  • fix domain to work with https (#178) (646fb9b)
  • server-routes: add method dropdown (#187) (f47060e)
  • server-routes: handle base url (06eb4d7)
  • server-routes: persistence between route switches (#186) (2791d3e)
  • ServerRouteDetail: fix domain port & body (#185) (7b1fbf1)
  • ui-kit: NTextInput styles (0ed638e)
  • ui-kit: ssr compatibility, close #183 (4f49cd4)

Features

  • provide docs for built-in composables (e32b8d5)
  • server-routes: more code snippets (40913b9)
  • server-routes: open route in editor button (#189) (c0cbfdb)
  • styling (4be0a97)
  • ui-kit: Make NTextInput more generic (#181) (f3d61da)

0.4.0 (2023-04-11)

Bug Fixes

  • server-route: added route type to url (#175) (0bbeb28)
  • server-routes: route resolving (1895a16)
  • styling (d08b233)
  • ui-kit: NCodeBlock layout shift (875ff88)
  • wizard: also check versions greater than 3.4 (dd14aac)
  • wizard: remove global module install in 3.4 (c5fdf23)

Features

0.3.2 (2023-04-07)

Bug Fixes

Features

0.3.1 (2023-03-27)

Bug Fixes

  • explicit import defineNuxtPlugin (03535dc)

0.3.0 (2023-03-27)

Bug Fixes

  • assets: show <NuxtImage> snippet when @nuxt/image is installed (#133) (d440f14)
  • change shortcut to Shift + Alt + D, close #153 (ede19a7)
  • component inspector, close #137 (d608a0f)
  • components graph layout (b853005)
  • display font preview in assets detail (a18c762)
  • extra scrollbar (#139) (a94fd4d)
  • improve path display (7ed9657)
  • make assets detail scrollable (f0a547d)
  • popper text color in light mode (254b45e)
  • scrolling regression after splitpanes (455ec6c)
  • ui: fix unexpected sidenav icon scale on windows chrome (#138) (310117a)
  • vue inspector in latest Nuxt (f736291)

Features

Performance Improvements

0.2.5 (2023-02-28)

Bug Fixes

  • client: make iframe-client reactive (7f1df2c)
  • client: make ws connection non-blocking (6ed46e0)
  • deprioritize runtime categoray in components (14d3857)
  • filter out lazy runtime component (507cae2)
  • ui-kit: make make code block reactive to color mode (2c530d8)
  • ui-kit: runtime utils reference (2111622)

Features

  • add storage tab (#100) (c153313)
  • disconnect indicator (579e091)
  • extract resize panel (a30ea5f)
  • ui-kit: introduce NCodeBlock and NMarkdown components (f9a4f4b)

0.2.4 (2023-02-28)

Bug Fixes

  • hooks extend type (019bad4)
  • ui-kit: remove nuxt components override (132bafe)

Features

  • able to disable inspectors, close #103 (56d9c56)
  • add show workspace filter to component graph (ad8118e)
  • client: add splitpanes for resizable columns (#101) (2846ab2)
  • re-layout component views (2db818a)
  • ui-kit: expose NSectionBlock and NIconTitle, introduce NSelect (#102) (cebe031)

0.2.3 (2023-02-24)

Bug Fixes

  • always extends fs.allow (0c07ee0)
  • improve isGlobalInstall detection (500215d)

0.2.2 (2023-02-24)

Bug Fixes

0.2.1 (2023-02-24)

Bug Fixes

  • always show shortcut tip (01ddd67)
  • should not override Vite's default fs.allow (9b24dd7)

0.2.0 (2023-02-23)

Bug Fixes

  • button: remove zoom from buttons to allow double tap on phone (#195) (f22200c)
  • click outside handling, fix #90 (40ddb1d)
  • correctly exit inspector, close #94 (3900d6b)
  • move back to components view when selecting a component (8a62d1f), closes #93
  • nuxt ui playground, close #188, close #184 (#192) (7268b3c)
  • templates: avoid using blur in no-animation mode, disable animation in Safari (#175) (23e09be)
  • ui: NTextInput fill width (de5c772)
  • ui: always add global style (3951517)
  • ui: auto wrap for example layout, close #163 (#164) (57a4d9e)
  • ui: color-mode using nuxt module (#86) (779131e)
  • ui: colors (31a33d6)
  • ui: darkmode style (9e1e5fe)
  • ui: explicit imports (822e8cb)
  • ui: fix cjs stub paths (00e6dc3)
  • ui: fix color mode toggle on Nuxt (8f03da2)
  • ui: improve background contrast (6344904)
  • ui: let nuxt/kit resolve module source (#117) (79c08fa)
  • ui: make carbon icons as deps (a530f04)
  • ui: use NuxtLink (202b1c7)
  • use repo for detecting logo (b7b3980)

Features

0.1.6 (2023-02-22)

Bug Fixes

  • cli: make sure only one nuxt devtools module is enabled, close #86 (92ccf1c)
  • composables popup (e669008)

Features

0.1.5 (2023-02-22)

Bug Fixes

  • do not bundle is-installed-globally, close #84 (87b3232)

Features

  • client: allow file column resize in VFS (#82) (70907e0)

0.1.4 (2023-02-16)

Bug Fixes

0.1.3 (2023-02-16)

Bug Fixes

  • performance downgrade (#66) (8683c50)
  • performance downgrade in node env (#71) (a90b825)
  • a11y: add aria-label & aria-expanded attrs to toggle button (#49) (7ea0fe6)
  • cannot close component inspector (#70) (63bf34f)
  • cli: improve windows compatibility, close #62 (e1ff704)
  • do not bundle pacote, close #41 (87d64db)
  • explicit import performance hook, close #61 (c7f83f8)
  • props without reactivity transform (0b21cb8)
  • revert vscode default mode to local-serve (9312802)
  • trigger client reactivity on app mounted (a9898c1)
  • use pointer cursor for user module which redirects to file (#51) (8c05e32)

Features

0.1.2 (2023-02-10)

Bug Fixes

  • legacy module path removal (378cc1c)

0.1.1 (2023-02-10)

Bug Fixes

  • insecure websocket connection (#36) (2c79aa5)
  • use cjs in global install to be compactible with Nuxt 2, close #42 (fb70274)

0.1.0 (2023-02-09)

Bug Fixes

Features

0.6.3 (2023-06-23)

Bug Fixes

  • add button and font reset to floating panel (f819b0c)
  • ComponentGraph: show global components in different color (#278) (41a881d)
  • overview: modules count (#284) (2ef2664)

Features

0.6.2 (2023-06-21)

Bug Fixes

Features

  • allow manually enter the token (fad945a)

0.6.1 (2023-06-15)

Bug Fixes

Features

  • auth required view for terminal (f1bf102)

0.6.0 (2023-06-13)

Bug Fixes

  • composables: hide usages of macro modules (e6cdbf3)
  • introduce local auth for running commands (#257) (306c6a5)
  • kit: explicit set file extension, close #262 (594a352)

Features

  • mutliple level command-palette, commands for docs (#247) (3cf828e)
  • new floating panel and layouting system (#266) (4b02cca)

0.5.5 (2023-05-25)

Bug Fixes

  • command-palette: avoid key conflicts (c86697e)
  • CommandPalette: fix item scroll (#246) (9aa13f6)
  • pages: route parsing (d525412)

0.5.4 (2023-05-24)

Bug Fixes

Features

0.5.3 (2023-05-23)

0.5.2 (2023-05-23)

Bug Fixes

  • improve module installing experience (ab8083b)
  • reactivity life cycle (486db15)

0.5.1 (2023-05-23)

Bug Fixes

  • analyze-build: state update (0e32bde)
  • plugin-metrics: forward plugin meta (facef7a)
  • ui-kit: set text prop as optional in NSectionBlock (#241) (16f726c)

Features

  • opt-out all experimental flag (ff850b1)

0.5.0 (2023-05-18)

Bug Fixes

  • build-analyze: improve ui (bd263ee)
  • components: improve graph relationship filtering, close #192 (c27f80b)
  • debounce disconnect indicator (895e6e3)
  • devtools-ui-kit: update unocss config path (#238) (5162bdd)
  • double disable vue-inspector (9dc0694)
  • improve module meta resolution (7dc3d93)
  • install-module: process exit code (8c8097e)
  • open-graph: avoid layout shift (4b1eb2c)
  • open-graph: use description for facebook (#239) (31c92f5)
  • print error on process failing (37f690b)
  • style: switch, radio, checkbox hover style (#230) (97f5b1a)
  • uninstall modules (#229) (f7db6a2)

Features

  • add component inspect button to the sidebar (512d852)
  • add dark/light mode switch transition (#224) (782e0da)
  • allow override vue-inspector options, close #234 (3311f11)
  • components: add legend for graph (de6a97d)
  • display vue version, close #236 (83b775a)
  • experimental add module from DevTools (#222) (501682b)
  • experimental build analyze (#190) (2344afd)
  • isolate ui options per-project (#232) (3b99477)
  • open-graph: use useSeoMeta over useHead (f7d11ee)
  • refactor components, close #227 (0caa4de)
  • server-routes: rolling out of experiment state (ed87dfd)
  • sidenav overflow as popup (da6c29f)
  • ui: fullscreen disconnect indicator (a158b1b)

0.4.6 (2023-05-08)

Bug Fixes

Features

0.4.5 (2023-04-30)

Bug Fixes

  • correctly read plugins list (76bc71d)
  • use compile time markdown (f9979b9)

0.4.4 (2023-04-30)

Features

0.4.3 (2023-04-29)

Bug Fixes

Features

0.4.2 (2023-04-24)

Bug Fixes

Features

Performance Improvements

  • defer devtools client initialization (2949e0d)
  • defer devtools client loading (ebc9a38)
  • improve runtime icons render (ea37a07)

0.4.1 (2023-04-18)

Bug Fixes

  • fix domain to work with https (#178) (646fb9b)
  • server-routes: add method dropdown (#187) (f47060e)
  • server-routes: handle base url (06eb4d7)
  • server-routes: persistence between route switches (#186) (2791d3e)
  • ServerRouteDetail: fix domain port & body (#185) (7b1fbf1)
  • ui-kit: NTextInput styles (0ed638e)
  • ui-kit: ssr compatibility, close #183 (4f49cd4)

Features

  • provide docs for built-in composables (e32b8d5)
  • server-routes: more code snippets (40913b9)
  • server-routes: open route in editor button (#189) (c0cbfdb)
  • styling (4be0a97)
  • ui-kit: Make NTextInput more generic (#181) (f3d61da)

0.4.0 (2023-04-11)

Bug Fixes

  • server-route: added route type to url (#175) (0bbeb28)
  • server-routes: route resolving (1895a16)
  • styling (d08b233)
  • ui-kit: NCodeBlock layout shift (875ff88)
  • wizard: also check versions greater than 3.4 (dd14aac)
  • wizard: remove global module install in 3.4 (c5fdf23)

Features

0.3.2 (2023-04-07)

Bug Fixes

Features

0.3.1 (2023-03-27)

Bug Fixes

  • explicit import defineNuxtPlugin (03535dc)

0.3.0 (2023-03-27)

Bug Fixes

  • assets: show <NuxtImage> snippet when @nuxt/image is installed (#133) (d440f14)
  • change shortcut to Shift + Alt + D, close #153 (ede19a7)
  • component inspector, close #137 (d608a0f)
  • components graph layout (b853005)
  • display font preview in assets detail (a18c762)
  • extra scrollbar (#139) (a94fd4d)
  • improve path display (7ed9657)
  • make assets detail scrollable (f0a547d)
  • popper text color in light mode (254b45e)
  • scrolling regression after splitpanes (455ec6c)
  • ui: fix unexpected sidenav icon scale on windows chrome (#138) (310117a)
  • vue inspector in latest Nuxt (f736291)

Features

Performance Improvements

0.2.5 (2023-02-28)

Bug Fixes

  • client: make iframe-client reactive (7f1df2c)
  • client: make ws connection non-blocking (6ed46e0)
  • deprioritize runtime categoray in components (14d3857)
  • filter out lazy runtime component (507cae2)
  • ui-kit: make make code block reactive to color mode (2c530d8)
  • ui-kit: runtime utils reference (2111622)

Features

  • add storage tab (#100) (c153313)
  • disconnect indicator (579e091)
  • extract resize panel (a30ea5f)
  • ui-kit: introduce NCodeBlock and NMarkdown components (f9a4f4b)

0.2.4 (2023-02-28)

Bug Fixes

  • hooks extend type (019bad4)
  • ui-kit: remove nuxt components override (132bafe)

Features

  • able to disable inspectors, close #103 (56d9c56)
  • add show workspace filter to component graph (ad8118e)
  • client: add splitpanes for resizable columns (#101) (2846ab2)
  • re-layout component views (2db818a)
  • ui-kit: expose NSectionBlock and NIconTitle, introduce NSelect (#102) (cebe031)

0.2.3 (2023-02-24)

Bug Fixes

  • always extends fs.allow (0c07ee0)
  • improve isGlobalInstall detection (500215d)

0.2.2 (2023-02-24)

Bug Fixes

0.2.1 (2023-02-24)

Bug Fixes

  • always show shortcut tip (01ddd67)
  • should not override Vite's default fs.allow (9b24dd7)

0.2.0 (2023-02-23)

Bug Fixes

  • button: remove zoom from buttons to allow double tap on phone (#195) (f22200c)
  • click outside handling, fix #90 (40ddb1d)
  • correctly exit inspector, close #94 (3900d6b)
  • move back to components view when selecting a component (8a62d1f), closes #93
  • nuxt ui playground, close #188, close #184 (#192) (7268b3c)
  • templates: avoid using blur in no-animation mode, disable animation in Safari (#175) (23e09be)
  • ui: NTextInput fill width (de5c772)
  • ui: always add global style (3951517)
  • ui: auto wrap for example layout, close #163 (#164) (57a4d9e)
  • ui: color-mode using nuxt module (#86) (779131e)
  • ui: colors (31a33d6)
  • ui: darkmode style (9e1e5fe)
  • ui: explicit imports (822e8cb)
  • ui: fix cjs stub paths (00e6dc3)
  • ui: fix color mode toggle on Nuxt (8f03da2)
  • ui: improve background contrast (6344904)
  • ui: let nuxt/kit resolve module source (#117) (79c08fa)
  • ui: make carbon icons as deps (a530f04)
  • ui: use NuxtLink (202b1c7)
  • use repo for detecting logo (b7b3980)

Features

0.1.6 (2023-02-22)

Bug Fixes

  • cli: make sure only one nuxt devtools module is enabled, close #86 (92ccf1c)
  • composables popup (e669008)

Features

0.1.5 (2023-02-22)

Bug Fixes

  • do not bundle is-installed-globally, close #84 (87b3232)

Features

  • client: allow file column resize in VFS (#82) (70907e0)

0.1.4 (2023-02-16)

Bug Fixes

0.1.3 (2023-02-16)

Bug Fixes

  • performance downgrade (#66) (8683c50)
  • performance downgrade in node env (#71) (a90b825)
  • a11y: add aria-label & aria-expanded attrs to toggle button (#49) (7ea0fe6)
  • cannot close component inspector (#70) (63bf34f)
  • cli: improve windows compatibility, close #62 (e1ff704)
  • do not bundle pacote, close #41 (87d64db)
  • explicit import performance hook, close #61 (c7f83f8)
  • props without reactivity transform (0b21cb8)
  • revert vscode default mode to local-serve (9312802)
  • trigger client reactivity on app mounted (a9898c1)
  • use pointer cursor for user module which redirects to file (#51) (8c05e32)

Features

0.1.2 (2023-02-10)

Bug Fixes

  • legacy module path removal (378cc1c)

0.1.1 (2023-02-10)

Bug Fixes

  • insecure websocket connection (#36) (2c79aa5)
  • use cjs in global install to be compactible with Nuxt 2, close #42 (fb70274)

0.1.0 (2023-02-09)

Bug Fixes

Features

0.6.2 (2023-06-21)

Bug Fixes

Features

  • allow manually enter the token (fad945a)

0.6.1 (2023-06-15)

Bug Fixes

Features

  • auth required view for terminal (f1bf102)

0.6.0 (2023-06-13)

Bug Fixes

  • composables: hide usages of macro modules (e6cdbf3)
  • introduce local auth for running commands (#257) (306c6a5)
  • kit: explicit set file extension, close #262 (594a352)

Features

  • mutliple level command-palette, commands for docs (#247) (3cf828e)
  • new floating panel and layouting system (#266) (4b02cca)

0.5.5 (2023-05-25)

Bug Fixes

  • command-palette: avoid key conflicts (c86697e)
  • CommandPalette: fix item scroll (#246) (9aa13f6)
  • pages: route parsing (d525412)

0.5.4 (2023-05-24)

Bug Fixes

Features

0.5.3 (2023-05-23)

0.5.2 (2023-05-23)

Bug Fixes

  • improve module installing experience (ab8083b)
  • reactivity life cycle (486db15)

0.5.1 (2023-05-23)

Bug Fixes

  • analyze-build: state update (0e32bde)
  • plugin-metrics: forward plugin meta (facef7a)
  • ui-kit: set text prop as optional in NSectionBlock (#241) (16f726c)

Features

  • opt-out all experimental flag (ff850b1)

0.5.0 (2023-05-18)

Bug Fixes

  • build-analyze: improve ui (bd263ee)
  • components: improve graph relationship filtering, close #192 (c27f80b)
  • debounce disconnect indicator (895e6e3)
  • devtools-ui-kit: update unocss config path (#238) (5162bdd)
  • double disable vue-inspector (9dc0694)
  • improve module meta resolution (7dc3d93)
  • install-module: process exit code (8c8097e)
  • open-graph: avoid layout shift (4b1eb2c)
  • open-graph: use description for facebook (#239) (31c92f5)
  • print error on process failing (37f690b)
  • style: switch, radio, checkbox hover style (#230) (97f5b1a)
  • uninstall modules (#229) (f7db6a2)

Features

  • add component inspect button to the sidebar (512d852)
  • add dark/light mode switch transition (#224) (782e0da)
  • allow override vue-inspector options, close #234 (3311f11)
  • components: add legend for graph (de6a97d)
  • display vue version, close #236 (83b775a)
  • experimental add module from DevTools (#222) (501682b)
  • experimental build analyze (#190) (2344afd)
  • isolate ui options per-project (#232) (3b99477)
  • open-graph: use useSeoMeta over useHead (f7d11ee)
  • refactor components, close #227 (0caa4de)
  • server-routes: rolling out of experiment state (ed87dfd)
  • sidenav overflow as popup (da6c29f)
  • ui: fullscreen disconnect indicator (a158b1b)

0.4.6 (2023-05-08)

Bug Fixes

Features

0.4.5 (2023-04-30)

Bug Fixes

  • correctly read plugins list (76bc71d)
  • use compile time markdown (f9979b9)

0.4.4 (2023-04-30)

Features

0.4.3 (2023-04-29)

Bug Fixes

Features

0.4.2 (2023-04-24)

Bug Fixes

Features

Performance Improvements

  • defer devtools client initialization (2949e0d)
  • defer devtools client loading (ebc9a38)
  • improve runtime icons render (ea37a07)

0.4.1 (2023-04-18)

Bug Fixes

  • fix domain to work with https (#178) (646fb9b)
  • server-routes: add method dropdown (#187) (f47060e)
  • server-routes: handle base url (06eb4d7)
  • server-routes: persistence between route switches (#186) (2791d3e)
  • ServerRouteDetail: fix domain port & body (#185) (7b1fbf1)
  • ui-kit: NTextInput styles (0ed638e)
  • ui-kit: ssr compatibility, close #183 (4f49cd4)

Features

  • provide docs for built-in composables (e32b8d5)
  • server-routes: more code snippets (40913b9)
  • server-routes: open route in editor button (#189) (c0cbfdb)
  • styling (4be0a97)
  • ui-kit: Make NTextInput more generic (#181) (f3d61da)

0.4.0 (2023-04-11)

Bug Fixes

  • server-route: added route type to url (#175) (0bbeb28)
  • server-routes: route resolving (1895a16)
  • styling (d08b233)
  • ui-kit: NCodeBlock layout shift (875ff88)
  • wizard: also check versions greater than 3.4 (dd14aac)
  • wizard: remove global module install in 3.4 (c5fdf23)

Features

0.3.2 (2023-04-07)

Bug Fixes

Features

0.3.1 (2023-03-27)

Bug Fixes

  • explicit import defineNuxtPlugin (03535dc)

0.3.0 (2023-03-27)

Bug Fixes

  • assets: show <NuxtImage> snippet when @nuxt/image is installed (#133) (d440f14)
  • change shortcut to Shift + Alt + D, close #153 (ede19a7)
  • component inspector, close #137 (d608a0f)
  • components graph layout (b853005)
  • display font preview in assets detail (a18c762)
  • extra scrollbar (#139) (a94fd4d)
  • improve path display (7ed9657)
  • make assets detail scrollable (f0a547d)
  • popper text color in light mode (254b45e)
  • scrolling regression after splitpanes (455ec6c)
  • ui: fix unexpected sidenav icon scale on windows chrome (#138) (310117a)
  • vue inspector in latest Nuxt (f736291)

Features

Performance Improvements

0.2.5 (2023-02-28)

Bug Fixes

  • client: make iframe-client reactive (7f1df2c)
  • client: make ws connection non-blocking (6ed46e0)
  • deprioritize runtime categoray in components (14d3857)
  • filter out lazy runtime component (507cae2)
  • ui-kit: make make code block reactive to color mode (2c530d8)
  • ui-kit: runtime utils reference (2111622)

Features

  • add storage tab (#100) (c153313)
  • disconnect indicator (579e091)
  • extract resize panel (a30ea5f)
  • ui-kit: introduce NCodeBlock and NMarkdown components (f9a4f4b)

0.2.4 (2023-02-28)

Bug Fixes

  • hooks extend type (019bad4)
  • ui-kit: remove nuxt components override (132bafe)

Features

  • able to disable inspectors, close #103 (56d9c56)
  • add show workspace filter to component graph (ad8118e)
  • client: add splitpanes for resizable columns (#101) (2846ab2)
  • re-layout component views (2db818a)
  • ui-kit: expose NSectionBlock and NIconTitle, introduce NSelect (#102) (cebe031)

0.2.3 (2023-02-24)

Bug Fixes

  • always extends fs.allow (0c07ee0)
  • improve isGlobalInstall detection (500215d)

0.2.2 (2023-02-24)

Bug Fixes

0.2.1 (2023-02-24)

Bug Fixes

  • always show shortcut tip (01ddd67)
  • should not override Vite's default fs.allow (9b24dd7)

0.2.0 (2023-02-23)

Bug Fixes

  • button: remove zoom from buttons to allow double tap on phone (#195) (f22200c)
  • click outside handling, fix #90 (40ddb1d)
  • correctly exit inspector, close #94 (3900d6b)
  • move back to components view when selecting a component (8a62d1f), closes #93
  • nuxt ui playground, close #188, close #184 (#192) (7268b3c)
  • templates: avoid using blur in no-animation mode, disable animation in Safari (#175) (23e09be)
  • ui: NTextInput fill width (de5c772)
  • ui: always add global style (3951517)
  • ui: auto wrap for example layout, close #163 (#164) (57a4d9e)
  • ui: color-mode using nuxt module (#86) (779131e)
  • ui: colors (31a33d6)
  • ui: darkmode style (9e1e5fe)
  • ui: explicit imports (822e8cb)
  • ui: fix cjs stub paths (00e6dc3)
  • ui: fix color mode toggle on Nuxt (8f03da2)
  • ui: improve background contrast (6344904)
  • ui: let nuxt/kit resolve module source (#117) (79c08fa)
  • ui: make carbon icons as deps (a530f04)
  • ui: use NuxtLink (202b1c7)
  • use repo for detecting logo (b7b3980)

Features

0.1.6 (2023-02-22)

Bug Fixes

  • cli: make sure only one nuxt devtools module is enabled, close #86 (92ccf1c)
  • composables popup (e669008)

Features

0.1.5 (2023-02-22)

Bug Fixes

  • do not bundle is-installed-globally, close #84 (87b3232)

Features

  • client: allow file column resize in VFS (#82) (70907e0)

0.1.4 (2023-02-16)

Bug Fixes

0.1.3 (2023-02-16)

Bug Fixes

  • performance downgrade (#66) (8683c50)
  • performance downgrade in node env (#71) (a90b825)
  • a11y: add aria-label & aria-expanded attrs to toggle button (#49) (7ea0fe6)
  • cannot close component inspector (#70) (63bf34f)
  • cli: improve windows compatibility, close #62 (e1ff704)
  • do not bundle pacote, close #41 (87d64db)
  • explicit import performance hook, close #61 (c7f83f8)
  • props without reactivity transform (0b21cb8)
  • revert vscode default mode to local-serve (9312802)
  • trigger client reactivity on app mounted (a9898c1)
  • use pointer cursor for user module which redirects to file (#51) (8c05e32)

Features

0.1.2 (2023-02-10)

Bug Fixes

  • legacy module path removal (378cc1c)

0.1.1 (2023-02-10)

Bug Fixes

  • insecure websocket connection (#36) (2c79aa5)
  • use cjs in global install to be compactible with Nuxt 2, close #42 (fb70274)

0.1.0 (2023-02-09)

Bug Fixes

Features

0.6.1 (2023-06-15)

Bug Fixes

Features

  • auth required view for terminal (f1bf102)

0.6.0 (2023-06-13)

Bug Fixes

  • composables: hide usages of macro modules (e6cdbf3)
  • introduce local auth for running commands (#257) (306c6a5)
  • kit: explicit set file extension, close #262 (594a352)

Features

  • mutliple level command-palette, commands for docs (#247) (3cf828e)
  • new floating panel and layouting system (#266) (4b02cca)

0.5.5 (2023-05-25)

Bug Fixes

  • command-palette: avoid key conflicts (c86697e)
  • CommandPalette: fix item scroll (#246) (9aa13f6)
  • pages: route parsing (d525412)

0.5.4 (2023-05-24)

Bug Fixes

Features

0.5.3 (2023-05-23)

0.5.2 (2023-05-23)

Bug Fixes

  • improve module installing experience (ab8083b)
  • reactivity life cycle (486db15)

0.5.1 (2023-05-23)

Bug Fixes

  • analyze-build: state update (0e32bde)
  • plugin-metrics: forward plugin meta (facef7a)
  • ui-kit: set text prop as optional in NSectionBlock (#241) (16f726c)

Features

  • opt-out all experimental flag (ff850b1)

0.5.0 (2023-05-18)

Bug Fixes

  • build-analyze: improve ui (bd263ee)
  • components: improve graph relationship filtering, close #192 (c27f80b)
  • debounce disconnect indicator (895e6e3)
  • devtools-ui-kit: update unocss config path (#238) (5162bdd)
  • double disable vue-inspector (9dc0694)
  • improve module meta resolution (7dc3d93)
  • install-module: process exit code (8c8097e)
  • open-graph: avoid layout shift (4b1eb2c)
  • open-graph: use description for facebook (#239) (31c92f5)
  • print error on process failing (37f690b)
  • style: switch, radio, checkbox hover style (#230) (97f5b1a)
  • uninstall modules (#229) (f7db6a2)

Features

  • add component inspect button to the sidebar (512d852)
  • add dark/light mode switch transition (#224) (782e0da)
  • allow override vue-inspector options, close #234 (3311f11)
  • components: add legend for graph (de6a97d)
  • display vue version, close #236 (83b775a)
  • experimental add module from DevTools (#222) (501682b)
  • experimental build analyze (#190) (2344afd)
  • isolate ui options per-project (#232) (3b99477)
  • open-graph: use useSeoMeta over useHead (f7d11ee)
  • refactor components, close #227 (0caa4de)
  • server-routes: rolling out of experiment state (ed87dfd)
  • sidenav overflow as popup (da6c29f)
  • ui: fullscreen disconnect indicator (a158b1b)

0.4.6 (2023-05-08)

Bug Fixes

Features

0.4.5 (2023-04-30)

Bug Fixes

  • correctly read plugins list (76bc71d)
  • use compile time markdown (f9979b9)

0.4.4 (2023-04-30)

Features

0.4.3 (2023-04-29)

Bug Fixes

Features

0.4.2 (2023-04-24)

Bug Fixes

Features

Performance Improvements

  • defer devtools client initialization (2949e0d)
  • defer devtools client loading (ebc9a38)
  • improve runtime icons render (ea37a07)

0.4.1 (2023-04-18)

Bug Fixes

  • fix domain to work with https (#178) (646fb9b)
  • server-routes: add method dropdown (#187) (f47060e)
  • server-routes: handle base url (06eb4d7)
  • server-routes: persistence between route switches (#186) (2791d3e)
  • ServerRouteDetail: fix domain port & body (#185) (7b1fbf1)
  • ui-kit: NTextInput styles (0ed638e)
  • ui-kit: ssr compatibility, close #183 (4f49cd4)

Features

  • provide docs for built-in composables (e32b8d5)
  • server-routes: more code snippets (40913b9)
  • server-routes: open route in editor button (#189) (c0cbfdb)
  • styling (4be0a97)
  • ui-kit: Make NTextInput more generic (#181) (f3d61da)

0.4.0 (2023-04-11)

Bug Fixes

  • server-route: added route type to url (#175) (0bbeb28)
  • server-routes: route resolving (1895a16)
  • styling (d08b233)
  • ui-kit: NCodeBlock layout shift (875ff88)
  • wizard: also check versions greater than 3.4 (dd14aac)
  • wizard: remove global module install in 3.4 (c5fdf23)

Features

0.3.2 (2023-04-07)

Bug Fixes

Features

0.3.1 (2023-03-27)

Bug Fixes

  • explicit import defineNuxtPlugin (03535dc)

0.3.0 (2023-03-27)

Bug Fixes

  • assets: show <NuxtImage> snippet when @nuxt/image is installed (#133) (d440f14)
  • change shortcut to Shift + Alt + D, close #153 (ede19a7)
  • component inspector, close #137 (d608a0f)
  • components graph layout (b853005)
  • display font preview in assets detail (a18c762)
  • extra scrollbar (#139) (a94fd4d)
  • improve path display (7ed9657)
  • make assets detail scrollable (f0a547d)
  • popper text color in light mode (254b45e)
  • scrolling regression after splitpanes (455ec6c)
  • ui: fix unexpected sidenav icon scale on windows chrome (#138) (310117a)
  • vue inspector in latest Nuxt (f736291)

Features

Performance Improvements

0.2.5 (2023-02-28)

Bug Fixes

  • client: make iframe-client reactive (7f1df2c)
  • client: make ws connection non-blocking (6ed46e0)
  • deprioritize runtime categoray in components (14d3857)
  • filter out lazy runtime component (507cae2)
  • ui-kit: make make code block reactive to color mode (2c530d8)
  • ui-kit: runtime utils reference (2111622)

Features

  • add storage tab (#100) (c153313)
  • disconnect indicator (579e091)
  • extract resize panel (a30ea5f)
  • ui-kit: introduce NCodeBlock and NMarkdown components (f9a4f4b)

0.2.4 (2023-02-28)

Bug Fixes

  • hooks extend type (019bad4)
  • ui-kit: remove nuxt components override (132bafe)

Features

  • able to disable inspectors, close #103 (56d9c56)
  • add show workspace filter to component graph (ad8118e)
  • client: add splitpanes for resizable columns (#101) (2846ab2)
  • re-layout component views (2db818a)
  • ui-kit: expose NSectionBlock and NIconTitle, introduce NSelect (#102) (cebe031)

0.2.3 (2023-02-24)

Bug Fixes

  • always extends fs.allow (0c07ee0)
  • improve isGlobalInstall detection (500215d)

0.2.2 (2023-02-24)

Bug Fixes

0.2.1 (2023-02-24)

Bug Fixes

  • always show shortcut tip (01ddd67)
  • should not override Vite's default fs.allow (9b24dd7)

0.2.0 (2023-02-23)

Bug Fixes

  • button: remove zoom from buttons to allow double tap on phone (#195) (f22200c)
  • click outside handling, fix #90 (40ddb1d)
  • correctly exit inspector, close #94 (3900d6b)
  • move back to components view when selecting a component (8a62d1f), closes #93
  • nuxt ui playground, close #188, close #184 (#192) (7268b3c)
  • templates: avoid using blur in no-animation mode, disable animation in Safari (#175) (23e09be)
  • ui: NTextInput fill width (de5c772)
  • ui: always add global style (3951517)
  • ui: auto wrap for example layout, close #163 (#164) (57a4d9e)
  • ui: color-mode using nuxt module (#86) (779131e)
  • ui: colors (31a33d6)
  • ui: darkmode style (9e1e5fe)
  • ui: explicit imports (822e8cb)
  • ui: fix cjs stub paths (00e6dc3)
  • ui: fix color mode toggle on Nuxt (8f03da2)
  • ui: improve background contrast (6344904)
  • ui: let nuxt/kit resolve module source (#117) (79c08fa)
  • ui: make carbon icons as deps (a530f04)
  • ui: use NuxtLink (202b1c7)
  • use repo for detecting logo (b7b3980)

Features

0.1.6 (2023-02-22)

Bug Fixes

  • cli: make sure only one nuxt devtools module is enabled, close #86 (92ccf1c)
  • composables popup (e669008)

Features

0.1.5 (2023-02-22)

Bug Fixes

  • do not bundle is-installed-globally, close #84 (87b3232)

Features

  • client: allow file column resize in VFS (#82) (70907e0)

0.1.4 (2023-02-16)

Bug Fixes

0.1.3 (2023-02-16)

Bug Fixes

  • performance downgrade (#66) (8683c50)
  • performance downgrade in node env (#71) (a90b825)
  • a11y: add aria-label & aria-expanded attrs to toggle button (#49) (7ea0fe6)
  • cannot close component inspector (#70) (63bf34f)
  • cli: improve windows compatibility, close #62 (e1ff704)
  • do not bundle pacote, close #41 (87d64db)
  • explicit import performance hook, close #61 (c7f83f8)
  • props without reactivity transform (0b21cb8)
  • revert vscode default mode to local-serve (9312802)
  • trigger client reactivity on app mounted (a9898c1)
  • use pointer cursor for user module which redirects to file (#51) (8c05e32)

Features

0.1.2 (2023-02-10)

Bug Fixes

  • legacy module path removal (378cc1c)

0.1.1 (2023-02-10)

Bug Fixes

  • insecure websocket connection (#36) (2c79aa5)
  • use cjs in global install to be compactible with Nuxt 2, close #42 (fb70274)

0.1.0 (2023-02-09)

Bug Fixes

Features

0.6.0 (2023-06-13)

Bug Fixes

  • composables: hide usages of macro modules (e6cdbf3)
  • introduce local auth for running commands (#257) (306c6a5)
  • kit: explicit set file extension, close #262 (594a352)

Features

  • mutliple level command-palette, commands for docs (#247) (3cf828e)
  • new floating panel and layouting system (#266) (4b02cca)

0.5.5 (2023-05-25)

Bug Fixes

  • command-palette: avoid key conflicts (c86697e)
  • CommandPalette: fix item scroll (#246) (9aa13f6)
  • pages: route parsing (d525412)

0.5.4 (2023-05-24)

Bug Fixes

Features

0.5.3 (2023-05-23)

0.5.2 (2023-05-23)

Bug Fixes

  • improve module installing experience (ab8083b)
  • reactivity life cycle (486db15)

0.5.1 (2023-05-23)

Bug Fixes

  • analyze-build: state update (0e32bde)
  • plugin-metrics: forward plugin meta (facef7a)
  • ui-kit: set text prop as optional in NSectionBlock (#241) (16f726c)

Features

  • opt-out all experimental flag (ff850b1)

0.5.0 (2023-05-18)

Bug Fixes

  • build-analyze: improve ui (bd263ee)
  • components: improve graph relationship filtering, close #192 (c27f80b)
  • debounce disconnect indicator (895e6e3)
  • devtools-ui-kit: update unocss config path (#238) (5162bdd)
  • double disable vue-inspector (9dc0694)
  • improve module meta resolution (7dc3d93)
  • install-module: process exit code (8c8097e)
  • open-graph: avoid layout shift (4b1eb2c)
  • open-graph: use description for facebook (#239) (31c92f5)
  • print error on process failing (37f690b)
  • style: switch, radio, checkbox hover style (#230) (97f5b1a)
  • uninstall modules (#229) (f7db6a2)

Features

  • add component inspect button to the sidebar (512d852)
  • add dark/light mode switch transition (#224) (782e0da)
  • allow override vue-inspector options, close #234 (3311f11)
  • components: add legend for graph (de6a97d)
  • display vue version, close #236 (83b775a)
  • experimental add module from DevTools (#222) (501682b)
  • experimental build analyze (#190) (2344afd)
  • isolate ui options per-project (#232) (3b99477)
  • open-graph: use useSeoMeta over useHead (f7d11ee)
  • refactor components, close #227 (0caa4de)
  • server-routes: rolling out of experiment state (ed87dfd)
  • sidenav overflow as popup (da6c29f)
  • ui: fullscreen disconnect indicator (a158b1b)

0.4.6 (2023-05-08)

Bug Fixes

Features

0.4.5 (2023-04-30)

Bug Fixes

  • correctly read plugins list (76bc71d)
  • use compile time markdown (f9979b9)

0.4.4 (2023-04-30)

Features

0.4.3 (2023-04-29)

Bug Fixes

Features

0.4.2 (2023-04-24)

Bug Fixes

Features

Performance Improvements

  • defer devtools client initialization (2949e0d)
  • defer devtools client loading (ebc9a38)
  • improve runtime icons render (ea37a07)

0.4.1 (2023-04-18)

Bug Fixes

  • fix domain to work with https (#178) (646fb9b)
  • server-routes: add method dropdown (#187) (f47060e)
  • server-routes: handle base url (06eb4d7)
  • server-routes: persistence between route switches (#186) (2791d3e)
  • ServerRouteDetail: fix domain port & body (#185) (7b1fbf1)
  • ui-kit: NTextInput styles (0ed638e)
  • ui-kit: ssr compatibility, close #183 (4f49cd4)

Features

  • provide docs for built-in composables (e32b8d5)
  • server-routes: more code snippets (40913b9)
  • server-routes: open route in editor button (#189) (c0cbfdb)
  • styling (4be0a97)
  • ui-kit: Make NTextInput more generic (#181) (f3d61da)

0.4.0 (2023-04-11)

Bug Fixes

  • server-route: added route type to url (#175) (0bbeb28)
  • server-routes: route resolving (1895a16)
  • styling (d08b233)
  • ui-kit: NCodeBlock layout shift (875ff88)
  • wizard: also check versions greater than 3.4 (dd14aac)
  • wizard: remove global module install in 3.4 (c5fdf23)

Features

0.3.2 (2023-04-07)

Bug Fixes

Features

0.3.1 (2023-03-27)

Bug Fixes

  • explicit import defineNuxtPlugin (03535dc)

0.3.0 (2023-03-27)

Bug Fixes

  • assets: show <NuxtImage> snippet when @nuxt/image is installed (#133) (d440f14)
  • change shortcut to Shift + Alt + D, close #153 (ede19a7)
  • component inspector, close #137 (d608a0f)
  • components graph layout (b853005)
  • display font preview in assets detail (a18c762)
  • extra scrollbar (#139) (a94fd4d)
  • improve path display (7ed9657)
  • make assets detail scrollable (f0a547d)
  • popper text color in light mode (254b45e)
  • scrolling regression after splitpanes (455ec6c)
  • ui: fix unexpected sidenav icon scale on windows chrome (#138) (310117a)
  • vue inspector in latest Nuxt (f736291)

Features

Performance Improvements

0.2.5 (2023-02-28)

Bug Fixes

  • client: make iframe-client reactive (7f1df2c)
  • client: make ws connection non-blocking (6ed46e0)
  • deprioritize runtime categoray in components (14d3857)
  • filter out lazy runtime component (507cae2)
  • ui-kit: make make code block reactive to color mode (2c530d8)
  • ui-kit: runtime utils reference (2111622)

Features

  • add storage tab (#100) (c153313)
  • disconnect indicator (579e091)
  • extract resize panel (a30ea5f)
  • ui-kit: introduce NCodeBlock and NMarkdown components (f9a4f4b)

0.2.4 (2023-02-28)

Bug Fixes

  • hooks extend type (019bad4)
  • ui-kit: remove nuxt components override (132bafe)

Features

  • able to disable inspectors, close #103 (56d9c56)
  • add show workspace filter to component graph (ad8118e)
  • client: add splitpanes for resizable columns (#101) (2846ab2)
  • re-layout component views (2db818a)
  • ui-kit: expose NSectionBlock and NIconTitle, introduce NSelect (#102) (cebe031)

0.2.3 (2023-02-24)

Bug Fixes

  • always extends fs.allow (0c07ee0)
  • improve isGlobalInstall detection (500215d)

0.2.2 (2023-02-24)

Bug Fixes

0.2.1 (2023-02-24)

Bug Fixes

  • always show shortcut tip (01ddd67)
  • should not override Vite's default fs.allow (9b24dd7)

0.2.0 (2023-02-23)

Bug Fixes

  • button: remove zoom from buttons to allow double tap on phone (#195) (f22200c)
  • click outside handling, fix #90 (40ddb1d)
  • correctly exit inspector, close #94 (3900d6b)
  • move back to components view when selecting a component (8a62d1f), closes #93
  • nuxt ui playground, close #188, close #184 (#192) (7268b3c)
  • templates: avoid using blur in no-animation mode, disable animation in Safari (#175) (23e09be)
  • ui: NTextInput fill width (de5c772)
  • ui: always add global style (3951517)
  • ui: auto wrap for example layout, close #163 (#164) (57a4d9e)
  • ui: color-mode using nuxt module (#86) (779131e)
  • ui: colors (31a33d6)
  • ui: darkmode style (9e1e5fe)
  • ui: explicit imports (822e8cb)
  • ui: fix cjs stub paths (00e6dc3)
  • ui: fix color mode toggle on Nuxt (8f03da2)
  • ui: improve background contrast (6344904)
  • ui: let nuxt/kit resolve module source (#117) (79c08fa)
  • ui: make carbon icons as deps (a530f04)
  • ui: use NuxtLink (202b1c7)
  • use repo for detecting logo (b7b3980)

Features

0.1.6 (2023-02-22)

Bug Fixes

  • cli: make sure only one nuxt devtools module is enabled, close #86 (92ccf1c)
  • composables popup (e669008)

Features

0.1.5 (2023-02-22)

Bug Fixes

  • do not bundle is-installed-globally, close #84 (87b3232)

Features

  • client: allow file column resize in VFS (#82) (70907e0)

0.1.4 (2023-02-16)

Bug Fixes

0.1.3 (2023-02-16)

Bug Fixes

  • performance downgrade (#66) (8683c50)
  • performance downgrade in node env (#71) (a90b825)
  • a11y: add aria-label & aria-expanded attrs to toggle button (#49) (7ea0fe6)
  • cannot close component inspector (#70) (63bf34f)
  • cli: improve windows compatibility, close #62 (e1ff704)
  • do not bundle pacote, close #41 (87d64db)
  • explicit import performance hook, close #61 (c7f83f8)
  • props without reactivity transform (0b21cb8)
  • revert vscode default mode to local-serve (9312802)
  • trigger client reactivity on app mounted (a9898c1)
  • use pointer cursor for user module which redirects to file (#51) (8c05e32)

Features

0.1.2 (2023-02-10)

Bug Fixes

  • legacy module path removal (378cc1c)

0.1.1 (2023-02-10)

Bug Fixes

  • insecure websocket connection (#36) (2c79aa5)
  • use cjs in global install to be compactible with Nuxt 2, close #42 (fb70274)

0.1.0 (2023-02-09)

Bug Fixes

Features

0.5.5 (2023-05-25)

Bug Fixes

  • command-palette: avoid key conflicts (c86697e)
  • CommandPalette: fix item scroll (#246) (9aa13f6)
  • pages: route parsing (d525412)

0.5.4 (2023-05-24)

Bug Fixes

Features

0.5.3 (2023-05-23)

0.5.2 (2023-05-23)

Bug Fixes

  • improve module installing experience (ab8083b)
  • reactivity life cycle (486db15)

0.5.1 (2023-05-23)

Bug Fixes

  • analyze-build: state update (0e32bde)
  • plugin-metrics: forward plugin meta (facef7a)
  • ui-kit: set text prop as optional in NSectionBlock (#241) (16f726c)

Features

  • opt-out all experimental flag (ff850b1)

0.5.0 (2023-05-18)

Bug Fixes

  • build-analyze: improve ui (bd263ee)
  • components: improve graph relationship filtering, close #192 (c27f80b)
  • debounce disconnect indicator (895e6e3)
  • devtools-ui-kit: update unocss config path (#238) (5162bdd)
  • double disable vue-inspector (9dc0694)
  • improve module meta resolution (7dc3d93)
  • install-module: process exit code (8c8097e)
  • open-graph: avoid layout shift (4b1eb2c)
  • open-graph: use description for facebook (#239) (31c92f5)
  • print error on process failing (37f690b)
  • style: switch, radio, checkbox hover style (#230) (97f5b1a)
  • uninstall modules (#229) (f7db6a2)

Features

  • add component inspect button to the sidebar (512d852)
  • add dark/light mode switch transition (#224) (782e0da)
  • allow override vue-inspector options, close #234 (3311f11)
  • components: add legend for graph (de6a97d)
  • display vue version, close #236 (83b775a)
  • experimental add module from DevTools (#222) (501682b)
  • experimental build analyze (#190) (2344afd)
  • isolate ui options per-project (#232) (3b99477)
  • open-graph: use useSeoMeta over useHead (f7d11ee)
  • refactor components, close #227 (0caa4de)
  • server-routes: rolling out of experiment state (ed87dfd)
  • sidenav overflow as popup (da6c29f)
  • ui: fullscreen disconnect indicator (a158b1b)

0.4.6 (2023-05-08)

Bug Fixes

Features

0.4.5 (2023-04-30)

Bug Fixes

  • correctly read plugins list (76bc71d)
  • use compile time markdown (f9979b9)

0.4.4 (2023-04-30)

Features

0.4.3 (2023-04-29)

Bug Fixes

Features

0.4.2 (2023-04-24)

Bug Fixes

Features

Performance Improvements

  • defer devtools client initialization (2949e0d)
  • defer devtools client loading (ebc9a38)
  • improve runtime icons render (ea37a07)

0.4.1 (2023-04-18)

Bug Fixes

  • fix domain to work with https (#178) (646fb9b)
  • server-routes: add method dropdown (#187) (f47060e)
  • server-routes: handle base url (06eb4d7)
  • server-routes: persistence between route switches (#186) (2791d3e)
  • ServerRouteDetail: fix domain port & body (#185) (7b1fbf1)
  • ui-kit: NTextInput styles (0ed638e)
  • ui-kit: ssr compatibility, close #183 (4f49cd4)

Features

  • provide docs for built-in composables (e32b8d5)
  • server-routes: more code snippets (40913b9)
  • server-routes: open route in editor button (#189) (c0cbfdb)
  • styling (4be0a97)
  • ui-kit: Make NTextInput more generic (#181) (f3d61da)

0.4.0 (2023-04-11)

Bug Fixes

  • server-route: added route type to url (#175) (0bbeb28)
  • server-routes: route resolving (1895a16)
  • styling (d08b233)
  • ui-kit: NCodeBlock layout shift (875ff88)
  • wizard: also check versions greater than 3.4 (dd14aac)
  • wizard: remove global module install in 3.4 (c5fdf23)

Features

0.3.2 (2023-04-07)

Bug Fixes

Features

0.3.1 (2023-03-27)

Bug Fixes

  • explicit import defineNuxtPlugin (03535dc)

0.3.0 (2023-03-27)

Changes

  • Panel toggle shortcut changed to Shift + Alt + D (#153)
  • Some design improvements
  • New tabs
    • Assets
    • Terminals
  • Support upgrading packages in devtools
  • Able to measure plugins execution time
  • For module authors:
    • @nuxt/devtools-kit is introduced, you can safely depend on it
    • @nuxt/devtools/kit is moved @nuxt/devtools-kit
    • @nuxt/devtools/iframe-client is moved to @nuxt/devtools-kit/iframe-client
    • Extendable RPC is introduced, you can now integration your own client-server communication
  • Learn more at docs

New Tabs

Assets

The assets tab that shows all your static assets and their information. You can copy the paths of the assets, or the code snippets of using them. In the future, with the integrations of Nuxt Image, you can even optimize images with a single click.

tab-assets

Plugins

Plugins tab shows all the plugins you are using in your app. As plugins runs before the app is mounted,the time spent in each plugin should be minimal to avoid blocking the app from rendering. The time cost of each plugin provided can be helpful to find performance bottlenecks.

tab-plugins

Terminals Tab

In some integrations, they might require to have subprocesses running to do certain jobs. Before DevTools, you either hide the output of the subprocess entirely and swallow the potential warnings/errors, or pipe to stdout and pollute your terminal with multiple outputs. Now you can now have the outputs in DevTools for each process and clearly isolated.

tab-terminals

Bug Fixes

  • assets: show <NuxtImage> snippet when @nuxt/image is installed (#133) (d440f14)
  • change shortcut to Shift + Alt + D, close #153 (ede19a7)
  • component inspector, close #137 (d608a0f)
  • components graph layout (b853005)
  • display font preview in assets detail (a18c762)
  • extra scrollbar (#139) (a94fd4d)
  • improve path display (7ed9657)
  • make assets detail scrollable (f0a547d)
  • popper text color in light mode (254b45e)
  • scrolling regression after splitpanes (455ec6c)
  • ui: fix unexpected sidenav icon scale on windows chrome (#138) (310117a)
  • vue inspector in latest Nuxt (f736291)

Features

Performance Improvements

0.2.5 (2023-02-28)

Bug Fixes

  • client: make iframe-client reactive (7f1df2c)
  • client: make ws connection non-blocking (6ed46e0)
  • deprioritize runtime categoray in components (14d3857)
  • filter out lazy runtime component (507cae2)
  • ui-kit: make make code block reactive to color mode (2c530d8)
  • ui-kit: runtime utils reference (2111622)

Features

  • add storage tab (#100) (c153313)
  • disconnect indicator (579e091)
  • extract resize panel (a30ea5f)
  • ui-kit: introduce NCodeBlock and NMarkdown components (f9a4f4b)

0.2.4 (2023-02-28)

Bug Fixes

  • hooks extend type (019bad4)
  • ui-kit: remove nuxt components override (132bafe)

Features

  • able to disable inspectors, close #103 (56d9c56)
  • add show workspace filter to component graph (ad8118e)
  • client: add splitpanes for resizable columns (#101) (2846ab2)
  • re-layout component views (2db818a)
  • ui-kit: expose NSectionBlock and NIconTitle, introduce NSelect (#102) (cebe031)

0.2.3 (2023-02-24)

Bug Fixes

  • always extends fs.allow (0c07ee0)
  • improve isGlobalInstall detection (500215d)

0.2.2 (2023-02-24)

Bug Fixes

0.2.1 (2023-02-24)

Bug Fixes

  • always show shortcut tip (01ddd67)
  • should not override Vite's default fs.allow (9b24dd7)

0.2.0 (2023-02-23)

Bug Fixes

  • button: remove zoom from buttons to allow double tap on phone (#195) (f22200c)
  • click outside handling, fix #90 (40ddb1d)
  • correctly exit inspector, close #94 (3900d6b)
  • move back to components view when selecting a component (8a62d1f), closes #93
  • nuxt ui playground, close #188, close #184 (#192) (7268b3c)
  • templates: avoid using blur in no-animation mode, disable animation in Safari (#175) (23e09be)
  • ui: NTextInput fill width (de5c772)
  • ui: always add global style (3951517)
  • ui: auto wrap for example layout, close #163 (#164) (57a4d9e)
  • ui: color-mode using nuxt module (#86) (779131e)
  • ui: colors (31a33d6)
  • ui: darkmode style (9e1e5fe)
  • ui: explicit imports (822e8cb)
  • ui: fix cjs stub paths (00e6dc3)
  • ui: fix color mode toggle on Nuxt (8f03da2)
  • ui: improve background contrast (6344904)
  • ui: let nuxt/kit resolve module source (#117) (79c08fa)
  • ui: make carbon icons as deps (a530f04)
  • ui: use NuxtLink (202b1c7)
  • use repo for detecting logo (b7b3980)

Features

0.1.6 (2023-02-22)

Bug Fixes

  • cli: make sure only one nuxt devtools module is enabled, close #86 (92ccf1c)
  • composables popup (e669008)

Features

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

0.1.5 (2023-02-22)

Features

  • client: allow file column resize in VFS (#82) (70907e0)

Bug Fixes

  • do not bundle is-installed-globally, close #84 (87b3232)

0.1.4 (2023-02-16)

Bug Fixes

0.1.3 (2023-02-16)

Features

Bug Fixes

  • performance downgrade (#66) (8683c50)
  • performance downgrade in node env (#71) (a90b825)
  • a11y: add aria-label & aria-expanded attrs to toggle button (#49) (7ea0fe6)
  • cannot close component inspector (#70) (63bf34f)
  • cli: improve windows compatibility, close #62 (e1ff704)
  • do not bundle pacote, close #41 (87d64db)
  • explicit import performance hook, close #61 (c7f83f8)
  • props without reactivity transform (0b21cb8)
  • revert vscode default mode to local-serve (9312802)
  • trigger client reactivity on app mounted (a9898c1)
  • use pointer cursor for user module which redirects to file (#51) (8c05e32)

0.1.2 (2023-02-10)

Bug Fixes

  • legacy module path removal (378cc1c)

0.1.1 (2023-02-10)

Bug Fixes

  • insecure websocket connection (#36) (2c79aa5)
  • use cjs in global install to be compactible with Nuxt 2, close #42 (fb70274)

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.