@stonecrop/desktop 0.11.7 → 0.11.8
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.
- package/dist/desktop.css +1 -1
- package/dist/desktop.js +138 -138
- package/dist/desktop.js.map +1 -1
- package/dist/desktop.tsbuildinfo +1 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +22 -22
- package/src/components/ActionSet.vue +1 -4
- package/src/components/Desktop.vue +2 -2
- /package/dist/{index.js → src/index.js} +0 -0
- /package/dist/{plugins → src/plugins}/index.js +0 -0
- /package/dist/{router.js → src/router.js} +0 -0
- /package/dist/{types → src/types}/index.js +0 -0
package/dist/desktop.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"
|
|
1
|
+
{"version":"6.0.3"}
|
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/desktop",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.8",
|
|
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/
|
|
36
|
-
"@stonecrop/stonecrop": "0.11.
|
|
37
|
-
"@stonecrop/
|
|
38
|
-
"@stonecrop/
|
|
35
|
+
"@stonecrop/atable": "0.11.8",
|
|
36
|
+
"@stonecrop/stonecrop": "0.11.8",
|
|
37
|
+
"@stonecrop/aform": "0.11.8",
|
|
38
|
+
"@stonecrop/themes": "0.11.8"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"vue": "^3.5.
|
|
41
|
+
"vue": "^3.5.33"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@eslint/js": "^
|
|
45
|
-
"@microsoft/api-documenter": "^7.
|
|
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.
|
|
48
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
49
|
-
"@vitest/coverage-istanbul": "^4.
|
|
50
|
-
"@vue/test-utils": "^2.4.
|
|
51
|
-
"eslint": "^
|
|
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.
|
|
54
|
-
"globals": "^17.
|
|
53
|
+
"eslint-plugin-vue": "^10.9.0",
|
|
54
|
+
"globals": "^17.6.0",
|
|
55
55
|
"immutable": "^5.1.4",
|
|
56
|
-
"jsdom": "^
|
|
56
|
+
"jsdom": "^29.1.1",
|
|
57
57
|
"miragejs": "^0.1.48",
|
|
58
58
|
"pinia": "^3.0.4",
|
|
59
|
-
"typescript": "^
|
|
60
|
-
"typescript-eslint": "^8.
|
|
61
|
-
"vue": "^3.5.
|
|
62
|
-
"vite": "^7.3.
|
|
63
|
-
"vitest": "^4.
|
|
64
|
-
"vue-router": "^5.0.
|
|
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="
|
|
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
|
|
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
|
|
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
|