@mythpe/quasar-app-extension-qui 0.0.7-dev → 0.0.9-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,14 +1,15 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-app-extension-qui",
3
- "version": "0.0.7-dev",
3
+ "version": "0.0.9-dev",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
- "author": "MyTh Ahmed Faiz <mythpe@gmail.com>",
6
- "email": "mythpe@gmail.com",
7
- "mobile": "+966590470092",
5
+ "author": {
6
+ "name": "MyTh Ahmed Faiz",
7
+ "mobile": "+966590470092",
8
+ "email": "mythpe@gmail.com",
9
+ "url": "https://www.4myth.com"
10
+ },
8
11
  "license": "MIT",
9
12
  "type": "module",
10
- "module": "index.js",
11
- "main": "index.js",
12
13
  "scripts": {
13
14
  "lint": "eslint --ext .js,.ts,.vue ./",
14
15
  "lint:fix": "eslint --ext .js,.ts,.vue ./ --fix",
@@ -16,13 +17,8 @@
16
17
  "build:js": "node build/script.javascript.cjs",
17
18
  "build:css": "node build/script.css.cjs"
18
19
  },
19
- "dependencies": {
20
- "typed.js": "^2.1.0",
21
- "lodash": "^4.17.21",
22
- "vee-validate": "^4.14.0",
23
- "@vee-validate/i18n": "^4.14.0",
24
- "@vee-validate/rules": "^4.14.0",
25
- "vue-i18n": "^10.0.0"
20
+ "peerDependencies": {
21
+ "lodash": "^4.17.21"
26
22
  },
27
23
  "devDependencies": {
28
24
  "@quasar/app-webpack": "^3.13.0",
@@ -36,6 +32,8 @@
36
32
  "@types/node": "^22.9.1",
37
33
  "@typescript-eslint/eslint-plugin": "^7.16.0",
38
34
  "@typescript-eslint/parser": "^7.16.0",
35
+ "@vee-validate/i18n": "^4.14.0",
36
+ "@vee-validate/rules": "^4.14.0",
39
37
  "autoprefixer": "^10.0.2",
40
38
  "chalk": "^4.1.0",
41
39
  "core-js": "^3.0.0",
@@ -54,9 +52,12 @@
54
52
  "rollup": "^2.45.0",
55
53
  "rtlcss": "^4.3.0",
56
54
  "sass": "^1.33.0",
55
+ "typed.js": "^2.1.0",
57
56
  "typescript": "~5.5.3",
58
57
  "uglify-js": "^3.13.3",
58
+ "vee-validate": "^4.14.0",
59
59
  "vue": "^3.0.0",
60
+ "vue-i18n": "^10.0.0",
60
61
  "vue-router": "^4.0.0",
61
62
  "zlib": "^1.0.5"
62
63
  },
@@ -1,7 +1,4 @@
1
- <script
2
- lang="ts"
3
- setup
4
- >
1
+ <script lang="ts" setup>
5
2
  import type { MBtnProps } from '../../types'
6
3
  import { useI18n } from 'vue-i18n'
7
4
  import { computed } from 'vue'
@@ -3,7 +3,7 @@
3
3
  setup
4
4
  >
5
5
  import { computed } from 'vue'
6
- import { uniq } from 'lodash'
6
+ import lodash from 'lodash'
7
7
  import type { MColProps } from '../../types'
8
8
 
9
9
  interface Props {
@@ -44,8 +44,9 @@ const classes = computed(() => {
44
44
  if (list.length === 1 && props.col !== !1) {
45
45
  list.push('col')
46
46
  }
47
- return uniq(list)
48
- // return list
47
+ console.log(lodash)
48
+ // return uniq(list)
49
+ return list
49
50
  })
50
51
  defineOptions({
51
52
  name: 'MCol',
package/tsconfig.json CHANGED
@@ -1,8 +1,5 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "baseUrl": ".",
4
- "rootDir": ".",
5
- "outDir": "dist",
6
3
  "esModuleInterop": true,
7
4
  "skipLibCheck": true,
8
5
  "target": "esnext",
package/jsconfig.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "baseUrl": "."
4
- }
5
- }