lew-ui 2.7.76 → 2.7.81
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/auto-imports.d.ts +86 -0
- package/dist/components/feedback/drawer/src/LewDrawer.vue.d.ts +1 -1
- package/dist/components/feedback/drawer/src/props.d.ts +5 -0
- package/dist/components/feedback/modal/src/LewModal.vue.d.ts +1 -1
- package/dist/components/feedback/modal/src/props.d.ts +5 -0
- package/dist/components/form/input-tag/src/LewInputTag.vue.d.ts +2 -2
- package/dist/components/form/select/src/LewSelect.vue.d.ts +12 -12
- package/dist/env.d.ts +37 -0
- package/dist/global.d.ts +13 -0
- package/dist/hooks/index.d.ts +3 -1
- package/dist/hooks/usePopupManager.d.ts +103 -0
- package/dist/index.css +1 -1
- package/dist/index.js +3 -39618
- package/dist/index.umd.cjs +1 -1
- package/dist/methods/dialog/src/LewDialog.vue.d.ts +1 -1
- package/package.json +3 -4
|
@@ -128,8 +128,8 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
128
128
|
cancel: () => Promise<boolean>;
|
|
129
129
|
transformOrigin: string;
|
|
130
130
|
ok: () => Promise<boolean>;
|
|
131
|
-
closeOnClickOverlay: boolean;
|
|
132
131
|
closeByEsc: boolean;
|
|
132
|
+
closeOnClickOverlay: boolean;
|
|
133
133
|
hideIcon: boolean;
|
|
134
134
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
135
135
|
okRef: ({
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lew-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.7.
|
|
4
|
+
"version": "2.7.81",
|
|
5
5
|
"description": "A Component Library for Vue3.js.",
|
|
6
6
|
"author": "lewkamtao",
|
|
7
7
|
"license": "MIT",
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"dev": "vite",
|
|
36
|
-
"build:tsdown": "tsdown",
|
|
37
36
|
"build:docs": "pnpm lint:fix && pnpm lint:css:fix && node scripts/extract-types.js && node scripts/collect-mdc.js && vue-tsc --noEmit && vite build --mode docs",
|
|
38
37
|
"build:lib": "node ./bump-version.js && vue-tsc --noEmit && vite build --mode lib",
|
|
39
38
|
"analyze": "vite build --mode analyze",
|
|
@@ -80,18 +79,18 @@
|
|
|
80
79
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
81
80
|
"eslint": "^9.31.0",
|
|
82
81
|
"eslint-plugin-format": "^1.0.1",
|
|
82
|
+
"eslint-plugin-unused-imports": "^4.3.0",
|
|
83
83
|
"markdown-it": "^14.1.0",
|
|
84
84
|
"rollup-plugin-visualizer": "^6.0.3",
|
|
85
85
|
"sass": "^1.89.2",
|
|
86
86
|
"stylelint": "16.2.1",
|
|
87
87
|
"stylelint-config-rational-order": "0.1.2",
|
|
88
88
|
"stylelint-order": "^7.0.0",
|
|
89
|
-
"tsdown": "^0.14.2",
|
|
90
89
|
"tsx": "^4.20.3",
|
|
91
90
|
"typescript": "^5.8.3",
|
|
92
91
|
"unplugin-auto-import": "^0.17.5",
|
|
93
92
|
"unplugin-vue": "^7.0.1",
|
|
94
|
-
"vite": "
|
|
93
|
+
"vite": "8.0.0-beta.0",
|
|
95
94
|
"vite-plugin-checker": "^0.6.4",
|
|
96
95
|
"vite-plugin-compression": "^0.5.1",
|
|
97
96
|
"vite-plugin-dts": "^4.5.4",
|