@syncfusion/ej2-vue-progressbar 20.2.43 → 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-vue-progressbar@*",
3
- "_id": "@syncfusion/ej2-vue-progressbar@20.2.38",
3
+ "_id": "@syncfusion/ej2-vue-progressbar@20.3.1",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-EeEQSvzRe2Oc8bwPORmMptnTyuRObvs+ibOdj+sjuc1O1RVusPv1YwBLeOKXIscdB8sqlfGS1SAj11tv7pdacw==",
5
+ "_integrity": "sha512-++7TfbmCW8GAOTvxMvtgOCRRud7FzZh5FLPoswZa+T04mbcnyI5DNHgU9jpr+a9ioGbNzLG059waG+WRAf4ihg==",
6
6
  "_location": "/@syncfusion/ej2-vue-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-hotfix-new/@syncfusion/ej2-vue-progressbar/-/ej2-vue-progressbar-20.2.38.tgz",
23
- "_shasum": "58d959de1de2c389c8765aa763d0fa1fb47caf21",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-vue-progressbar/-/ej2-vue-progressbar-20.3.1.tgz",
23
+ "_shasum": "fa480c87f07870611e8574c10aac25cfe6507e28",
24
24
  "_spec": "@syncfusion/ej2-vue-progressbar@*",
25
25
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~20.2.43",
35
- "@syncfusion/ej2-progressbar": "20.2.43",
36
- "@syncfusion/ej2-vue-base": "~20.2.43"
34
+ "@syncfusion/ej2-base": "~20.3.47",
35
+ "@syncfusion/ej2-progressbar": "20.3.47",
36
+ "@syncfusion/ej2-vue-base": "~20.3.47"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 ProgressBar Component for Vue",
@@ -64,6 +64,9 @@
64
64
  "type": "git",
65
65
  "url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
66
66
  },
67
- "version": "20.2.43",
67
+ "scripts": {
68
+ "postinstall": "node ../ej2-vue-base/postinstall.js"
69
+ },
70
+ "version": "20.3.47",
68
71
  "sideEffects": false
69
72
  }
@@ -1,4 +1,3 @@
1
- export declare const isExecute: any;
2
1
  declare let vueImport: any;
3
2
  export declare class ProgressBarAnnotationsDirective extends vueImport {
4
3
  constructor();
@@ -17,12 +17,11 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
17
17
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
18
  return c > 3 && r && Object.defineProperty(target, key, r), r;
19
19
  };
20
- import { EJComponentDecorator, allVue, gh } from '@syncfusion/ej2-vue-base';
20
+ import { EJComponentDecorator, allVue, gh, isExecute } from '@syncfusion/ej2-vue-base';
21
21
  import * as Vue3 from 'vue-class-component';
22
22
  import { isNullOrUndefined } from '@syncfusion/ej2-base';
23
23
  import Vue from 'vue';
24
24
  import { Options } from 'vue-class-component';
25
- export var isExecute = gh ? false : true;
26
25
  var vueImport;
27
26
  if (!isExecute || parseInt(allVue.version) < 3) {
28
27
  vueImport = Vue3.Vue;
@@ -36,18 +35,18 @@ var ProgressBarAnnotationsDirective = /** @class */ (function (_super) {
36
35
  return _super.call(this, arguments) || this;
37
36
  }
38
37
  ProgressBarAnnotationsDirective.prototype.render = function (createElement) {
39
- if (gh) {
40
- var h = gh || createElement;
38
+ if (!isExecute) {
39
+ var h = !isExecute ? gh : createElement;
41
40
  var slots = null;
42
41
  if (!isNullOrUndefined(this.$slots.default)) {
43
- slots = gh ? this.$slots.default() : this.$slots.default;
42
+ slots = !isExecute ? this.$slots.default() : this.$slots.default;
44
43
  }
45
44
  return h('div', { class: 'e-directive' }, slots);
46
45
  }
47
46
  return;
48
47
  };
49
48
  ProgressBarAnnotationsDirective.prototype.updated = function () {
50
- if (gh && this.custom) {
49
+ if (!isExecute && this.custom) {
51
50
  this.custom();
52
51
  }
53
52
  };
@@ -5,7 +5,6 @@ export declare const testProp: any;
5
5
  export declare const props: any;
6
6
  export declare const watch: any;
7
7
  export declare const emitProbs: any;
8
- export declare const isExecute: any;
9
8
  /**
10
9
  * Represents Vuejs ProgressBar Component
11
10
  * ```vue
@@ -17,7 +17,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
17
17
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
18
  return c > 3 && r && Object.defineProperty(target, key, r), r;
19
19
  };
20
- import { ComponentBase, EJComponentDecorator, getProps, gh } from '@syncfusion/ej2-vue-base';
20
+ import { ComponentBase, EJComponentDecorator, getProps, gh, isExecute } from '@syncfusion/ej2-vue-base';
21
21
  import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
22
22
  import { ProgressBar } from '@syncfusion/ej2-progressbar';
23
23
  import { ProgressBarAnnotationsDirective, ProgressBarAnnotationDirective, ProgressBarAnnotationsPlugin, ProgressBarAnnotationPlugin } from './annotations.directive';
@@ -33,7 +33,6 @@ for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
33
33
  var props_1 = modelProps_1[_i];
34
34
  emitProbs.push('update:' + props_1);
35
35
  }
36
- export var isExecute = gh ? false : true;
37
36
  /**
38
37
  * Represents Vuejs ProgressBar Component
39
38
  * ```vue
@@ -108,10 +107,10 @@ var ProgressBarComponent = /** @class */ (function (_super) {
108
107
  }
109
108
  };
110
109
  ProgressBarComponent.prototype.render = function (createElement) {
111
- var h = gh || createElement;
110
+ var h = !isExecute ? gh : createElement;
112
111
  var slots = null;
113
112
  if (!isNullOrUndefined(this.$slots.default)) {
114
- slots = gh ? this.$slots.default() : this.$slots.default;
113
+ slots = !isExecute ? this.$slots.default() : this.$slots.default;
115
114
  }
116
115
  return h('div', slots);
117
116
  };