@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 +1 -1
- package/src/index.common.js +4 -8
- package/src/index.esm.js +4 -8
- package/src/index.js +4 -8
- package/src/index.umd.js +6 -8
- package/src/app-flag.d.ts +0 -1
- package/src/index.ts +0 -19
package/package.json
CHANGED
package/src/index.common.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.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
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
export * from './components'
|
|
10
|
+
export * from './composable'
|
|
11
|
+
export * from './utils'
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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'
|