@progress/kendo-angular-schematics 22.1.0-develop.17 → 22.1.0-develop.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-schematics",
3
- "version": "22.1.0-develop.17",
3
+ "version": "22.1.0-develop.19",
4
4
  "description": "Kendo UI Schematics for Angular",
5
5
  "license": "SEE LICENSE in LICENSE.md",
6
6
  "author": "Progress",
@@ -29,7 +29,7 @@
29
29
  "rxjs": "^6.5.3 || ^7.0.0"
30
30
  },
31
31
  "dependencies": {
32
- "@progress/kendo-angular-schematics": "22.1.0-develop.17",
32
+ "@progress/kendo-angular-schematics": "22.1.0-develop.19",
33
33
  "semver": "^7.5.3",
34
34
  "@types/semver": "^7.5.0"
35
35
  },
@@ -4,5 +4,5 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Rule } from '@angular-devkit/schematics';
6
6
  import { Schema as RegisterSchema } from './schema';
7
- export declare const themeVersion = "12.3.0";
7
+ export declare const themeVersion = "dev";
8
8
  export declare function importTheme(options: RegisterSchema): Rule;
@@ -15,7 +15,7 @@ const themePackageName = (options) => {
15
15
  return `@progress/kendo-theme-${options.theme}`;
16
16
  };
17
17
  const themePath = (name) => `node_modules/${name}/dist/all.css`;
18
- exports.themeVersion = '12.3.0';
18
+ exports.themeVersion = 'dev';
19
19
  function importTheme(options) {
20
20
  const theme = themePackageName(options);
21
21
  if (!theme)