@but212/atom-effect-jquery 0.19.0 → 0.19.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/README.md +1 -1
- 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 +1 -1
- package/dist/index.mjs +769 -725
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -74,7 +74,7 @@ declare type CssBindings = Record<string, CssValue>;
|
|
|
74
74
|
* CSS value: either a direct reactive value or a tuple of [source, unit].
|
|
75
75
|
* Named type provides clear bone structure for CSS binding configurations.
|
|
76
76
|
*/
|
|
77
|
-
declare type CssValue = ReactiveValue<string | number> | [source: ReactiveValue<number>, unit: string];
|
|
77
|
+
declare type CssValue = ReactiveValue<string | number> | [source: ReactiveValue<string | number>, unit: string];
|
|
78
78
|
|
|
79
79
|
export default default_2;
|
|
80
80
|
|