@veltra/directives 1.3.2 → 1.3.4

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.
@@ -1,5 +1,4 @@
1
1
  import { ObjectDirective } from "vue";
2
-
3
2
  //#region src/click-outside/index.d.ts
4
3
  declare const vClickOutside: ObjectDirective<HTMLElement>;
5
4
  //#endregion
@@ -1,5 +1,4 @@
1
1
  import { ObjectDirective } from "vue";
2
-
3
2
  //#region src/focus/index.d.ts
4
3
  declare const vFocus: ObjectDirective<HTMLElement>;
5
4
  //#endregion
@@ -1,8 +1,7 @@
1
1
  import { Ripple } from "./ripple.js";
2
2
  import { ObjectDirective } from "vue";
3
-
4
3
  //#region src/ripple/index.d.ts
5
4
  declare const vRipple: ObjectDirective<HTMLElement>;
6
5
  //#endregion
7
- export { vRipple };
6
+ export { Ripple, vRipple };
8
7
  //# sourceMappingURL=index.d.ts.map
@@ -61,6 +61,6 @@ const vRipple = {
61
61
  }
62
62
  };
63
63
  //#endregion
64
- export { vRipple };
64
+ export { Ripple, vRipple };
65
65
 
66
66
  //# sourceMappingURL=index.js.map
@@ -1,5 +1,4 @@
1
1
  import { BEM } from "@veltra/utils";
2
-
3
2
  //#region src/ripple/ripple.d.ts
4
3
  /** 波纹位置接口 */
5
4
  interface RipplePosition {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltra/directives",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -21,8 +21,8 @@
21
21
  }
22
22
  },
23
23
  "peerDependencies": {
24
- "@veltra/styles": "1.3.2",
25
- "@veltra/utils": "1.3.2",
26
- "vue": ">=3.5.39"
24
+ "@veltra/styles": "1.3.4",
25
+ "@veltra/utils": "1.3.4",
26
+ "vue": ">=3.5.40"
27
27
  }
28
28
  }