@firstnoodle-ui/bui 0.0.61 → 0.0.63
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/bui.css +1 -1
- package/dist/filtering/composables/index.d.ts +3 -0
- package/dist/filtering/composables/useFilterComponent.d.ts +7 -0
- package/dist/filtering/composables/useFilters.d.ts +50 -0
- package/dist/filtering/composables/useMountedAndRouterUpdtate.d.ts +2 -0
- package/dist/filtering/config.d.ts +4 -0
- package/dist/filtering/index.d.ts +4 -0
- package/dist/filtering/types.d.ts +25 -0
- package/dist/filtering/utils/index.d.ts +3 -0
- package/dist/filtering/utils/operators.d.ts +4 -0
- package/dist/filtering/utils/queryFilters.d.ts +8 -0
- package/dist/filtering/utils/queryObject.d.ts +14 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +4105 -24046
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/tiptap/useExtensionStorage.d.ts +1 -1
- package/package.json +10 -4
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
|
-
export declare function useExtensionStorage<T>(editor: Ref<any>, extensionName: string, key: string):
|
|
2
|
+
export declare function useExtensionStorage<T>(editor: Ref<any>, extensionName: string, key: string): Ref<T | null, T | null>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firstnoodle-ui/bui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.63",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@floating-ui/core": "^1.7.3",
|
|
39
39
|
"tailwindcss": "^4.1.1",
|
|
40
|
-
"vue": "^3.5.13"
|
|
40
|
+
"vue": "^3.5.13",
|
|
41
|
+
"vue-router": "^4.0.0"
|
|
41
42
|
},
|
|
42
43
|
"publishConfig": {
|
|
43
44
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -67,11 +68,12 @@
|
|
|
67
68
|
"debounce": "^2.2.0",
|
|
68
69
|
"prosemirror-model": "^1.25.4",
|
|
69
70
|
"prosemirror-state": "^1.4.4",
|
|
70
|
-
"
|
|
71
|
+
"vitest": "^4.0.17"
|
|
71
72
|
},
|
|
72
73
|
"devDependencies": {
|
|
73
74
|
"@floating-ui/core": "^1.7.3",
|
|
74
75
|
"@tailwindcss/vite": "^4.1.1",
|
|
76
|
+
"@tiptap/core": "^3.13.0",
|
|
75
77
|
"@types/node": "^22.14.0",
|
|
76
78
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
77
79
|
"@vue/tsconfig": "^0.7.0",
|
|
@@ -81,12 +83,16 @@
|
|
|
81
83
|
"vite": "^6.2.4",
|
|
82
84
|
"vite-plugin-dts": "^4.5.4",
|
|
83
85
|
"vue": "^3.5.13",
|
|
86
|
+
"vue-router": "^4.0.0",
|
|
84
87
|
"vue-tsc": "^2.2.8"
|
|
85
88
|
},
|
|
86
89
|
"scripts": {
|
|
87
90
|
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json",
|
|
88
91
|
"typecheck": "vue-tsc -p tsconfig.app.json --noEmit",
|
|
89
92
|
"watch": "vite build --watch",
|
|
90
|
-
"
|
|
93
|
+
"test": "vitest",
|
|
94
|
+
"test:ui": "vitest --ui",
|
|
95
|
+
"test:run": "vitest run",
|
|
96
|
+
"release:publish": "pnpm publish --access public --otp=103183 --no-git-checks"
|
|
91
97
|
}
|
|
92
98
|
}
|