@progress/kendo-cli 1.6.1 → 1.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -18848,7 +18848,7 @@ module.exports = "---\nimport \"@progress/kendo-theme-default/dist/all.css\";\n\
18848
18848
  \****************************************************************************************************************************************/
18849
18849
  /***/ ((module) => {
18850
18850
 
18851
- module.exports = "---\nimport GridComponent from \"../components/grid/Grid.tsx\";\nimport Layout from \"../layouts/Layout.astro\";\n---\n\n<Layout title=\"KendoReact Grid with Astro\">\n <GridComponent />\n</Layout>\n";
18851
+ module.exports = "---\nimport GridComponent from \"../components/grid/Grid.tsx\";\nimport Layout from \"../layouts/Layout.astro\";\n---\n\n<Layout title=\"KendoReact Grid with Astro\">\n <GridComponent client:load />\n</Layout>\n";
18852
18852
 
18853
18853
  /***/ }),
18854
18854
 
@@ -22262,7 +22262,7 @@ class CreateAstroApp extends scaffolding_1.ProjectTemplate {
22262
22262
  async applyKendoTheme(file, content) {
22263
22263
  const filePath = 'src/layouts/Layout.astro';
22264
22264
  if (file.includes(filePath)) {
22265
- let updatedContent = content.replace(`import '@progress/kendo-theme-default/dist/all.css';`, `import '@progress/kendo-theme-${this.options.theme}/dist/all.css';`);
22265
+ let updatedContent = content.replace(`import "@progress/kendo-theme-default/dist/all.css";`, `import "@progress/kendo-theme-${this.options.theme}/dist/all.css";`);
22266
22266
  return updatedContent;
22267
22267
  }
22268
22268
  return content;