@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 +1 -1
- package/src/boot/register.ts +6 -0
- package/src/components/form/MBtn.vue +1 -1
- package/src/components/grid/MBlock.vue +1 -1
- package/src/components/grid/MContainer.vue +1 -1
- package/src/components/grid/MRow.vue +1 -1
- package/src/index.common.js +1 -1
- package/src/index.esm.js +2 -2
- package/src/index.ts +3 -3
- package/src/index.umd.js +1 -1
- package/src/{myth.ts → utils/myth.ts} +1 -1
- package/src/{vue-plugin.ts → utils/vue-plugin.ts} +9 -9
package/package.json
CHANGED
|
@@ -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 ?? {})
|
package/src/index.common.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './vue-plugin'
|
|
1
|
+
export * from './utils/vue-plugin.js'
|
package/src/index.esm.js
CHANGED
package/src/index.ts
CHANGED
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 '
|
|
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 '
|
|
1
|
+
import js from '../../package.json'
|
|
2
2
|
import myth from './myth'
|
|
3
|
-
import MBtn from '
|
|
4
|
-
import MBlock from '
|
|
5
|
-
import MCol from '
|
|
6
|
-
import MColumn from '
|
|
7
|
-
import MContainer from '
|
|
8
|
-
import MHelpRow from '
|
|
9
|
-
import MRow from '
|
|
10
|
-
import MTypingString from '
|
|
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
|