sprintify-ui 0.0.88 → 0.0.89

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.
@@ -267,8 +267,8 @@ module.exports = plugin(
267
267
  theme: {
268
268
  extend: {
269
269
  zIndex: {
270
- menu: '30',
271
- modal: '40',
270
+ menu: '40',
271
+ modal: '30',
272
272
  notifications: '50',
273
273
  dialogs: '50',
274
274
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.88",
3
+ "version": "0.0.89",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -284,7 +284,11 @@ watch(
284
284
  }
285
285
  if (normalizedModelValue.value) {
286
286
  setKeywords(normalizedModelValue.value?.label);
287
+ selectionIndex.value = filteredNormalizedOptions.value.findIndex(
288
+ (option) => option.value === normalizedModelValue.value?.value
289
+ );
287
290
  } else {
291
+ selectionIndex.value = 0;
288
292
  setKeywords('');
289
293
  }
290
294
  },