@firstnoodle-ui/bui 0.0.46 → 0.0.50
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/LICENSE +21 -21
- package/dist/bui.css +1 -1
- package/dist/components/button/Button.vue.d.ts +1 -1
- package/dist/components/pop-calendar/PopCalendar.vue.d.ts +456 -0
- package/dist/components/pop-confirm/PopConfirm.vue.d.ts +463 -0
- package/dist/components/pop-select/PopSelect.vue.d.ts +1 -1
- package/dist/components/popper/Popper.vue.d.ts +104 -0
- package/dist/components/popper/middleware.d.ts +2 -2
- package/dist/components/toggle-button/ToggleButton.vue.d.ts +1 -1
- package/dist/components/tooltip/Tooltip.vue.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +4085 -4147
- package/dist/types/floating-ui.d.ts +11 -0
- package/package.json +5 -5
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Re-exported types from @floating-ui/core
|
|
3
|
+
* This allows consumers to import these types from our package
|
|
4
|
+
* while keeping @floating-ui/core as a peer dependency
|
|
5
|
+
*/
|
|
6
|
+
export type { LimitShiftOptions, Placement, } from '@floating-ui/core';
|
|
7
|
+
/**
|
|
8
|
+
* Re-exported types from @floating-ui/dom
|
|
9
|
+
* These are the DOM-specific versions of the core types
|
|
10
|
+
*/
|
|
11
|
+
export type { FlipOptions, OffsetOptions, ShiftOptions, } from '@floating-ui/dom';
|
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.50",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -44,8 +44,7 @@
|
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@floating-ui/
|
|
48
|
-
"@floating-ui/dom": "^1.6.13",
|
|
47
|
+
"@floating-ui/dom": "^1.7.4",
|
|
49
48
|
"@tiptap/extension-bold": "^2.11.7",
|
|
50
49
|
"@tiptap/extension-bullet-list": "^2.11.7",
|
|
51
50
|
"@tiptap/extension-document": "^2.11.7",
|
|
@@ -65,6 +64,7 @@
|
|
|
65
64
|
"vue-router": "4"
|
|
66
65
|
},
|
|
67
66
|
"devDependencies": {
|
|
67
|
+
"@floating-ui/core": "^1.7.3",
|
|
68
68
|
"@tailwindcss/vite": "^4.1.1",
|
|
69
69
|
"@types/node": "^22.14.0",
|
|
70
70
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
@@ -78,9 +78,9 @@
|
|
|
78
78
|
"vue-tsc": "^2.2.8"
|
|
79
79
|
},
|
|
80
80
|
"scripts": {
|
|
81
|
-
"build": "vite build",
|
|
81
|
+
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json",
|
|
82
82
|
"typecheck": "vue-tsc -p tsconfig.app.json --noEmit",
|
|
83
83
|
"watch": "vite build --watch",
|
|
84
|
-
"release:publish": "pnpm publish --access public --otp=
|
|
84
|
+
"release:publish": "pnpm publish --access public --otp=957703 --no-git-checks"
|
|
85
85
|
}
|
|
86
86
|
}
|