@but212/atom-effect-jquery 0.13.1 → 0.15.0
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/README.md +34 -0
- package/dist/atom-effect-jquery.min.js +1 -1
- package/dist/atom-effect-jquery.min.js.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.mjs +969 -1035
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -84,6 +84,10 @@ export { effect }
|
|
|
84
84
|
|
|
85
85
|
export declare function enableAutoCleanup(root?: Element): void;
|
|
86
86
|
|
|
87
|
+
/**
|
|
88
|
+
* @deprecated use `enablejQueryOverrides()` instead.
|
|
89
|
+
* This alias will be removed in the future.
|
|
90
|
+
*/
|
|
87
91
|
export declare const enablejQueryBatching: typeof enablejQueryOverrides;
|
|
88
92
|
|
|
89
93
|
/**
|
|
@@ -130,6 +134,8 @@ declare interface ValOptions<T> {
|
|
|
130
134
|
event?: string;
|
|
131
135
|
parse?: (v: string) => T;
|
|
132
136
|
format?: (v: T) => string;
|
|
137
|
+
/** Custom equality check for comparing parsed values. Defaults to Object.is. */
|
|
138
|
+
equal?: (a: T, b: T) => boolean;
|
|
133
139
|
}
|
|
134
140
|
|
|
135
141
|
export { WritableAtom }
|