@mythpe/quasar-ui-qui 0.0.28 → 0.0.29

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-ui-qui",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -6,14 +6,10 @@
6
6
  * Github: https://github.com/mythpe
7
7
  */
8
8
 
9
- import * as composable from './composable'
10
- import * as utils from './utils'
11
-
12
- export default {
13
- ...composable,
14
- ...utils
15
- }
16
-
17
9
  export * from './components'
18
10
  export * from './composable'
19
11
  export * from './utils'
12
+
13
+ import * as Plugin from './utils'
14
+
15
+ export default Plugin
package/src/index.esm.js CHANGED
@@ -6,14 +6,10 @@
6
6
  * Github: https://github.com/mythpe
7
7
  */
8
8
 
9
- import * as composable from './composable'
10
- import * as utils from './utils'
11
-
12
- export default {
13
- ...composable,
14
- ...utils
15
- }
16
-
17
9
  export * from './components'
18
10
  export * from './composable'
19
11
  export * from './utils'
12
+
13
+ import * as Plugin from './utils'
14
+
15
+ export default Plugin
package/src/index.js CHANGED
@@ -6,14 +6,10 @@
6
6
  * Github: https://github.com/mythpe
7
7
  */
8
8
 
9
- import * as composable from './composable'
10
- import * as utils from './utils'
11
-
12
- export default {
13
- ...composable,
14
- ...utils
15
- }
16
-
17
9
  export * from './components'
18
10
  export * from './composable'
19
11
  export * from './utils'
12
+
13
+ import * as Plugin from './utils'
14
+
15
+ export default Plugin
package/src/index.umd.js CHANGED
@@ -6,12 +6,10 @@
6
6
  * Github: https://github.com/mythpe
7
7
  */
8
8
 
9
- import * as components from './components'
10
- import * as composable from './composable'
11
- import * as utils from './utils'
9
+ export * from './components'
10
+ export * from './composable'
11
+ export * from './utils'
12
12
 
13
- export default {
14
- ...components,
15
- ...composable,
16
- ...utils
17
- }
13
+ import * as Plugin from './utils'
14
+
15
+ export default Plugin
package/src/app-flag.d.ts DELETED
@@ -1 +0,0 @@
1
- /// <reference types="vite/client" />
package/src/index.ts DELETED
@@ -1,19 +0,0 @@
1
- /*
2
- * MyTh Ahmed Faiz Copyright © 2016-2024 All rights reserved.
3
- * Email: mythpe@gmail.com
4
- * Mobile: +966590470092
5
- * Website: https://www.4myth.com
6
- * Github: https://github.com/mythpe
7
- */
8
-
9
- import * as composable from './composable'
10
- import * as utils from './utils'
11
-
12
- export default {
13
- ...composable,
14
- ...utils
15
- }
16
-
17
- export * from './components'
18
- export * from './composable'
19
- export * from './utils'