sprintify-ui 0.0.153 → 0.0.154

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.
@@ -13061,7 +13061,7 @@ const sl = /* @__PURE__ */ new WeakMap(), ul = (t) => {
13061
13061
  hasError: G(() => e.hasError),
13062
13062
  emit: o
13063
13063
  }), l = G(() => {
13064
- if (e.step === void 0 || e.step === 0)
13064
+ if (e.step === void 0 || e.step === null || e.step === 0)
13065
13065
  return 0;
13066
13066
  const _ = e.step.toString().split(".");
13067
13067
  return _.length === 1 ? 0 : _[1].length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.153",
3
+ "version": "0.0.154",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -137,6 +137,7 @@ const { hasErrorInternal, emitUpdate } = useField({
137
137
 
138
138
  const precision = computed(() => {
139
139
  if (props.step === undefined) return 0;
140
+ if (props.step === null) return 0;
140
141
  if (props.step === 0) return 0;
141
142
  const parts = props.step.toString().split('.');
142
143
  if (parts.length === 1) return 0;