@vue/shared 3.2.25 → 3.2.29
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/shared.cjs.js +12 -0
- package/dist/shared.cjs.prod.js +12 -0
- package/dist/shared.d.ts +20 -0
- package/dist/shared.esm-bundler.js +12 -0
- package/package.json +4 -4
package/dist/shared.cjs.js
CHANGED
|
@@ -326,8 +326,20 @@ const SVG_TAGS = 'svg,animate,animateMotion,animateTransform,circle,clipPath,col
|
|
|
326
326
|
'polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,' +
|
|
327
327
|
'text,textPath,title,tspan,unknown,use,view';
|
|
328
328
|
const VOID_TAGS = 'area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr';
|
|
329
|
+
/**
|
|
330
|
+
* Compiler only.
|
|
331
|
+
* Do NOT use in runtime code paths unless behind `true` flag.
|
|
332
|
+
*/
|
|
329
333
|
const isHTMLTag = /*#__PURE__*/ makeMap(HTML_TAGS);
|
|
334
|
+
/**
|
|
335
|
+
* Compiler only.
|
|
336
|
+
* Do NOT use in runtime code paths unless behind `true` flag.
|
|
337
|
+
*/
|
|
330
338
|
const isSVGTag = /*#__PURE__*/ makeMap(SVG_TAGS);
|
|
339
|
+
/**
|
|
340
|
+
* Compiler only.
|
|
341
|
+
* Do NOT use in runtime code paths unless behind `true` flag.
|
|
342
|
+
*/
|
|
331
343
|
const isVoidTag = /*#__PURE__*/ makeMap(VOID_TAGS);
|
|
332
344
|
|
|
333
345
|
const escapeRE = /["'&<>]/;
|
package/dist/shared.cjs.prod.js
CHANGED
|
@@ -326,8 +326,20 @@ const SVG_TAGS = 'svg,animate,animateMotion,animateTransform,circle,clipPath,col
|
|
|
326
326
|
'polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,' +
|
|
327
327
|
'text,textPath,title,tspan,unknown,use,view';
|
|
328
328
|
const VOID_TAGS = 'area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr';
|
|
329
|
+
/**
|
|
330
|
+
* Compiler only.
|
|
331
|
+
* Do NOT use in runtime code paths unless behind `false` flag.
|
|
332
|
+
*/
|
|
329
333
|
const isHTMLTag = /*#__PURE__*/ makeMap(HTML_TAGS);
|
|
334
|
+
/**
|
|
335
|
+
* Compiler only.
|
|
336
|
+
* Do NOT use in runtime code paths unless behind `false` flag.
|
|
337
|
+
*/
|
|
330
338
|
const isSVGTag = /*#__PURE__*/ makeMap(SVG_TAGS);
|
|
339
|
+
/**
|
|
340
|
+
* Compiler only.
|
|
341
|
+
* Do NOT use in runtime code paths unless behind `false` flag.
|
|
342
|
+
*/
|
|
331
343
|
const isVoidTag = /*#__PURE__*/ makeMap(VOID_TAGS);
|
|
332
344
|
|
|
333
345
|
const escapeRE = /["'&<>]/;
|
package/dist/shared.d.ts
CHANGED
|
@@ -40,6 +40,8 @@ export declare const hasOwn: (val: object, key: string | symbol) => key is never
|
|
|
40
40
|
*/
|
|
41
41
|
export declare const hyphenate: (str: string) => string;
|
|
42
42
|
|
|
43
|
+
export declare type IfAny<T, Y, N> = 0 extends (1 & T) ? Y : N;
|
|
44
|
+
|
|
43
45
|
/**
|
|
44
46
|
* Boolean attributes should be included if the value is truthy or ''.
|
|
45
47
|
* e.g. `<select multiple>` compiles to `{ multiple: '' }`
|
|
@@ -61,6 +63,10 @@ export declare const isFunction: (val: unknown) => val is Function;
|
|
|
61
63
|
|
|
62
64
|
export declare const isGloballyWhitelisted: (key: string) => boolean;
|
|
63
65
|
|
|
66
|
+
/**
|
|
67
|
+
* Compiler only.
|
|
68
|
+
* Do NOT use in runtime code paths unless behind `__DEV__` flag.
|
|
69
|
+
*/
|
|
64
70
|
export declare const isHTMLTag: (key: string) => boolean;
|
|
65
71
|
|
|
66
72
|
export declare const isIntegerKey: (key: unknown) => boolean;
|
|
@@ -105,16 +111,28 @@ export declare function isSSRSafeAttrName(name: string): boolean;
|
|
|
105
111
|
|
|
106
112
|
export declare const isString: (val: unknown) => val is string;
|
|
107
113
|
|
|
114
|
+
/**
|
|
115
|
+
* Compiler only.
|
|
116
|
+
* Do NOT use in runtime code paths unless behind `__DEV__` flag.
|
|
117
|
+
*/
|
|
108
118
|
export declare const isSVGTag: (key: string) => boolean;
|
|
109
119
|
|
|
110
120
|
export declare const isSymbol: (val: unknown) => val is symbol;
|
|
111
121
|
|
|
122
|
+
/**
|
|
123
|
+
* Compiler only.
|
|
124
|
+
* Do NOT use in runtime code paths unless behind `__DEV__` flag.
|
|
125
|
+
*/
|
|
112
126
|
export declare const isVoidTag: (key: string) => boolean;
|
|
113
127
|
|
|
114
128
|
export declare function looseEqual(a: any, b: any): boolean;
|
|
115
129
|
|
|
116
130
|
export declare function looseIndexOf(arr: any[], val: any): number;
|
|
117
131
|
|
|
132
|
+
export declare type LooseRequired<T> = {
|
|
133
|
+
[P in string & keyof T]: T[P];
|
|
134
|
+
};
|
|
135
|
+
|
|
118
136
|
/**
|
|
119
137
|
* Make a map and return a function for checking if a key
|
|
120
138
|
* is in that map.
|
|
@@ -329,4 +347,6 @@ export declare const toRawType: (value: unknown) => string;
|
|
|
329
347
|
|
|
330
348
|
export declare const toTypeString: (value: unknown) => string;
|
|
331
349
|
|
|
350
|
+
export declare type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never;
|
|
351
|
+
|
|
332
352
|
export { }
|
|
@@ -322,8 +322,20 @@ const SVG_TAGS = 'svg,animate,animateMotion,animateTransform,circle,clipPath,col
|
|
|
322
322
|
'polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,' +
|
|
323
323
|
'text,textPath,title,tspan,unknown,use,view';
|
|
324
324
|
const VOID_TAGS = 'area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr';
|
|
325
|
+
/**
|
|
326
|
+
* Compiler only.
|
|
327
|
+
* Do NOT use in runtime code paths unless behind `(process.env.NODE_ENV !== 'production')` flag.
|
|
328
|
+
*/
|
|
325
329
|
const isHTMLTag = /*#__PURE__*/ makeMap(HTML_TAGS);
|
|
330
|
+
/**
|
|
331
|
+
* Compiler only.
|
|
332
|
+
* Do NOT use in runtime code paths unless behind `(process.env.NODE_ENV !== 'production')` flag.
|
|
333
|
+
*/
|
|
326
334
|
const isSVGTag = /*#__PURE__*/ makeMap(SVG_TAGS);
|
|
335
|
+
/**
|
|
336
|
+
* Compiler only.
|
|
337
|
+
* Do NOT use in runtime code paths unless behind `(process.env.NODE_ENV !== 'production')` flag.
|
|
338
|
+
*/
|
|
327
339
|
const isVoidTag = /*#__PURE__*/ makeMap(VOID_TAGS);
|
|
328
340
|
|
|
329
341
|
const escapeRE = /["'&<>]/;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/shared",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.29",
|
|
4
4
|
"description": "internal utils shared across @vue packages",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/shared.esm-bundler.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "git+https://github.com/vuejs/
|
|
20
|
+
"url": "git+https://github.com/vuejs/core.git",
|
|
21
21
|
"directory": "packages/shared"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"author": "Evan You",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"bugs": {
|
|
29
|
-
"url": "https://github.com/vuejs/
|
|
29
|
+
"url": "https://github.com/vuejs/core/issues"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://github.com/vuejs/
|
|
31
|
+
"homepage": "https://github.com/vuejs/core/tree/main/packages/shared#readme"
|
|
32
32
|
}
|