vue-modaller 1.0.4 → 1.0.6
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/index.d.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import './css/style.css';
|
|
2
|
-
import type {
|
|
3
|
-
declare const VueModaller:
|
|
4
|
-
install(app: App, options?: any): void;
|
|
5
|
-
};
|
|
2
|
+
import type { Plugin } from 'vue';
|
|
3
|
+
declare const VueModaller: Plugin;
|
|
6
4
|
declare const createPlugin: (options?: any) => any;
|
|
7
5
|
export * from './components';
|
|
8
6
|
export * from './useModal';
|
|
9
7
|
export { createPlugin, VueModaller };
|
|
10
|
-
export default VueModaller;
|
|
8
|
+
export default VueModaller;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-modaller",
|
|
3
3
|
"author": "Classydev (https://github.com/classyrazy)",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.6",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "A flexible and powerful modal system for Vue 3 applications with TypeScript support, featuring draggable modals, side panels, and smooth animations",
|
|
7
7
|
"private": false,
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
],
|
|
47
47
|
"main": "./dist/vue-modaller.umd.cjs",
|
|
48
48
|
"module": "./dist/vue-modaller.js",
|
|
49
|
+
"style": "./dist/style.css",
|
|
49
50
|
"exports": {
|
|
50
51
|
".": {
|
|
51
52
|
"import": "./dist/vue-modaller.js",
|
|
File without changes
|