Skip to main content
All docs
V26.1
  • Upgrade to a New Package Version

    The topic below describes how to upgrade the client-side DashboardControl to a new version with npm.

    The devexpress-dashboard npm package references the devextreme and @devexpress/analytics-core npm packages as peer dependencies. The peer dependencies should be installed and updated manually.

    Requirements

    • The script version on the client should match with libraries version on the server.
    • All installed DevExpress npm packages should have matching versions.

    Version Update in package.json

    1. Open the package.json file and specify package versions:
    {
      // ...
      "dependencies": {    
        "@devexpress/analytics-core": "26.1.3",    
        "devexpress-dashboard": "26.1.3",
        "devextreme": "26.1.3",
        "devexpress-dashboard-vue": "26.1.3",
        "devextreme-vue": "26.1.3"
      },
    }
    
    1. Install npm packages:
    npm install
    

    Version Update in the Command Line

    Run the following command:

    npm install devexpress-dashboard@26.1.3 devextreme@26.1.3 @devexpress/analytics-core@26.1.3 devexpress-dashboard-vue@26.1.3 devextreme-vue@26.1 --save --save-exact
    
    See Also