zrender-nightly 5.6.0-dev.20240627 → 5.6.1-dev.20240628
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +4 -0
- package/dist/zrender.js +5 -4
- package/dist/zrender.js.map +1 -1
- package/dist/zrender.min.js +1 -1
- package/lib/core/env.js +3 -2
- package/lib/core/platform.js +1 -1
- package/lib/zrender.d.ts +1 -1
- package/lib/zrender.js +1 -1
- package/package.json +1 -1
- package/src/core/env.ts +3 -2
- package/src/core/platform.ts +2 -2
- package/src/zrender.ts +1 -1
package/lib/core/env.js
CHANGED
@@ -32,8 +32,9 @@ if (typeof wx === 'object' && typeof wx.getSystemInfoSync === 'function') {
|
|
32
32
|
else if (typeof document === 'undefined' && typeof self !== 'undefined') {
|
33
33
|
env.worker = true;
|
34
34
|
}
|
35
|
-
else if (typeof
|
36
|
-
|| navigator
|
35
|
+
else if ((typeof process !== 'undefined' && typeof process.version === 'string')
|
36
|
+
|| (typeof navigator === 'undefined' || typeof navigator.userAgent === 'undefined')
|
37
|
+
|| (env.hasGlobalWindow && 'Deno' in window)) {
|
37
38
|
env.node = true;
|
38
39
|
env.svgSupported = true;
|
39
40
|
}
|
package/lib/core/platform.js
CHANGED
@@ -39,7 +39,7 @@ export var platformApi = {
|
|
39
39
|
else {
|
40
40
|
text = text || '';
|
41
41
|
font = font || DEFAULT_FONT;
|
42
|
-
var res = /(
|
42
|
+
var res = /((?:\d+)?\.?\d*)px/.exec(font);
|
43
43
|
var fontSize = res && +res[1] || DEFAULT_FONT_SIZE;
|
44
44
|
var width = 0;
|
45
45
|
if (font.indexOf('mono') >= 0) {
|
package/lib/zrender.d.ts
CHANGED
@@ -90,7 +90,7 @@ export declare type ElementSSRData = zrUtil.HashMap<unknown>;
|
|
90
90
|
export declare type ElementSSRDataGetter<T> = (el: Element) => zrUtil.HashMap<T>;
|
91
91
|
export declare function getElementSSRData(el: Element): ElementSSRData;
|
92
92
|
export declare function registerSSRDataGetter<T>(getter: ElementSSRDataGetter<T>): void;
|
93
|
-
export declare const version = "5.6.
|
93
|
+
export declare const version = "5.6.1-dev.20240628";
|
94
94
|
export interface ZRenderType extends ZRender {
|
95
95
|
}
|
96
96
|
export {};
|
package/lib/zrender.js
CHANGED
package/package.json
CHANGED
package/src/core/env.ts
CHANGED
@@ -38,8 +38,9 @@ else if (typeof document === 'undefined' && typeof self !== 'undefined') {
|
|
38
38
|
env.worker = true;
|
39
39
|
}
|
40
40
|
else if (
|
41
|
-
typeof
|
42
|
-
|| navigator.userAgent
|
41
|
+
(typeof process !== 'undefined' && typeof process.version === 'string')
|
42
|
+
|| (typeof navigator === 'undefined' || typeof navigator.userAgent === 'undefined')
|
43
|
+
|| (env.hasGlobalWindow && 'Deno' in window)
|
43
44
|
) {
|
44
45
|
// In node
|
45
46
|
env.node = true;
|
package/src/core/platform.ts
CHANGED
@@ -75,7 +75,7 @@ export const platformApi: Platform = {
|
|
75
75
|
text = text || '';
|
76
76
|
font = font || DEFAULT_FONT;
|
77
77
|
// Use font size if there is no other method can be used.
|
78
|
-
const res = /(
|
78
|
+
const res = /((?:\d+)?\.?\d*)px/.exec(font);
|
79
79
|
const fontSize = res && +res[1] || DEFAULT_FONT_SIZE;
|
80
80
|
let width = 0;
|
81
81
|
if (font.indexOf('mono') >= 0) { // is monospace
|
@@ -108,4 +108,4 @@ export function setPlatformAPI(newPlatformApis: Partial<Platform>) {
|
|
108
108
|
(platformApi as any)[key] = (newPlatformApis as any)[key];
|
109
109
|
}
|
110
110
|
}
|
111
|
-
}
|
111
|
+
}
|
package/src/zrender.ts
CHANGED
@@ -556,7 +556,7 @@ export function registerSSRDataGetter<T>(getter: ElementSSRDataGetter<T>) {
|
|
556
556
|
/**
|
557
557
|
* @type {string}
|
558
558
|
*/
|
559
|
-
export const version = '5.6.
|
559
|
+
export const version = '5.6.1-dev.20240628';
|
560
560
|
|
561
561
|
|
562
562
|
export interface ZRenderType extends ZRender {};
|