@bagelink/vue 0.0.66 → 0.0.68

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.66",
4
+ "version": "0.0.68",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -64,7 +64,7 @@
64
64
  "prosemirror-state": "^1.4.3",
65
65
  "prosemirror-view": "^1.32.4",
66
66
  "@vue-macros/reactivity-transform": "^0.4.0",
67
- "@bagelink/sdk": "0.0.66"
67
+ "@bagelink/sdk": "0.0.68"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "@bagelink/sdk": "*"
@@ -7,9 +7,10 @@
7
7
  <label v-if="label">
8
8
  <LangText :input="label" />
9
9
  </label>
10
+ <!-- :title="formatDuration(modelValue)" -->
10
11
  <input
11
12
  :value="modelValue"
12
- :title="formatDuration(modelValue)"
13
+ :title="modelValue"
13
14
  type="number"
14
15
  @input="handleInput"
15
16
  :placeholder="bagelApp.translate(placeholder, true)"
@@ -22,7 +23,7 @@
22
23
  // @ts-ignore TODO: remove this Nati
23
24
  import { bagelApp } from '../../../index';
24
25
  // @ts-ignore TODO: remove this Nati
25
- import { formatDuration } from '../../../composables';
26
+ // import { formatDuration } from '../../../composables';
26
27
 
27
28
  const emits = defineEmits(['update:modelValue']);
28
29
  // @ts-ignore TODO: remove this Nati