@syncfusion/ej2-vue-progressbar 21.1.35 → 21.1.37

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@18.15.2",
3
+ "_id": "@syncfusion/ej2-vue-progressbar@21.1.35",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-VHnRlF1PbDNiqD+SxDHJGiy7RHem0kOPHdy8tswptMW4mNtzOv2Ljg09v7KxJDjigIIvMvRr/GdaII7akjiGeA==",
5
+ "_integrity": "sha512-HXkFlpXxERLN7j89h/Ayu1cEfUScqhjUR1UM6WqAR8Y3sOSxmi8GJEsFGagDeMzewVzdwUSY2LqZ9uR+kjMzxQ==",
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": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-vue-progressbar/-/ej2-vue-progressbar-18.15.2.tgz",
23
- "_shasum": "6782d0d9c66bb49f6fbb2d835de890f91a8d773b",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-progressbar/-/ej2-vue-progressbar-21.1.35.tgz",
23
+ "_shasum": "d25896b2620f626955d5a4480e4af6fb9216cf02",
24
24
  "_spec": "@syncfusion/ej2-vue-progressbar@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~21.1.35",
35
- "@syncfusion/ej2-progressbar": "21.1.35",
36
- "@syncfusion/ej2-vue-base": "~21.1.35"
34
+ "@syncfusion/ej2-base": "~21.1.37",
35
+ "@syncfusion/ej2-progressbar": "21.1.37",
36
+ "@syncfusion/ej2-vue-base": "~21.1.37"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 ProgressBar Component for Vue",
@@ -55,8 +55,9 @@
55
55
  "url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
56
56
  },
57
57
  "scripts": {
58
- "postinstall": "node ../ej2-vue-base/postinstall.js"
58
+ "ci-publish": "gulp ci-publish",
59
+ "compile": "gulp ci-compile && gulp vue-global-script"
59
60
  },
60
- "version": "21.1.35",
61
+ "version": "21.1.37",
61
62
  "sideEffects": false
62
63
  }
package/src/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from '@syncfusion/ej2-progressbar';
2
2
  export { ProgressBarAnnotationsDirective, ProgressBarAnnotationDirective, ProgressBarAnnotationsPlugin, ProgressBarAnnotationPlugin } from './progressbar/annotations.directive';
3
+ export { RangeColorsDirective, RangeColorDirective, RangeColorsPlugin, RangeColorPlugin } from './progressbar/rangecolors.directive';
3
4
  export { ProgressBarComponent, ProgressBarPlugin } from './progressbar/progressbar.component';
package/src/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from '@syncfusion/ej2-progressbar';
2
2
  export { ProgressBarAnnotationsDirective, ProgressBarAnnotationDirective, ProgressBarAnnotationsPlugin, ProgressBarAnnotationPlugin } from './progressbar/annotations.directive';
3
+ export { RangeColorsDirective, RangeColorDirective, RangeColorsPlugin, RangeColorPlugin } from './progressbar/rangecolors.directive';
3
4
  export { ProgressBarComponent, ProgressBarPlugin } from './progressbar/progressbar.component';
@@ -1,2 +1,3 @@
1
1
  export { ProgressBarAnnotationsDirective, ProgressBarAnnotationDirective, ProgressBarAnnotationsPlugin, ProgressBarAnnotationPlugin } from './annotations.directive';
2
+ export { RangeColorsDirective, RangeColorDirective, RangeColorsPlugin, RangeColorPlugin } from './rangecolors.directive';
2
3
  export { ProgressBarComponent, ProgressBarPlugin } from './progressbar.component';
@@ -1,2 +1,3 @@
1
1
  export { ProgressBarAnnotationsDirective, ProgressBarAnnotationDirective, ProgressBarAnnotationsPlugin, ProgressBarAnnotationPlugin } from './annotations.directive';
2
+ export { RangeColorsDirective, RangeColorDirective, RangeColorsPlugin, RangeColorPlugin } from './rangecolors.directive';
2
3
  export { ProgressBarComponent, ProgressBarPlugin } from './progressbar.component';
