@vue/shared 3.2.40 → 3.2.42
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 +563 -573
- package/dist/shared.cjs.prod.js +562 -572
- package/dist/shared.d.ts +1 -6
- package/dist/shared.esm-bundler.js +565 -574
- package/package.json +1 -1
package/dist/shared.d.ts
CHANGED
|
@@ -92,11 +92,6 @@ export declare const isMap: (val: unknown) => val is Map<any, any>;
|
|
|
92
92
|
|
|
93
93
|
export declare const isModelListener: (key: string) => boolean;
|
|
94
94
|
|
|
95
|
-
/**
|
|
96
|
-
* CSS properties that accept plain numbers
|
|
97
|
-
*/
|
|
98
|
-
export declare const isNoUnitNumericStyleProp: (key: string) => boolean;
|
|
99
|
-
|
|
100
95
|
export declare const isObject: (val: unknown) => val is Record<any, any>;
|
|
101
96
|
|
|
102
97
|
export declare const isOn: (key: string) => boolean;
|
|
@@ -134,7 +129,7 @@ export declare function looseEqual(a: any, b: any): boolean;
|
|
|
134
129
|
export declare function looseIndexOf(arr: any[], val: any): number;
|
|
135
130
|
|
|
136
131
|
export declare type LooseRequired<T> = {
|
|
137
|
-
[P in
|
|
132
|
+
[P in keyof (T & Required<T>)]: T[P];
|
|
138
133
|
};
|
|
139
134
|
|
|
140
135
|
/**
|