@mythpe/quasar-ui-qui 0.0.10 → 0.0.11

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.10",
3
+ "version": "0.0.11",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": "MyTh Ahmed Faiz <mythpe@gmail.com>",
6
6
  "email": "mythpe@gmail.com",
@@ -27,13 +27,12 @@ defineOptions({
27
27
  <div
28
28
  :class="{
29
29
  'm---block' : !0,
30
- [`q-pa-${options.size}`] : !!options.size && options.size !== 'none',
30
+ [`q-pa-${options.size}`] : options.size && options.size !== 'none',
31
31
  'rounded-borders' : options.rounded === !0,
32
- [`shadow-${options.shadow}`] : !!options.shadow && options.shadow !== 'none'
32
+ [`shadow-${options.shadow}`] : options.shadow && options.shadow !== 'none'
33
33
  }"
34
34
  v-bind="$attrs"
35
35
  >
36
- <pre style="direction: ltr;">{{ options }}</pre>
37
36
  <slot />
38
37
  </div>
39
38
  </template>
@@ -17,16 +17,7 @@ interface Props {
17
17
  xl?: MColProps['xl']
18
18
  }
19
19
 
20
- const props = withDefaults(defineProps<Props>(), {
21
- name: undefined,
22
- auto: undefined,
23
- col: undefined,
24
- xs: undefined,
25
- sm: undefined,
26
- md: undefined,
27
- lg: undefined,
28
- xl: undefined
29
- })
20
+ const props = defineProps<Props>()
30
21
  const classes = computed(() => {
31
22
  const list: string[] = ['m--col']
32
23
  if (props.auto === !0) {
@@ -53,8 +44,8 @@ const classes = computed(() => {
53
44
  if (list.length === 1 && props.col !== !1) {
54
45
  list.push('col')
55
46
  }
56
-
57
47
  return lodash.uniq(list)
48
+ // return list
58
49
  })
59
50
  defineOptions({
60
51
  name: 'MCol',