sprintify-ui 0.0.154 → 0.0.155

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.
@@ -14336,7 +14336,7 @@ const Zv = { class: "absolute inset-0 flex h-full w-full items-center justify-ce
14336
14336
  emits: ["update:modelValue", "focus", "blur"],
14337
14337
  setup(t, { emit: o }) {
14338
14338
  const e = t, r = G(() => {
14339
- if (e.step === void 0 || e.step === 0)
14339
+ if (e.step === void 0 || e.step === null || e.step === 0)
14340
14340
  return 0;
14341
14341
  const l = e.step.toString().split(".");
14342
14342
  return l.length === 1 ? 0 : l[1].length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.154",
3
+ "version": "0.0.155",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -85,6 +85,7 @@ const emit = defineEmits(['update:modelValue', 'focus', 'blur']);
85
85
 
86
86
  const precision = computed(() => {
87
87
  if (props.step === undefined) return 0;
88
+ if (props.step === null) return 0;
88
89
  if (props.step === 0) return 0;
89
90
  const parts = props.step.toString().split('.');
90
91
  if (parts.length === 1) return 0;