@syncfusion/ej2-vue-progressbar 24.2.9 → 25.1.35
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@24.2.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-progressbar@24.2.3",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-JuvAva1OmY7WCzP2Lt3nGQKQqJ9a5TArmcalnrwybBzQlzi9/d/3UZqBfq7Q4FM8zDt9h+TTxi+/aWIZQ28qbg==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-progressbar",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-vue-progressbar/-/ej2-vue-progressbar-24.2.3.tgz",
|
|
23
|
+
"_shasum": "ce03e5f969f023e7c59e56f7df63b3aea9dbf2bf",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-progressbar@*",
|
|
25
|
-
"_where": "/jenkins/workspace/elease-
|
|
25
|
+
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
27
27
|
"name": "Syncfusion Inc."
|
|
28
28
|
},
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~
|
|
35
|
-
"@syncfusion/ej2-progressbar": "
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~
|
|
34
|
+
"@syncfusion/ej2-base": "~25.1.35",
|
|
35
|
+
"@syncfusion/ej2-progressbar": "25.1.35",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~25.1.35"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 ProgressBar Component for Vue",
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
"ci-publish": "gulp ci-publish",
|
|
59
59
|
"compile": "gulp ci-compile && gulp vue-global-script"
|
|
60
60
|
},
|
|
61
|
-
"version": "
|
|
61
|
+
"version": "25.1.35",
|
|
62
62
|
"sideEffects": false
|
|
63
63
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
|
|
2
|
-
import { ProgressBarModel } from '@syncfusion/ej2-progressbar';
|
|
1
|
+
import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
|
|
2
|
+
import { ProgressBar, ProgressBarModel } from '@syncfusion/ej2-progressbar';
|
|
3
3
|
export declare const properties: string[];
|
|
4
4
|
export declare const modelProps: string[];
|
|
5
5
|
export declare const testProp: any;
|
|
@@ -11,7 +11,31 @@ export declare const props: any, watch: any, emitProbs: any;
|
|
|
11
11
|
* ```
|
|
12
12
|
*/
|
|
13
13
|
export declare let ProgressBarComponent: DefineVueComponent<ProgressBarModel>;
|
|
14
|
-
export declare type ProgressBarComponent =
|
|
14
|
+
export declare type ProgressBarComponent = typeof ComponentBase & {
|
|
15
|
+
ej2Instances: ProgressBar;
|
|
16
|
+
isVue3: boolean;
|
|
17
|
+
isLazyUpdate: Boolean;
|
|
18
|
+
plugins: any[];
|
|
19
|
+
propKeys: string[];
|
|
20
|
+
models: string[];
|
|
21
|
+
hasChildDirective: boolean;
|
|
22
|
+
tagMapper: {
|
|
23
|
+
[key: string]: Object;
|
|
24
|
+
};
|
|
25
|
+
tagNameMapper: Object;
|
|
26
|
+
setProperties(prop: any, muteOnChange: boolean): void;
|
|
27
|
+
trigger(eventName: string, eventProp: {
|
|
28
|
+
[key: string]: Object;
|
|
29
|
+
}, successHandler?: Function): void;
|
|
30
|
+
calculateProgressRange(value: number, minimum?: number, maximum?: number): number;
|
|
31
|
+
calculateSegmentSize(width: number, thickness: number): string;
|
|
32
|
+
createClipPath(clipPath?: Object, range?: number, d?: string, refresh?: boolean, thickness?: number, isLabel?: boolean, isMaximum?: boolean): Object;
|
|
33
|
+
getPathLine(x: number, width: number, thickness: number): string;
|
|
34
|
+
hide(): void;
|
|
35
|
+
removeSvg(): void;
|
|
36
|
+
requiredModules(): Object[];
|
|
37
|
+
show(): void;
|
|
38
|
+
};
|
|
15
39
|
export declare const ProgressBarPlugin: {
|
|
16
40
|
name: string;
|
|
17
41
|
install(Vue: any): void;
|