sprintify-ui 0.6.13 → 0.6.14

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.
@@ -27064,7 +27064,7 @@ const IM = {
27064
27064
  if (y.forEach(function(x) {
27065
27065
  w.push(c(l(x)));
27066
27066
  }), w.length == 0) {
27067
- o(null);
27067
+ b();
27068
27068
  return;
27069
27069
  }
27070
27070
  if (e.mode === "range" || e.mode === "multiple") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.6.13",
3
+ "version": "0.6.14",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -133,6 +133,7 @@
133
133
  ".": {
134
134
  "import": "./dist/sprintify-ui.es.js"
135
135
  },
136
+ "./style.css": "./src/assets/main.css",
136
137
  "./dist/style.css": "./dist/style.css",
137
138
  "./tailwindcss": "./dist/tailwindcss/index.js",
138
139
  "./dist/types/src/types": "./dist/types/src/types/index.ts"
@@ -238,6 +238,7 @@ onMounted(() => {
238
238
  onUnmounted(() => {
239
239
  // Cause weird animation problems when using with BaseDropdown
240
240
  // We assume the calendar will self destroy when the component is unmounted
241
+
241
242
  // picker?.destroy();
242
243
  });
243
244
 
@@ -270,7 +271,7 @@ function init() {
270
271
  });
271
272
 
272
273
  if (listDate.length == 0) {
273
- emitUpdate(null);
274
+ clear();
274
275
  return;
275
276
  }
276
277