@bagelink/vue 0.0.542 → 0.0.544

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/index.cjs CHANGED
@@ -54764,7 +54764,7 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
54764
54764
  open.value = false;
54765
54765
  }
54766
54766
  function handleInput(e) {
54767
- const keyVal = e.key;
54767
+ const keyVal = e.key ?? "";
54768
54768
  if (keyVal.length > 1 || e.metaKey) return;
54769
54769
  const hasBadChars = /[^+\d]/.test(keyVal);
54770
54770
  if (!hasBadChars) return;
@@ -54882,7 +54882,7 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
54882
54882
  };
54883
54883
  }
54884
54884
  });
54885
- const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-83e47da1"]]);
54885
+ const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-b13ff2af"]]);
54886
54886
  /*!
54887
54887
  * Signature Pad v5.0.2 | https://github.com/szimek/signature_pad
54888
54888
  * (c) 2024 Szymon Nowak | Released under the MIT license
package/dist/index.mjs CHANGED
@@ -54762,7 +54762,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
54762
54762
  open.value = false;
54763
54763
  }
54764
54764
  function handleInput(e) {
54765
- const keyVal = e.key;
54765
+ const keyVal = e.key ?? "";
54766
54766
  if (keyVal.length > 1 || e.metaKey) return;
54767
54767
  const hasBadChars = /[^+\d]/.test(keyVal);
54768
54768
  if (!hasBadChars) return;
@@ -54880,7 +54880,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
54880
54880
  };
54881
54881
  }
54882
54882
  });
54883
- const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-83e47da1"]]);
54883
+ const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-b13ff2af"]]);
54884
54884
  /*!
54885
54885
  * Signature Pad v5.0.2 | https://github.com/szimek/signature_pad
54886
54886
  * (c) 2024 Szymon Nowak | Released under the MIT license
package/dist/style.css CHANGED
@@ -2566,7 +2566,7 @@ p {
2566
2566
  border-radius: var(--input-border-radius);
2567
2567
  }
2568
2568
 
2569
- .tel-input[data-v-83e47da1] {
2569
+ .tel-input[data-v-b13ff2af] {
2570
2570
  direction: ltr;
2571
2571
  text-align: left;
2572
2572
  background: var(--input-bg);
@@ -2577,21 +2577,21 @@ p {
2577
2577
  min-width: calc(var(--input-height) * 3);
2578
2578
  width: 100%;
2579
2579
  }
2580
- .tel-input[data-v-83e47da1]:focus-within {
2580
+ .tel-input[data-v-b13ff2af]:focus-within {
2581
2581
  outline: none;
2582
2582
  box-shadow: inset 0 0 10px #00000012;
2583
2583
  }
2584
- .tel-input input[data-v-83e47da1] {
2584
+ .tel-input input[data-v-b13ff2af] {
2585
2585
  background: transparent;
2586
2586
  }
2587
- .tel-input input[data-v-83e47da1]:focus-visible {
2587
+ .tel-input input[data-v-b13ff2af]:focus-visible {
2588
2588
  box-shadow: none;
2589
2589
  }
2590
- .input_country-code[data-v-83e47da1] {
2590
+ .input_country-code[data-v-b13ff2af] {
2591
2591
  font-size: var(--input-font-size);
2592
2592
  color: var(--input-color);
2593
2593
  }
2594
- .tel-country[data-v-83e47da1] {
2594
+ .tel-country[data-v-b13ff2af] {
2595
2595
  font-size: var(--input-font-size);
2596
2596
  max-width: 200px;
2597
2597
  white-space: nowrap;
@@ -2600,7 +2600,7 @@ p {
2600
2600
  margin-top: 0;
2601
2601
  margin-bottom: 0;
2602
2602
  }
2603
- .tel-countryp-dropdown[data-v-83e47da1] {
2603
+ .tel-countryp-dropdown[data-v-b13ff2af] {
2604
2604
  direction: ltr;
2605
2605
  text-align: left;
2606
2606
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.542",
4
+ "version": "0.0.544",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -288,7 +288,7 @@ function reset() {
288
288
  }
289
289
 
290
290
  function handleInput(e: KeyboardEvent) {
291
- const keyVal = e.key
291
+ const keyVal = (e.key as string | undefined) ?? ''
292
292
  if (keyVal.length > 1 || e.metaKey) return
293
293
 
294
294
  const hasBadChars = /[^+\d]/.test(keyVal)