@bagelink/vue 0.0.918 → 0.0.927

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 +1 @@
1
- {"version":3,"file":"ripple.d.ts","sourceRoot":"","sources":["../../src/plugins/ripple.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAA;AAEpC,QAAA,MAAM,MAAM,EAAE,SAAS,CAAC,WAAW,CAsClC,CAAA;AAED,eAAe,MAAM,CAAA"}
1
+ {"version":3,"file":"ripple.d.ts","sourceRoot":"","sources":["../../src/plugins/ripple.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAA;AAEpC,QAAA,MAAM,MAAM,EAAE,SAAS,CAAC,WAAW,CAwClC,CAAA;AAED,eAAe,MAAM,CAAA"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.918",
4
+ "version": "0.0.927",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -116,11 +116,11 @@
116
116
  "@tiptap/vue-3": "^2.10.3",
117
117
  "@vuepic/vue-datepicker": "^8.8.1",
118
118
  "@vueuse/core": "^12.0.0",
119
- "axios": "^1.7.9",
119
+ "axios": "^1.7.8",
120
120
  "floating-vue": "^5.2.2",
121
- "libphonenumber-js": "1.11.16",
121
+ "libphonenumber-js": "1.11.15",
122
122
  "signature_pad": "^5.0.4",
123
- "type-fest": "^4.30.0"
123
+ "type-fest": "^4.29.0"
124
124
  },
125
125
  "scripts": {
126
126
  "dev": "tsx watch src/index.ts",
@@ -2,7 +2,9 @@ import type { Directive } from 'vue'
2
2
 
3
3
  const ripple: Directive<HTMLElement> = {
4
4
  mounted(el: HTMLElement) {
5
- el.style.position = 'relative'
5
+ if (getComputedStyle(el).position === 'static') {
6
+ el.style.position = 'relative'
7
+ }
6
8
  el.style.overflow = 'hidden'
7
9
 
8
10
  const clickHandler = (e: MouseEvent) => {