@stonecrop/desktop 0.11.7 → 0.11.9

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.
@@ -1 +1 @@
1
- {"version":"5.9.3"}
1
+ {"version":"6.0.3"}
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.57.0"
8
+ "packageVersion": "7.58.7"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stonecrop/desktop",
3
- "version": "0.11.7",
3
+ "version": "0.11.9",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "author": {
@@ -32,36 +32,36 @@
32
32
  "**/*.css"
33
33
  ],
34
34
  "dependencies": {
35
- "@stonecrop/aform": "0.11.7",
36
- "@stonecrop/stonecrop": "0.11.7",
37
- "@stonecrop/themes": "0.11.7",
38
- "@stonecrop/atable": "0.11.7"
35
+ "@stonecrop/aform": "0.11.9",
36
+ "@stonecrop/stonecrop": "0.11.9",
37
+ "@stonecrop/atable": "0.11.9",
38
+ "@stonecrop/themes": "0.11.9"
39
39
  },
40
40
  "peerDependencies": {
41
- "vue": "^3.5.28"
41
+ "vue": "^3.5.33"
42
42
  },
43
43
  "devDependencies": {
44
- "@eslint/js": "^9.39.2",
45
- "@microsoft/api-documenter": "^7.28.2",
44
+ "@eslint/js": "^10.0.1",
45
+ "@microsoft/api-documenter": "^7.30.5",
46
46
  "@miragejs/graphql": "^0.1.13",
47
- "@rushstack/heft": "^1.2.0",
48
- "@vitejs/plugin-vue": "^6.0.3",
49
- "@vitest/coverage-istanbul": "^4.0.18",
50
- "@vue/test-utils": "^2.4.6",
51
- "eslint": "^9.39.2",
47
+ "@rushstack/heft": "^1.2.17",
48
+ "@vitejs/plugin-vue": "^6.0.6",
49
+ "@vitest/coverage-istanbul": "^4.1.5",
50
+ "@vue/test-utils": "^2.4.10",
51
+ "eslint": "^10.3.0",
52
52
  "eslint-config-prettier": "^10.1.8",
53
- "eslint-plugin-vue": "^10.6.2",
54
- "globals": "^17.0.0",
53
+ "eslint-plugin-vue": "^10.9.0",
54
+ "globals": "^17.6.0",
55
55
  "immutable": "^5.1.4",
56
- "jsdom": "^28.1.0",
56
+ "jsdom": "^29.1.1",
57
57
  "miragejs": "^0.1.48",
58
58
  "pinia": "^3.0.4",
59
- "typescript": "^5.9.3",
60
- "typescript-eslint": "^8.53.0",
61
- "vue": "^3.5.28",
62
- "vite": "^7.3.1",
63
- "vitest": "^4.0.18",
64
- "vue-router": "^5.0.2",
59
+ "typescript": "^6.0.3",
60
+ "typescript-eslint": "^8.59.1",
61
+ "vue": "^3.5.33",
62
+ "vite": "^7.3.2",
63
+ "vitest": "^4.1.5",
64
+ "vue-router": "^5.0.6",
65
65
  "stonecrop-rig": "0.7.0"
66
66
  },
67
67
  "description": "Desktop-specific components for Stonecrop UI",
@@ -23,7 +23,7 @@
23
23
  </div>
24
24
  <div v-show="dropdownStates[index]" class="dropdown-container">
25
25
  <div class="dropdown">
26
- <div v-for="(item, itemIndex) in el.actions" :key="item.label">
26
+ <div v-for="item in el.actions" :key="item.label">
27
27
  <button v-if="item.action != null" class="dropdown-item" @click="handleClick(item.action, item.label)">
28
28
  {{ item.label }}
29
29
  </button>
@@ -52,9 +52,6 @@ const emit = defineEmits<{
52
52
  const dropdownStates = ref<Record<number, boolean>>({})
53
53
 
54
54
  const isOpen = ref(true)
55
- const timeoutId = ref<number>(-1)
56
- const hover = ref(false)
57
- const closeClicked = ref(false)
58
55
  const dropdownOpen = ref([])
59
56
 
60
57
  onMounted(() => {
@@ -289,7 +289,7 @@ const getAvailableTransitions = () => {
289
289
  }
290
290
  }
291
291
 
292
- const actionElements = computed<ActionElements[]>(() => {
292
+ const actionElements = computed(() => {
293
293
  const elements: ActionElements[] = []
294
294
 
295
295
  switch (currentView.value) {
@@ -620,7 +620,7 @@ const getColumns = () => {
620
620
  }
621
621
 
622
622
  // Schema for different views - defined here after all helper functions are available
623
- const currentViewSchema = computed<SchemaTypes[]>(() => {
623
+ const currentViewSchema = computed(() => {
624
624
  switch (currentView.value) {
625
625
  case 'doctypes':
626
626
  return getDoctypesSchema()
File without changes
File without changes
File without changes
File without changes