vitrify 0.17.10 → 0.17.12

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.
Files changed (65) hide show
  1. package/dist/plugins/quasar/unocss/components/QAjaxBar.unocss.js +1 -1
  2. package/dist/plugins/quasar/unocss/components/QBanner.unocss.js +9 -12
  3. package/dist/plugins/quasar/unocss/components/QBar.unocss.js +2 -2
  4. package/dist/plugins/quasar/unocss/components/QBtn.unocss.js +5 -3
  5. package/dist/plugins/quasar/unocss/components/QCard.unocss.js +12 -4
  6. package/dist/plugins/quasar/unocss/components/QChatMessage.unocss.js +7 -2
  7. package/dist/plugins/quasar/unocss/components/QCheckbox.unocss.js +18 -6
  8. package/dist/plugins/quasar/unocss/components/QDate.unocss.js +5 -3
  9. package/dist/plugins/quasar/unocss/components/QDrawer.unocss.js +6 -4
  10. package/dist/plugins/quasar/unocss/components/QFab.unocss.js +6 -5
  11. package/dist/plugins/quasar/unocss/components/QField.unocss.js +196 -35
  12. package/dist/plugins/quasar/unocss/components/QFooter.unocss.js +1 -1
  13. package/dist/plugins/quasar/unocss/components/QItem.unocss.js +3 -3
  14. package/dist/plugins/quasar/unocss/components/QMenu.unocss.js +1 -1
  15. package/dist/plugins/quasar/unocss/components/QPagination.unocss.js +1 -1
  16. package/dist/plugins/quasar/unocss/components/QPullToRefresh.unocss.js +1 -1
  17. package/dist/plugins/quasar/unocss/components/QScrollarea.unocss.js +4 -1
  18. package/dist/plugins/quasar/unocss/components/QStepper.unocss.js +1 -1
  19. package/dist/plugins/quasar/unocss/components/QTabPanel.unocss.js +1 -1
  20. package/dist/plugins/quasar/unocss/components/QTable.unocss.js +3 -3
  21. package/dist/plugins/quasar/unocss/components/QToggle.unocss.js +2 -2
  22. package/dist/plugins/quasar/unocss/components/QTooltip.unocss.js +1 -1
  23. package/dist/plugins/quasar/unocss/core/colors.unocss.js +1 -1
  24. package/dist/plugins/quasar/unocss/core/flex.unocss.js +23 -14
  25. package/dist/plugins/quasar/unocss/core/position.unocss.js +2 -1
  26. package/dist/plugins/quasar/unocss/core/size.unocss.js +96 -84
  27. package/dist/plugins/quasar/unocss/directives/QRipple.unocss.js +1 -1
  28. package/dist/plugins/quasar/unocss/index.js +107 -67
  29. package/dist/plugins/quasar/unocss/plugins/QLoading.unocss.js +1 -1
  30. package/dist/plugins/quasar/unocss/plugins/QNotify.unocss.js +20 -20
  31. package/dist/plugins/quasar/unocss/theme.js +9 -1
  32. package/dist/types/plugins/quasar/unocss/index.d.ts +2 -1
  33. package/dist/types/plugins/quasar/unocss/theme.d.ts +9 -1
  34. package/package.json +1 -1
  35. package/src/node/plugins/quasar/unocss/components/QAjaxBar.unocss.ts +1 -1
  36. package/src/node/plugins/quasar/unocss/components/QBanner.unocss.ts +13 -12
  37. package/src/node/plugins/quasar/unocss/components/QBar.unocss.ts +2 -2
  38. package/src/node/plugins/quasar/unocss/components/QBtn.unocss.ts +5 -3
  39. package/src/node/plugins/quasar/unocss/components/QCard.unocss.ts +12 -4
  40. package/src/node/plugins/quasar/unocss/components/QChatMessage.unocss.ts +7 -2
  41. package/src/node/plugins/quasar/unocss/components/QCheckbox.unocss.ts +19 -6
  42. package/src/node/plugins/quasar/unocss/components/QDate.unocss.ts +5 -3
  43. package/src/node/plugins/quasar/unocss/components/QDrawer.unocss.ts +8 -4
  44. package/src/node/plugins/quasar/unocss/components/QFab.unocss.ts +6 -5
  45. package/src/node/plugins/quasar/unocss/components/QField.unocss.ts +196 -37
  46. package/src/node/plugins/quasar/unocss/components/QFooter.unocss.ts +1 -1
  47. package/src/node/plugins/quasar/unocss/components/QItem.unocss.ts +3 -3
  48. package/src/node/plugins/quasar/unocss/components/QMenu.unocss.ts +1 -1
  49. package/src/node/plugins/quasar/unocss/components/QPagination.unocss.ts +1 -1
  50. package/src/node/plugins/quasar/unocss/components/QPullToRefresh.unocss.ts +1 -1
  51. package/src/node/plugins/quasar/unocss/components/QScrollarea.unocss.ts +4 -1
  52. package/src/node/plugins/quasar/unocss/components/QStepper.unocss.ts +1 -1
  53. package/src/node/plugins/quasar/unocss/components/QTabPanel.unocss.ts +1 -1
  54. package/src/node/plugins/quasar/unocss/components/QTable.unocss.ts +3 -3
  55. package/src/node/plugins/quasar/unocss/components/QToggle.unocss.ts +2 -2
  56. package/src/node/plugins/quasar/unocss/components/QTooltip.unocss.ts +1 -1
  57. package/src/node/plugins/quasar/unocss/core/colors.unocss.ts +1 -1
  58. package/src/node/plugins/quasar/unocss/core/flex.unocss.ts +39 -17
  59. package/src/node/plugins/quasar/unocss/core/position.unocss.ts +3 -1
  60. package/src/node/plugins/quasar/unocss/core/size.unocss.ts +102 -84
  61. package/src/node/plugins/quasar/unocss/directives/QRipple.unocss.ts +1 -1
  62. package/src/node/plugins/quasar/unocss/index.ts +257 -196
  63. package/src/node/plugins/quasar/unocss/plugins/QLoading.unocss.ts +1 -1
  64. package/src/node/plugins/quasar/unocss/plugins/QNotify.unocss.ts +38 -20
  65. package/src/node/plugins/quasar/unocss/theme.ts +18 -2
