@mythpe/quasar-ui-qui 0.0.18-dev → 0.0.19-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.
@@ -6,4 +6,8 @@
6
6
  * Github: https://github.com/mythpe
7
7
  */
8
8
 
9
- export * from './types'
9
+ export * from './src/types'
10
+
11
+ export * from './src/components'
12
+ export * from './src/composable'
13
+ export * from './src/utils'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-ui-qui",
3
- "version": "0.0.18-dev",
3
+ "version": "0.0.19-dev",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -28,10 +28,8 @@
28
28
  "vee-validate": "^4.14.0",
29
29
  "@vee-validate/i18n": "^4.14.0",
30
30
  "@vee-validate/rules": "^4.14.0",
31
- "vue-i18n": "^10.0.0"
32
- },
33
- "peerDependencies": {
34
- "lodash": "^4.17.21"
31
+ "vue-i18n": "^10.0.0",
32
+ "lodash": "^4.17.0"
35
33
  },
36
34
  "devDependencies": {
37
35
  "@quasar/app-webpack": "^3.13.0",
@@ -23,7 +23,8 @@ export const useInputHelper = <P extends G = G> (Props: MaybeRefOrGetter<P>, key
23
23
  const { attributes: attrs } = useSplitAttrs()
24
24
  const props = toValue<P>(Props)
25
25
  const opts = toValue<OptsContext>(Opts)
26
- // @ts-ignore
26
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
27
+ // @ts-expect-error
27
28
  const inputOptions = computed(() => (k: keyof UiOpt) => myth.options.value[k] || {})
28
29
  const inputProps = computed<UiOpt[typeof key] & P>(() => extend(!0, {}, inputOptions.value(key), props))
29
30
  const hasTopLabel = computed(() => inputProps.value?.topLabel === !0)