@syncfusion/ej2-angular-progressbar 20.2.45 → 20.3.47

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,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-progressbar@*",
3
- "_id": "@syncfusion/ej2-angular-progressbar@20.2.43",
3
+ "_id": "@syncfusion/ej2-angular-progressbar@20.2.45",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-8K+JV8lvKiCCeM2NACfdVsRJJ0d75pDt4UXIkMr/7dBJv516NpzjWENlFqgvijeZJMJf9nBb/oKs83ups7IhnQ==",
5
+ "_integrity": "sha512-pT5LYmsOuxUASTiqg6rlYu3agXKh7l35uuhknzxXq3yUE4aIDuPdbiRuuO7rLlTVkCX44h83xDZ7eONmDZzxtQ==",
6
6
  "_location": "/@syncfusion/ej2-angular-progressbar",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-progressbar/-/ej2-angular-progressbar-20.2.43.tgz",
23
- "_shasum": "b4d053ab578d6d23ec0290e71e2af73f9bc387d9",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-angular-release/@syncfusion/ej2-angular-progressbar/-/ej2-angular-progressbar-20.2.45.tgz",
23
+ "_shasum": "46690ed66c80026af37c3b359e297425325407fd",
24
24
  "_spec": "@syncfusion/ej2-angular-progressbar@*",
25
25
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/ivypackages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~20.2.45",
35
- "@syncfusion/ej2-base": "~20.2.45",
36
- "@syncfusion/ej2-progressbar": "20.2.45",
34
+ "@syncfusion/ej2-angular-base": "~20.3.47",
35
+ "@syncfusion/ej2-base": "~20.3.47",
36
+ "@syncfusion/ej2-progressbar": "20.3.47",
37
37
  "tslib": "^2.3.0"
38
38
  },
39
39
  "deprecated": false,
@@ -83,5 +83,5 @@
83
83
  "schematics": "./schematics/collection.json",
84
84
  "sideEffects": false,
85
85
  "typings": "syncfusion-ej2-angular-progressbar.d.ts",
86
- "version": "20.2.45"
86
+ "version": "20.3.47"
87
87
  }
@@ -0,0 +1,10 @@
1
+ {
2
+ "$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
3
+ "schematics": {
4
+ "ng-add": {
5
+ "description": "Adds Essential JS 2 specific Angular package to an application",
6
+ "factory": "./ng-add",
7
+ "schema": "./ng-add/schema.json"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,3 @@
1
+ import { OptionsSchema } from './schema';
2
+ import { Rule } from '@angular-devkit/schematics';
3
+ export default function (options: OptionsSchema): Rule;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const lib_details_1 = require("./../utils/lib-details");
4
+ const schematics_1 = require("@syncfusion/ej2-angular-base/schematics");
5
+ function default_1(options) {
6
+ const libOptions = Object.assign({}, { 'pkgName': lib_details_1.pkgName, 'pkgVer': lib_details_1.pkgVer, 'moduleName': lib_details_1.moduleName, 'themeVer': lib_details_1.themeVer });
7
+ return schematics_1.install(options, libOptions);
8
+ }
9
+ exports.default = default_1;
@@ -0,0 +1,13 @@
1
+ export interface OptionsSchema {
2
+ skipPackageJson: boolean;
3
+ modules: string;
4
+ modulePath: string;
5
+ theme: 'material' | 'fabric' | 'bootstrap' | 'highcontrast';
6
+ project?: string;
7
+ }
8
+ export interface LibOptionsSchema {
9
+ pkgName: string;
10
+ pkgVer: string;
11
+ moduleName: string;
12
+ themeVer: string;
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,34 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "ngAdd",
4
+ "title": "Add Essential JS 2 Angular packages",
5
+ "type": "object",
6
+ "properties": {
7
+ "skipPackageJson": {
8
+ "type": "boolean",
9
+ "default": false,
10
+ "description": "Do not add add Essential JS 2 Angular packages dependencies to package.json (e.g., --skipPackageJson)"
11
+ },
12
+ "modules": {
13
+ "type": "string",
14
+ "default": "",
15
+ "description": "Add only specific Essential JS 2 modules to the app.module file (eg: --modules=slider, grid)"
16
+ },
17
+ "modulePath": {
18
+ "type": "string",
19
+ "default": "",
20
+ "description": "Used to specify the path of the module file where the EJ2 module needs to be imported"
21
+ },
22
+ "theme": {
23
+ "enum": [
24
+ "material",
25
+ "fabric",
26
+ "bootstrap",
27
+ "highcontrast"
28
+ ],
29
+ "default": "material",
30
+ "description": "Used to change the theme that needs to be imported"
31
+ }
32
+ },
33
+ "required": []
34
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "compilerOptions": {
3
+ "lib": ["es2017", "dom"],
4
+ "module": "commonjs",
5
+ "moduleResolution": "node",
6
+ "noEmitOnError": false,
7
+ "skipDefaultLibCheck": true,
8
+ "skipLibCheck": true,
9
+ "sourceMap": true,
10
+ "target": "es6",
11
+ "declaration": true,
12
+ "types": [
13
+ "jasmine",
14
+ "node"
15
+ ]
16
+ },
17
+ "exclude": [
18
+ "node_modules",
19
+ "src",
20
+ "src/**/*.ts",
21
+ "spec",
22
+ "spec/**/*.ts",
23
+ "@typings"
24
+ ]
25
+ }
@@ -0,0 +1,4 @@
1
+ export declare const pkgName = "@syncfusion/ej2-angular-progressbar";
2
+ export declare const pkgVer = "^18.14.0";
3
+ export declare const moduleName = "ProgressBarModule";
4
+ export declare const themeVer = "~18.14.0";
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.pkgName = '@syncfusion/ej2-angular-progressbar';
4
+ exports.pkgVer = '^20.3.47';
5
+ exports.moduleName = 'ProgressBarModule';
6
+ exports.themeVer = '~20.3.47';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-progressbar';
2
- export const pkgVer = '^20.2.43';
2
+ export const pkgVer = '^20.3.47';
3
3
  export const moduleName = 'ProgressBarModule';
4
- export const themeVer = '~20.2.43';
4
+ export const themeVer = '~20.3.47';