@@ -9,6 +9,7 @@ export declare const props: any, watch: any, emitProbs: any;
9
9
  * ```
10
10
  */
11
11
  export declare let ProgressBarComponent: any;
12
+ export declare type ProgressBarComponent = InstanceType<typeof ProgressBarComponent>;
12
13
  export declare const ProgressBarPlugin: {
13
14
  name: string;
14
15
  install(Vue: any): void;
@@ -2,6 +2,7 @@ import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syn
2
2
  import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
3
3
  import { ProgressBar } from '@syncfusion/ej2-progressbar';
4
4
  import { ProgressBarAnnotationsDirective, ProgressBarAnnotationDirective, ProgressBarAnnotationsPlugin, ProgressBarAnnotationPlugin } from './annotations.directive';
5
+ import { RangeColorsDirective, RangeColorDirective, RangeColorsPlugin, RangeColorPlugin } from './rangecolors.directive';
5
6
  export var properties = ['isLazyUpdate', 'plugins', 'animation', 'annotations', 'cornerRadius', 'enablePersistence', 'enablePieProgress', 'enableProgressSegments', 'enableRtl', 'endAngle', 'gapWidth', 'height', 'innerRadius', 'isActive', 'isGradient', 'isIndeterminate', 'isStriped', 'labelOnTrack', 'labelStyle', 'locale', 'margin', 'maximum', 'minimum', 'progressColor', 'progressThickness', 'radius', 'rangeColors', 'role', 'secondaryProgress', 'secondaryProgressColor', 'secondaryProgressThickness', 'segmentColor', 'segmentCount', 'showProgressValue', 'startAngle', 'theme', 'tooltip', 'trackColor', 'trackThickness', 'type', 'value', 'width', 'animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'tooltipRender', 'valueChanged'];
6
7
  export var modelProps = [];
7
8
  export var testProp = getProps({ props: properties });
@@ -31,8 +32,8 @@ export var ProgressBarComponent = vueDefineComponent({
31
32
  models: modelProps,
32
33
  hasChildDirective: true,
33
34
  hasInjectedModules: true,
34
- tagMapper: { "e-progressbar-annotations": "e-progressbar-annotation" },
35
- tagNameMapper: { "e-progressbar-annotations": "e-annotations" },
35
+ tagMapper: { "e-progressbar-annotations": "e-progressbar-annotation", "e-rangecolors": "e-rangecolor" },
36
+ tagNameMapper: { "e-progressbar-annotations": "e-annotations", "e-rangecolors": "e-rangeColors" },
36
37
  isVue3: !isExecute,
37
38
  templateCollection: {},
38
39
  };
@@ -136,5 +137,7 @@ export var ProgressBarPlugin = {
136
137
  Vue.component(ProgressBarPlugin.name, ProgressBarComponent);
137
138
  Vue.component(ProgressBarAnnotationPlugin.name, ProgressBarAnnotationDirective);
138
139
  Vue.component(ProgressBarAnnotationsPlugin.name, ProgressBarAnnotationsDirective);
140
+ Vue.component(RangeColorPlugin.name, RangeColorDirective);
141
+ Vue.component(RangeColorsPlugin.name, RangeColorsDirective);
139
142
  }
140
143
  };
@@ -0,0 +1,10 @@
1
+ export declare let RangeColorsDirective: any;
2
+ export declare const RangeColorsPlugin: {
3
+ name: string;
4
+ install(Vue: any): void;
5
+ };
6
+ export declare let RangeColorDirective: any;
7
+ export declare const RangeColorPlugin: {
8
+ name: string;
9
+ install(Vue: any): void;
10
+ };
@@ -0,0 +1,48 @@
1
+ import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
2
+ import { isNullOrUndefined } from '@syncfusion/ej2-base';
3
+ export var RangeColorsDirective = vueDefineComponent({
4
+ inject: { custom: { default: null } },
5
+ render: function (createElement) {
6
+ if (!isExecute) {
7
+ var h = !isExecute ? gh : createElement;
8
+ var slots = null;
9
+ if (!isNullOrUndefined(this.$slots.default)) {
10
+ slots = !isExecute ? this.$slots.default() : this.$slots.default;
11
+ }
12
+ return h('div', { class: 'e-directive' }, slots);
13
+ }
14
+ return;
15
+ },
16
+ updated: function () {
17
+ if (!isExecute && this.custom) {
18
+ this.custom();
19
+ }
20
+ },
21
+ methods: {
22
+ getTag: function () {
23
+ return 'e-rangecolors';
24
+ }
25
+ }
26
+ });
27
+ export var RangeColorsPlugin = {
28
+ name: 'e-rangecolors',
29
+ install: function (Vue) {
30
+ Vue.component(RangeColorsPlugin.name, RangeColorsDirective);
31
+ }
32
+ };
33
+ export var RangeColorDirective = vueDefineComponent({
34
+ render: function () {
35
+ return;
36
+ },
37
+ methods: {
38
+ getTag: function () {
39
+ return 'e-rangecolor';
40
+ }
41
+ }
42
+ });
43
+ export var RangeColorPlugin = {
44
+ name: 'e-rangecolor',
45
+ install: function (Vue) {
46
+ Vue.component(RangeColorPlugin.name, RangeColorDirective);
47
+ }
48
+ };