@oneflowui/ui 0.4.4 → 0.5.0
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/README.en.md +1 -1
- package/README.md +70 -0
- package/dist/components/database/DatabaseView.vue.d.ts +171 -0
- package/dist/components/database/DatabaseView.vue.js +7 -0
- package/dist/components/database/DatabaseView.vue2.js +774 -0
- package/dist/components/database/index.d.ts +2 -0
- package/dist/composables/index.d.ts +2 -0
- package/dist/composables/useDatabaseView.d.ts +138 -0
- package/dist/composables/useDatabaseView.js +388 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +178 -173
- package/dist/style.css +1 -1
- package/dist/tests/database-view.integration.spec.d.ts +1 -0
- package/package.json +17 -17
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oneflowui/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "OneFlow UI Component Library - Vue3 components for task management views",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,6 +24,21 @@
|
|
|
24
24
|
"files": [
|
|
25
25
|
"dist"
|
|
26
26
|
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"dev": "vite --port 5174 --host",
|
|
29
|
+
"build": "vue-tsc && vite build",
|
|
30
|
+
"preview": "vite preview",
|
|
31
|
+
"type-check": "vue-tsc --noEmit",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"test:watch": "vitest",
|
|
34
|
+
"format": "oxfmt --write src",
|
|
35
|
+
"format:check": "oxfmt --check src",
|
|
36
|
+
"lint": "eslint src",
|
|
37
|
+
"lint:fix": "eslint src --fix",
|
|
38
|
+
"lint:style": "stylelint \"src/**/*.{vue,css}\"",
|
|
39
|
+
"lint:style:fix": "stylelint \"src/**/*.{vue,css}\" --fix",
|
|
40
|
+
"lint:all": "pnpm lint && pnpm lint:style"
|
|
41
|
+
},
|
|
27
42
|
"peerDependencies": {
|
|
28
43
|
"mermaid": ">=10.0.0",
|
|
29
44
|
"vue": "^3.3.0"
|
|
@@ -63,20 +78,5 @@
|
|
|
63
78
|
"vitest": "^2.1.8",
|
|
64
79
|
"vue": "^3.4.0",
|
|
65
80
|
"vue-tsc": "^2.0.0"
|
|
66
|
-
},
|
|
67
|
-
"scripts": {
|
|
68
|
-
"dev": "vite --port 5174 --host",
|
|
69
|
-
"build": "vue-tsc && vite build",
|
|
70
|
-
"preview": "vite preview",
|
|
71
|
-
"type-check": "vue-tsc --noEmit",
|
|
72
|
-
"test": "vitest run",
|
|
73
|
-
"test:watch": "vitest",
|
|
74
|
-
"format": "oxfmt --write src",
|
|
75
|
-
"format:check": "oxfmt --check src",
|
|
76
|
-
"lint": "eslint src",
|
|
77
|
-
"lint:fix": "eslint src --fix",
|
|
78
|
-
"lint:style": "stylelint \"src/**/*.{vue,css}\"",
|
|
79
|
-
"lint:style:fix": "stylelint \"src/**/*.{vue,css}\" --fix",
|
|
80
|
-
"lint:all": "pnpm lint && pnpm lint:style"
|
|
81
81
|
}
|
|
82
|
-
}
|
|
82
|
+
}
|