@@ -13,11 +13,17 @@ const colGutter = {
13
13
  xl: 12
14
14
  } as const
15
15
 
16
- const sizes = ['sm', 'md', 'lg', 'xl']
17
-
18
16
  const shortcuts: UserShortcuts<QuasarTheme> = [
19
- [/^row$/, ([, c], { theme }) => `flex flex-row flex-wrap`],
20
- [/^column$/, ([, c], { theme }) => `flex flex-col flex-wrap`],
17
+ [
18
+ /^row$/,
19
+ ([, c], { theme }) =>
20
+ `flex flex-row flex-wrap flex-auto [&.reverse]:(flex-row-reverse)`
21
+ ],
22
+ [
23
+ /^column$/,
24
+ ([, c], { theme }) =>
25
+ `flex flex-col flex-wrap flex-auto [&.reverse]:(flex-col-reverse)`
26
+ ],
21
27
  [
22
28
  /^col(?:-)?(none|xs|sm|md|lg|xl)?(?:-)?([2-9]|1[0-2]?)?$/,
23
29
  ([, size, nr], { theme }) => {
@@ -34,42 +40,58 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
34
40
  [
35
41
  /^q-col-gutter-(none|xs|sm|md|lg|xl)$/,
36
42
  ([, size], { theme }) =>
37
- `gap-${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}`
43
+ `gap-${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}
44
+ [&_>_[class^="col"]]:(mr--${
45
+ colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']
46
+ })
47
+ [&_>_[class^="col"]]:(mb--${
48
+ colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']
49
+ })`
38
50
  ],
39
51
  [
40
52
  /^q-col-gutter-x-(none|xs|sm|md|lg|xl)$/,
41
53
  ([, size], { theme }) =>
42
- `gap-x-${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}`
54
+ `gap-x-${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}
55
+ [&_>_[class^="col"]]:(mr--${
56
+ colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']
57
+ })`
43
58
  ],
44
59
  [
45
60
  /^q-col-gutter-y-(none|xs|sm|md|lg|xl)$/,
46
61
  ([, size], { theme }) =>
47
- `gap-y-${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}`
62
+ `gap-y-${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}
63
+ [&_>_[class^="col"]]:(mb--${
64
+ colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']
65
+ })`
48
66
  ],
49
67
  [
50
68
  /^q-gutter-(none|xs|sm|md|lg|xl)$/,
51
69
  ([, size], { theme }) =>
52
- `mt--${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}
53
- ml--${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}
54
- [&_>_*]:(ml-${
55
- colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']
56
- } mt-${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']})`
70
+ `[&_>_*]:(mr-${
71
+ colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']
72
+ } mb-${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']})`
57
73
  ],
58
74
  [
59
75
  /^q-gutter-x-(none|xs|sm|md|lg|xl)$/,
60
76
  ([, size], { theme }) =>
61
- `ml--${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}
62
- space-x-${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}`
77
+ `
78
+ [&_>_*]:(mr-${
79
+ colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']
80
+ })`
63
81
  ],
64
82
  [
65
83
  /^q-gutter-y-(none|xs|sm|md|lg|xl)$/,
66
84
  ([, size], { theme }) =>
67
- `mt--${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}
68
- space-y-${colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']}`
85
+ `
86
+ [&_>_*]:(mb-${
87
+ colGutter[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']
88
+ })`
69
89
  ],
70
90
  [/^wrap$/, ([, size], { theme }) => `flex-wrap`],
71
91
  [/^no-wrap$/, ([, size], { theme }) => `flex-nowrap`],
72
- [/^reverse-wrap$/, ([, size], { theme }) => `flex-wrap-reverse`]
92
+ [/^reverse-wrap$/, ([, size], { theme }) => `flex-wrap-reverse`],
93
+ [/^flex-center$/, ([, c], { theme }) => 'justify-center items-center'],
94
+ [/^inline$/, ([, c], { theme }) => 'flex-inline!']
73
95
  ]
74
96
 
75
97
  export { shortcuts }
@@ -75,7 +75,9 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
75
75
 
76
76
  [/^on-right$/, ([, c], { theme }) => `ml-[12px]`],
77
77
 
78
- [/^q-position-engine$/, ([, c], { theme }) => `!mt-0 !ml-0`]
78
+ [/^q-position-engine$/, ([, c], { theme }) => `!mt-0 !ml-0`],
79
+
80
+ [/^relative-position$/, ([, c], { theme }) => `relative`]
79
81
  ]
80
82
 
81
83
  export { shortcuts }
@@ -25,173 +25,191 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
25
25
 
26
26
  [/^window-width$/, ([, c], { theme }) => `!ml-0 !mr-0 !w-screen`],
27
27
 
28
- [/^q-pa-none$/, ([, c], { theme }) => `p-[0]`],
28
+ [
29
+ /^q-p(a|t|b|l|r)?(?:-)(none|xs|sm|md|lg|xl)$/,
30
+ ([, side, size], { theme }) => {
31
+ return `p${side}-${
32
+ theme.quasar?.spaces[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']
33
+ }`
34
+ }
35
+ ],
29
36
 
30
- [/^q-pl-none$/, ([, c], { theme }) => `pl-0`],
37
+ [
38
+ /^q-m(a|t|b|l|r)?(?:-)(none|xs|sm|md|lg|xl)$/,
39
+ ([, side, size], { theme }) => {
40
+ return `m${side}-${
41
+ theme.quasar?.spaces[size as 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl']
42
+ }`
43
+ }
44
+ ],
31
45
 
32
- [/^q-pr-none$/, ([, c], { theme }) => `pr-0`],
46
+ // [/^q-pa-none$/, ([, c], { theme }) => `p-[0]`],
33
47
 
34
- [/^q-pt-none$/, ([, c], { theme }) => `pt-0`],
48
+ // [/^q-pl-none$/, ([, c], { theme }) => `pl-0`],
35
49
 
36
- [/^q-pb-none$/, ([, c], { theme }) => `pb-0`],
50
+ // [/^q-pr-none$/, ([, c], { theme }) => `pr-0`],
37
51
 
38
- [/^q-px-none$/, ([, c], { theme }) => `pl-0 pr-0`],
52
+ // [/^q-pt-none$/, ([, c], { theme }) => `pt-0`],
39
53
 
40
- [/^q-py-none$/, ([, c], { theme }) => `pt-0 pb-0`],
54
+ // [/^q-pb-none$/, ([, c], { theme }) => `pb-0`],
41
55
 
42
- [/^q-ma-none$/, ([, c], { theme }) => `m-[0]`],
56
+ // [/^q-px-none$/, ([, c], { theme }) => `pl-0 pr-0`],
43
57
 
44
- [/^q-ml-none$/, ([, c], { theme }) => `ml-0`],
58
+ // [/^q-py-none$/, ([, c], { theme }) => `pt-0 pb-0`],
45
59
 
46
- [/^q-mr-none$/, ([, c], { theme }) => `mr-0`],
60
+ // [/^q-ma-none$/, ([, c], { theme }) => `m-[0]`],
47
61
 
48
- [/^q-mt-none$/, ([, c], { theme }) => `mt-0`],
62
+ // [/^q-ml-none$/, ([, c], { theme }) => `ml-0`],
49
63
 
50
- [/^q-mb-none$/, ([, c], { theme }) => `mb-0`],
64
+ // [/^q-mr-none$/, ([, c], { theme }) => `mr-0`],
51
65
 
52
- [/^q-mx-none$/, ([, c], { theme }) => `ml-0 mr-0`],
66
+ // [/^q-mt-none$/, ([, c], { theme }) => `mt-0`],
53
67
 
54
- [/^q-my-none$/, ([, c], { theme }) => `mt-0 mb-0`],
68
+ // [/^q-mb-none$/, ([, c], { theme }) => `mb-0`],
55
69
 
56
- [/^q-pa-xs$/, ([, c], { theme }) => `p-[4px]`],
70
+ // [/^q-mx-none$/, ([, c], { theme }) => `ml-0 mr-0`],
57
71
 
58
- [/^q-pl-xs$/, ([, c], { theme }) => `pl-[4px]`],
72
+ // [/^q-my-none$/, ([, c], { theme }) => `mt-0 mb-0`],
59
73
 
60
- [/^q-pr-xs$/, ([, c], { theme }) => `pr-[4px]`],
74
+ // [/^q-pa-xs$/, ([, c], { theme }) => `p-[4px]`],
61
75
 
62
- [/^q-pt-xs$/, ([, c], { theme }) => `pt-[4px]`],
76
+ // [/^q-pl-xs$/, ([, c], { theme }) => `pl-[4px]`],
63
77
 
64
- [/^q-pb-xs$/, ([, c], { theme }) => `pb-[4px]`],
78
+ // [/^q-pr-xs$/, ([, c], { theme }) => `pr-[4px]`],
65
79
 
66
- [/^q-px-xs$/, ([, c], { theme }) => `pl-[4px] pr-[4px]`],
80
+ // [/^q-pt-xs$/, ([, c], { theme }) => `pt-[4px]`],
67
81
 
68
- [/^q-py-xs$/, ([, c], { theme }) => `pt-[4px] pb-[4px]`],
82
+ // [/^q-pb-xs$/, ([, c], { theme }) => `pb-[4px]`],
69
83
 
70
- [/^q-ma-xs$/, ([, c], { theme }) => `m-[4px]`],
84
+ // [/^q-px-xs$/, ([, c], { theme }) => `pl-[4px] pr-[4px]`],
71
85
 
72
- [/^q-ml-xs$/, ([, c], { theme }) => `ml-[4px]`],
86
+ // [/^q-py-xs$/, ([, c], { theme }) => `pt-[4px] pb-[4px]`],
73
87
 
74
- [/^q-mr-xs$/, ([, c], { theme }) => `mr-[4px]`],
88
+ // [/^q-ma-xs$/, ([, c], { theme }) => `m-[4px]`],
75
89
 
76
- [/^q-mt-xs$/, ([, c], { theme }) => `mt-[4px]`],
90
+ // [/^q-ml-xs$/, ([, c], { theme }) => `ml-[4px]`],
77
91
 
78
- [/^q-mb-xs$/, ([, c], { theme }) => `mb-[4px]`],
92
+ // [/^q-mr-xs$/, ([, c], { theme }) => `mr-[4px]`],
79
93
 
80
- [/^q-mx-xs$/, ([, c], { theme }) => `ml-[4px] mr-[4px]`],
94
+ // [/^q-mt-xs$/, ([, c], { theme }) => `mt-[4px]`],
81
95
 
82
- [/^q-my-xs$/, ([, c], { theme }) => `mt-[4px] mb-[4px]`],
96
+ // [/^q-mb-xs$/, ([, c], { theme }) => `mb-[4px]`],
83
97
 
84
- [/^q-pa-sm$/, ([, c], { theme }) => `p-[8px]`],
98
+ // [/^q-mx-xs$/, ([, c], { theme }) => `ml-[4px] mr-[4px]`],
85
99
 
86
- [/^q-pl-sm$/, ([, c], { theme }) => `pl-[8px]`],
100
+ // [/^q-my-xs$/, ([, c], { theme }) => `mt-[4px] mb-[4px]`],
87
101
 
88
- [/^q-pr-sm$/, ([, c], { theme }) => `pr-[8px]`],
102
+ // [/^q-pa-sm$/, ([, c], { theme }) => `p-[8px]`],
89
103
 
90
- [/^q-pt-sm$/, ([, c], { theme }) => `pt-[8px]`],
104
+ // [/^q-pl-sm$/, ([, c], { theme }) => `pl-[8px]`],
91
105
 
92
- [/^q-pb-sm$/, ([, c], { theme }) => `pb-[8px]`],
106
+ // [/^q-pr-sm$/, ([, c], { theme }) => `pr-[8px]`],
93
107
 
94
- [/^q-px-sm$/, ([, c], { theme }) => `pl-[8px] pr-[8px]`],
108
+ // [/^q-pt-sm$/, ([, c], { theme }) => `pt-[8px]`],
95
109
 
96
- [/^q-py-sm$/, ([, c], { theme }) => `pt-[8px] pb-[8px]`],
110
+ // [/^q-pb-sm$/, ([, c], { theme }) => `pb-[8px]`],
97
111
 
98
- [/^q-ma-sm$/, ([, c], { theme }) => `m-[8px]`],
112
+ // [/^q-px-sm$/, ([, c], { theme }) => `pl-[8px] pr-[8px]`],
99
113
 
100
- [/^q-ml-sm$/, ([, c], { theme }) => `ml-[8px]`],
114
+ // [/^q-py-sm$/, ([, c], { theme }) => `pt-[8px] pb-[8px]`],
101
115
 
102
- [/^q-mr-sm$/, ([, c], { theme }) => `mr-[8px]`],
116
+ // [/^q-ma-sm$/, ([, c], { theme }) => `m-[8px]`],
103
117
 
104
- [/^q-mt-sm$/, ([, c], { theme }) => `mt-[8px]`],
118
+ // [/^q-ml-sm$/, ([, c], { theme }) => `ml-[8px]`],
105
119
 
106
- [/^q-mb-sm$/, ([, c], { theme }) => `mb-[8px]`],
120
+ // [/^q-mr-sm$/, ([, c], { theme }) => `mr-[8px]`],
107
121
 
108
- [/^q-mx-sm$/, ([, c], { theme }) => `ml-[8px] mr-[8px]`],
122
+ // [/^q-mt-sm$/, ([, c], { theme }) => `mt-[8px]`],
109
123
 
110
- [/^q-my-sm$/, ([, c], { theme }) => `mt-[8px] mb-[8px]`],
124
+ // [/^q-mb-sm$/, ([, c], { theme }) => `mb-[8px]`],
111
125
 
112
- [/^q-pa-md$/, ([, c], { theme }) => `p-[16px]`],
126
+ // [/^q-mx-sm$/, ([, c], { theme }) => `ml-[8px] mr-[8px]`],
113
127
 
114
- [/^q-pl-md$/, ([, c], { theme }) => `pl-[16px]`],
128
+ // [/^q-my-sm$/, ([, c], { theme }) => `mt-[8px] mb-[8px]`],
115
129
 
116
- [/^q-pr-md$/, ([, c], { theme }) => `pr-[16px]`],
130
+ // [/^q-pa-md$/, ([, c], { theme }) => `p-[16px]`],
117
131
 
118
- [/^q-pt-md$/, ([, c], { theme }) => `pt-[16px]`],
132
+ // [/^q-pl-md$/, ([, c], { theme }) => `pl-[16px]`],
119
133
 
120
- [/^q-pb-md$/, ([, c], { theme }) => `pb-[16px]`],
134
+ // [/^q-pr-md$/, ([, c], { theme }) => `pr-[16px]`],
121
135
 
122
- [/^q-px-md$/, ([, c], { theme }) => `pl-[16px] pr-[16px]`],
136
+ // [/^q-pt-md$/, ([, c], { theme }) => `pt-[16px]`],
123
137
 
124
- [/^q-py-md$/, ([, c], { theme }) => `pt-[16px] pb-[16px]`],
138
+ // [/^q-pb-md$/, ([, c], { theme }) => `pb-[16px]`],
125
139
 
126
- [/^q-ma-md$/, ([, c], { theme }) => `m-[16px]`],
140
+ // [/^q-px-md$/, ([, c], { theme }) => `pl-[16px] pr-[16px]`],
127
141
 
128
- [/^q-ml-md$/, ([, c], { theme }) => `ml-[16px]`],
142
+ // [/^q-py-md$/, ([, c], { theme }) => `pt-[16px] pb-[16px]`],
129
143
 
130
- [/^q-mr-md$/, ([, c], { theme }) => `mr-[16px]`],
144
+ // [/^q-ma-md$/, ([, c], { theme }) => `m-[16px]`],
131
145
 
132
- [/^q-mt-md$/, ([, c], { theme }) => `mt-[16px]`],
146
+ // [/^q-ml-md$/, ([, c], { theme }) => `ml-[16px]`],
133
147
 
134
- [/^q-mb-md$/, ([, c], { theme }) => `mb-[16px]`],
148
+ // [/^q-mr-md$/, ([, c], { theme }) => `mr-[16px]`],
135
149
 
136
- [/^q-mx-md$/, ([, c], { theme }) => `ml-[16px] mr-[16px]`],
150
+ // [/^q-mt-md$/, ([, c], { theme }) => `mt-[16px]`],
137
151
 
138
- [/^q-my-md$/, ([, c], { theme }) => `mt-[16px] mb-[16px]`],
152
+ // [/^q-mb-md$/, ([, c], { theme }) => `mb-[16px]`],
139
153
 
140
- [/^q-pa-lg$/, ([, c], { theme }) => `p-[24px]`],
154
+ // [/^q-mx-md$/, ([, c], { theme }) => `ml-[16px] mr-[16px]`],
141
155
 
142
- [/^q-pl-lg$/, ([, c], { theme }) => `pl-[24px]`],
156
+ // [/^q-my-md$/, ([, c], { theme }) => `mt-[16px] mb-[16px]`],
143
157
 
144
- [/^q-pr-lg$/, ([, c], { theme }) => `pr-[24px]`],
158
+ // [/^q-pa-lg$/, ([, c], { theme }) => `p-[24px]`],
145
159
 
146
- [/^q-pt-lg$/, ([, c], { theme }) => `pt-[24px]`],
160
+ // [/^q-pl-lg$/, ([, c], { theme }) => `pl-[24px]`],
147
161
 
148
- [/^q-pb-lg$/, ([, c], { theme }) => `pb-[24px]`],
162
+ // [/^q-pr-lg$/, ([, c], { theme }) => `pr-[24px]`],
149
163
 
150
- [/^q-px-lg$/, ([, c], { theme }) => `pl-[24px] pr-[24px]`],
164
+ // [/^q-pt-lg$/, ([, c], { theme }) => `pt-[24px]`],
151
165
 
152
- [/^q-py-lg$/, ([, c], { theme }) => `pt-[24px] pb-[24px]`],
166
+ // [/^q-pb-lg$/, ([, c], { theme }) => `pb-[24px]`],
153
167
 
154
- [/^q-ma-lg$/, ([, c], { theme }) => `m-[24px]`],
168
+ // [/^q-px-lg$/, ([, c], { theme }) => `pl-[24px] pr-[24px]`],
155
169
 
156
- [/^q-ml-lg$/, ([, c], { theme }) => `ml-[24px]`],
170
+ // [/^q-py-lg$/, ([, c], { theme }) => `pt-[24px] pb-[24px]`],
157
171
 
158
- [/^q-mr-lg$/, ([, c], { theme }) => `mr-[24px]`],
172
+ // [/^q-ma-lg$/, ([, c], { theme }) => `m-[24px]`],
159
173
 
160
- [/^q-mt-lg$/, ([, c], { theme }) => `mt-[24px]`],
174
+ // [/^q-ml-lg$/, ([, c], { theme }) => `ml-[24px]`],
161
175
 
162
- [/^q-mb-lg$/, ([, c], { theme }) => `mb-[24px]`],
176
+ // [/^q-mr-lg$/, ([, c], { theme }) => `mr-[24px]`],
163
177
 
164
- [/^q-mx-lg$/, ([, c], { theme }) => `ml-[24px] mr-[24px]`],
178
+ // [/^q-mt-lg$/, ([, c], { theme }) => `mt-[24px]`],
165
179
 
166
- [/^q-my-lg$/, ([, c], { theme }) => `mt-[24px] mb-[24px]`],
180
+ // [/^q-mb-lg$/, ([, c], { theme }) => `mb-[24px]`],
167
181
 
168
- [/^q-pa-xl$/, ([, c], { theme }) => `p-[48px]`],
182
+ // [/^q-mx-lg$/, ([, c], { theme }) => `ml-[24px] mr-[24px]`],
169
183
 
170
- [/^q-pl-xl$/, ([, c], { theme }) => `pl-[48px]`],
184
+ // [/^q-my-lg$/, ([, c], { theme }) => `mt-[24px] mb-[24px]`],
171
185
 
172
- [/^q-pr-xl$/, ([, c], { theme }) => `pr-[48px]`],
186
+ // [/^q-pa-xl$/, ([, c], { theme }) => `p-[48px]`],
173
187
 
174
- [/^q-pt-xl$/, ([, c], { theme }) => `pt-[48px]`],
188
+ // [/^q-pl-xl$/, ([, c], { theme }) => `pl-[48px]`],
175
189
 
176
- [/^q-pb-xl$/, ([, c], { theme }) => `pb-[48px]`],
190
+ // [/^q-pr-xl$/, ([, c], { theme }) => `pr-[48px]`],
177
191
 
178
- [/^q-px-xl$/, ([, c], { theme }) => `pl-[48px] pr-[48px]`],
192
+ // [/^q-pt-xl$/, ([, c], { theme }) => `pt-[48px]`],
179
193
 
180
- [/^q-py-xl$/, ([, c], { theme }) => `pt-[48px] pb-[48px]`],
194
+ // [/^q-pb-xl$/, ([, c], { theme }) => `pb-[48px]`],
181
195
 
182
- [/^q-ma-xl$/, ([, c], { theme }) => `m-[48px]`],
196
+ // [/^q-px-xl$/, ([, c], { theme }) => `pl-[48px] pr-[48px]`],
183
197
 
184
- [/^q-ml-xl$/, ([, c], { theme }) => `ml-[48px]`],
198
+ // [/^q-py-xl$/, ([, c], { theme }) => `pt-[48px] pb-[48px]`],
185
199
 
186
- [/^q-mr-xl$/, ([, c], { theme }) => `mr-[48px]`],
200
+ // [/^q-ma-xl$/, ([, c], { theme }) => `m-[48px]`],
187
201
 
188
- [/^q-mt-xl$/, ([, c], { theme }) => `mt-[48px]`],
202
+ // [/^q-ml-xl$/, ([, c], { theme }) => `ml-[48px]`],
189
203
 
190
- [/^q-mb-xl$/, ([, c], { theme }) => `mb-[48px]`],
204
+ // [/^q-mr-xl$/, ([, c], { theme }) => `mr-[48px]`],
191
205
 
192
- [/^q-mx-xl$/, ([, c], { theme }) => `ml-[48px] mr-[48px]`],
206
+ // [/^q-mt-xl$/, ([, c], { theme }) => `mt-[48px]`],
193
207
 
194
- [/^q-my-xl$/, ([, c], { theme }) => `mt-[48px] mb-[48px]`],
208
+ // [/^q-mb-xl$/, ([, c], { theme }) => `mb-[48px]`],
209
+
210
+ // [/^q-mx-xl$/, ([, c], { theme }) => `ml-[48px] mr-[48px]`],
211
+
212
+ // [/^q-my-xl$/, ([, c], { theme }) => `mt-[48px] mb-[48px]`],
195
213
 
196
214
  [/^q-mt-auto$/, ([, c], { theme }) => `mt-auto`],
197
215
 
@@ -5,7 +5,7 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
5
5
  [
6
6
  /^q-ripple$/,
7
7
  ([, c], { theme }) =>
8
- `absolute top-0 left-0 w-full h-full [color:inherit] [border-radius:inherit] z-0 pointer-events-none overflow-hidden`
8
+ `absolute top-0 left-0 w-full h-full [color:inherit] [border-radius:inherit] z-0 pointer-events-none overflow-hidden z-0`
9
9
  ],
10
10
 
11
11
  [