@mythpe/quasar-ui-qui 0.0.1-dev → 0.0.2-dev

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.1-dev",
3
+ "version": "0.0.2-dev",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": "MyTh Ahmed Faiz <mythpe@gmail.com>",
6
6
  "email": "mythpe@gmail.com",
@@ -0,0 +1,6 @@
1
+ import { boot } from 'quasar/wrappers'
2
+ import Plugin from '../utils/vue-plugin'
3
+
4
+ export default boot(({ app }) => {
5
+ app.use(Plugin)
6
+ })
@@ -3,7 +3,7 @@ import type { MBtnProps } from '../../types'
3
3
  import { useI18n } from 'vue-i18n'
4
4
  import { computed } from 'vue'
5
5
  import { extend } from 'quasar'
6
- import { myth } from '../../myth'
6
+ import { myth } from '../../utils/myth'
7
7
 
8
8
  const props = defineProps<MBtnProps>()
9
9
  const options = computed(() => myth.options.value.btn ?? {})
@@ -1,7 +1,7 @@
1
1
  <script lang="ts" setup>
2
2
  import type { MBlockProps } from '../../types'
3
3
  import { computed } from 'vue'
4
- import MythOptions from '../../myth'
4
+ import MythOptions from '../../utils/myth'
5
5
  import { extend } from 'quasar'
6
6
 
7
7
  interface Props {
@@ -8,7 +8,7 @@
8
8
 
9
9
  <script lang="ts" setup>
10
10
  import type { MContainerProps } from '../../types'
11
- import MythOptions from '../../myth'
11
+ import MythOptions from '../../utils/myth'
12
12
  import { computed } from 'vue'
13
13
 
14
14
  interface Props {
@@ -4,7 +4,7 @@
4
4
  >
5
5
  import type { MRowProps } from '../../types'
6
6
  import { computed } from 'vue'
7
- import MythOptions from '../../myth'
7
+ import MythOptions from '../../utils/myth'
8
8
 
9
9
  interface Props {
10
10
  gutter?: MRowProps['gutter'];
@@ -1 +1 @@
1
- export * from './vue-plugin'
1
+ export * from './utils/vue-plugin.js'
package/src/index.esm.js CHANGED
@@ -1,4 +1,4 @@
1
- import * as VuePlugin from './vue-plugin'
1
+ import * as VuePlugin from './utils/vue-plugin.js'
2
2
 
3
- export * from './vue-plugin'
3
+ export * from './utils/vue-plugin.js'
4
4
  export default VuePlugin
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
- export * from './vue-plugin'
1
+ export * from './utils/vue-plugin'
2
2
  export * from './types'
3
3
 
4
- import * as VuePlugin from './vue-plugin'
5
- export default VuePlugin
4
+ import * as Plugin from './utils/vue-plugin'
5
+ export default Plugin
package/src/index.umd.js CHANGED
@@ -1,2 +1,2 @@
1
- import * as VuePlugin from './vue-plugin'
1
+ import * as VuePlugin from './utils/vue-plugin.js'
2
2
  export default VuePlugin
@@ -1,7 +1,7 @@
1
1
  import { ref } from 'vue'
2
2
  import type { QBtnProps } from 'quasar'
3
3
  import { extend } from 'quasar'
4
- import type { MythContext, UiOptionsContext } from './types'
4
+ import type { MythContext, UiOptionsContext } from '../types'
5
5
 
6
6
  const defGutters = 'md'
7
7
  const defaultOptions: UiOptionsContext = {
@@ -1,13 +1,13 @@
1
- import js from './../package.json'
1
+ import js from '../../package.json'
2
2
  import myth from './myth'
3
- import MBtn from './components/form/MBtn.vue'
4
- import MBlock from './components/grid/MBlock.vue'
5
- import MCol from './components/grid/MCol.vue'
6
- import MColumn from './components/grid/MColumn.vue'
7
- import MContainer from './components/grid/MContainer.vue'
8
- import MHelpRow from './components/grid/MHelpRow.vue'
9
- import MRow from './components/grid/MRow.vue'
10
- import MTypingString from './components/typography/MTypingString.vue'
3
+ import MBtn from '../components/form/MBtn.vue'
4
+ import MBlock from '../components/grid/MBlock.vue'
5
+ import MCol from '../components/grid/MCol.vue'
6
+ import MColumn from '../components/grid/MColumn.vue'
7
+ import MContainer from '../components/grid/MContainer.vue'
8
+ import MHelpRow from '../components/grid/MHelpRow.vue'
9
+ import MRow from '../components/grid/MRow.vue'
10
+ import MTypingString from '../components/typography/MTypingString.vue'
11
11
  import type { App } from 'vue'
12
12
 
13
13
  const name = js.name