vvplot 0.1.0 → 0.1.1
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/dist/Selection.js +8 -18
- package/package.json +3 -1
package/dist/Selection.js
CHANGED
|
@@ -182,18 +182,8 @@ function useElementSize(target, initialSize = { width: 0, height: 0 }, options =
|
|
|
182
182
|
stop
|
|
183
183
|
};
|
|
184
184
|
}
|
|
185
|
-
/**
|
|
186
|
-
* @vue/shared v3.5.20
|
|
187
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
188
|
-
* @license MIT
|
|
189
|
-
**/
|
|
190
185
|
const NO = () => false;
|
|
191
186
|
const extend = Object.assign;
|
|
192
|
-
/**
|
|
193
|
-
* @vue/compiler-core v3.5.20
|
|
194
|
-
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
195
|
-
* @license MIT
|
|
196
|
-
**/
|
|
197
187
|
const TELEPORT = Symbol(``);
|
|
198
188
|
const SUSPENSE = Symbol(``);
|
|
199
189
|
const KEEP_ALIVE = Symbol(``);
|
|
@@ -1055,6 +1045,14 @@ function isVPre(p) {
|
|
|
1055
1045
|
return p.type === 7 && p.name === "pre";
|
|
1056
1046
|
}
|
|
1057
1047
|
const forAliasRE = /([\s\S]*?)\s+(?:in|of)\s+(\S[\s\S]*)/;
|
|
1048
|
+
function isAllWhitespace(str) {
|
|
1049
|
+
for (let i = 0; i < str.length; i++) {
|
|
1050
|
+
if (!isWhitespace(str.charCodeAt(i))) {
|
|
1051
|
+
return false;
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
return true;
|
|
1055
|
+
}
|
|
1058
1056
|
const defaultParserOptions = {
|
|
1059
1057
|
parseMode: "base",
|
|
1060
1058
|
ns: 0,
|
|
@@ -1609,14 +1607,6 @@ function condenseWhitespace(nodes) {
|
|
|
1609
1607
|
}
|
|
1610
1608
|
return removedWhitespace ? nodes.filter(Boolean) : nodes;
|
|
1611
1609
|
}
|
|
1612
|
-
function isAllWhitespace(str) {
|
|
1613
|
-
for (let i = 0; i < str.length; i++) {
|
|
1614
|
-
if (!isWhitespace(str.charCodeAt(i))) {
|
|
1615
|
-
return false;
|
|
1616
|
-
}
|
|
1617
|
-
}
|
|
1618
|
-
return true;
|
|
1619
|
-
}
|
|
1620
1610
|
function hasNewlineChar(str) {
|
|
1621
1611
|
for (let i = 0; i < str.length; i++) {
|
|
1622
1612
|
const c = str.charCodeAt(i);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vvplot",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
"imports": {
|
|
16
16
|
"#base/*": "./src/*"
|
|
17
17
|
},
|
|
18
|
+
"homepage": "https://fan-ix.github.io/vvplot/",
|
|
19
|
+
"repository": "https://github.com/Fan-iX/vvplot/",
|
|
18
20
|
"exports": {
|
|
19
21
|
".": "./dist/index.js",
|
|
20
22
|
"./components": "./dist/components.js",
|