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
@@ -2,33 +2,34 @@ import type { Rule, UserShortcuts } from '@unocss/core'
2
2
  import type { QuasarTheme } from '../theme.js'
3
3
 
4
4
  const shortcuts: UserShortcuts<QuasarTheme> = [
5
- [/^q-banner$/, ([, c], { theme }) => `min-h-54px px-16px py-8px bg-white`],
6
- [/^q-banner--top-padding$/, ([, c], { theme }) => ``],
7
- [/^q-banner--top-padding$/, ([, c], { theme }) => `pt-14px`],
5
+ [
6
+ /^q-banner$/,
7
+ ([, c], { theme }) =>
8
+ theme.quasar?.components?.['q-banner'] ??
9
+ `min-h-[54px] px-[16px] py-[8px] bg-[#fff]`
10
+ ],
11
+
12
+ [/^q-banner--top-padding$/, ([, c], { theme }) => `pt-[14px]`],
13
+
8
14
  [
9
15
  /^q-banner__avatar$/,
10
16
  ([, c], { theme }) =>
11
17
  theme.quasar?.components?.['q-banner__avatar'] ??
12
- `min-w-1px! [&.q-avatar]:(text-46px)
13
- [&.q-icon]:(text-40px)
14
- [&:not(:empty)+.q-banner\\_\\_content]:(pl-16px)`
18
+ `!min-w-[1px] [&_>_.q-avatar]:(text-[46px]) [&_>_.q-icon]:(text-[40px]) [&:not(:empty)_+_.q-banner\\_\\_content]:(pl-[16px])`
15
19
  ],
20
+
16
21
  [
17
22
  /^q-banner__actions$/,
18
23
  ([, c], { theme }) =>
19
24
  theme.quasar?.components?.['q-banner__actions'] ??
20
- `[&.col-auto]:(pl-16px)
21
- [&.col-all_.q.btn-item]:(mt-4px mb-0 ml-4px mr-0)`
25
+ `[&.col-auto]:(pl-[16px]) [&.col-all_.q-btn-item]:(mt-[4px] mr-[0] mb-[0] ml-[4px])`
22
26
  ],
23
27
 
24
28
  [
25
29
  /^q-banner--dense$/,
26
30
  ([, c], { theme }) =>
27
31
  theme.quasar?.components?.['q-banner--dense'] ??
28
- `min-h-32px p-8px
29
- [&_.q-banner\\_\\_avatar>.q-avatar,.q-banner--dense_.q-banner\\_\\_avatar>.q-icon]:(text-28px)
30
- [&_.q-banner\\_\\_avatar:not(:empty)+.q-banner\\_\\_content]:(pl-8px)
31
- [&_.q-banner\\_\\_actions.col-auto]:(pl-8px)`
32
+ `min-h-[32px] p-[8px] [&.q-banner--top-padding]:(pt-[12px]) [&_.q-banner\\_\\_avatar_>_.q-avatar]:(text-[28px]) [&_.q-banner\\_\\_avatar_>_.q-icon]:(text-[28px]) [&_.q-banner\\_\\_avatar:not(:empty)_+_.q-banner\\_\\_content]:(pl-[8px]) [&_.q-banner\\_\\_actions.col-auto]:(pl-[8px])`
32
33
  ]
33
34
  ]
34
35
 
@@ -6,7 +6,7 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
6
6
  /^q-bar$/,
7
7
  ([, c], { theme }) =>
8
8
  theme.quasar?.components?.['q-bar'] ??
9
- `bg-black op-20
9
+ `bg-black/20
10
10
  [&>.q-icon]:(ml-2px)
11
11
  [&>div]:(ml-8px)
12
12
  [&>div+.q-icon]:(ml-8px)
@@ -30,7 +30,7 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
30
30
  `px-8px py-0 h-24px text-14px
31
31
  [&_.q-btn]:(text-8px)`
32
32
  ],
33
- [/^q-bar--dark$/, ([, c], { theme }) => `bg-white op-15`]
33
+ [/^q-bar--dark$/, ([, c], { theme }) => `bg-white/20`]
34
34
  ]
35
35
 
36
36
  export { shortcuts }
@@ -6,7 +6,7 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
6
6
  /^q-btn$/,
7
7
  ([, c], { theme }) =>
8
8
  theme.quasar?.components?.['q-btn'] ??
9
- `items-stretch relative outline-0 border-0 align-middle text-[14px] leading-[1.715em] no-underline [color:inherit] bg-transparent font-medium uppercase text-center w-auto h-auto cursor-default px-[16px] py-[4px] min-h-[2.572em] [&_.q-icon]:(text-[1.715em]) [&_.q-spinner]:(text-[1.715em]) [&.disabled]:(!opacity-70) [&:before]:(content-empty block absolute left-[0] right-[0] top-[0] bottom-[0] [border-radius:inherit] [box-shadow:0_1px_5px_rgba(0,_0,_0,_0.2),_0_2px_2px_rgba(0,_0,_0,_0.14),_0_3px_1px_-2px_rgba(0,_0,_0,_0.12)])`
9
+ `font-medium items-stretch relative outline-0 border-0 align-middle text-[14px] leading-[1.715em] no-underline [color:inherit] bg-transparent font-medium uppercase text-center w-auto h-auto cursor-default px-[16px] py-[4px] min-h-[2.572em] [&_.q-icon]:(text-[1.715em]) [&_.q-spinner]:(text-[1.715em]) [&.disabled]:(!opacity-70) [&:before]:(content-empty block absolute left-[0] right-[0] top-[0] bottom-[0] [border-radius:inherit] [box-shadow:0_1px_5px_rgba(0,_0,_0,_0.2),_0_2px_2px_rgba(0,_0,_0,_0.14),_0_3px_1px_-2px_rgba(0,_0,_0,_0.12)])`
10
10
  // inline-flex flex-col
11
11
  ],
12
12
 
@@ -71,14 +71,16 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
71
71
  /^q-btn--fab$/,
72
72
  ([, c], { theme }) =>
73
73
  theme.quasar?.components?.['q-btn--fab'] ??
74
- `[&_.q-icon]:(text-[24px]) p-[16px] min-h-[56px] min-w-[56px] [&_.q-icon]:(m-auto)`
74
+ `[&_.q-icon]:(text-[24px]) p-[16px] [&_.q-icon]:(m-auto) pb-0`
75
+ // min-h-[56px] min-w-[56px]
75
76
  ],
76
77
 
77
78
  [
78
79
  /^q-btn--fab-mini$/,
79
80
  ([, c], { theme }) =>
80
81
  theme.quasar?.components?.['q-btn--fab-mini'] ??
81
- `[&_.q-icon]:(text-[24px]) p-[8px] min-h-[40px] min-w-[40px]`
82
+ `[&_.q-icon]:(text-[24px]) p-[8px] pb-0`
83
+ // min-h-[40px] min-w-[40px]
82
84
  ],
83
85
 
84
86
  [/^q-btn__content$/, ([, c], { theme }) => `[transition:opacity_0.3s] z-0`],
@@ -6,21 +6,29 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
6
6
  /^q-card$/,
7
7
  ([, c], { theme }) =>
8
8
  theme.quasar?.components?.['q-card'] ??
9
- `[box-shadow:0_1px_5px_rgba(0,_0,_0,_0.2),_0_2px_2px_rgba(0,_0,_0,_0.14),_0_3px_1px_-2px_rgba(0,_0,_0,_0.12)] rounded-[4px] align-top bg-[#fff] relative [&_>_div:not(.q--avoid-card-border)]:(rounded-tl-none rounded-tr-none rounded-bl-none rounded-br-none) [&_>_img:not(.q--avoid-card-border)]:(rounded-tl-none rounded-tr-none rounded-bl-none rounded-br-none) [&_>_div:nth-child(1_of_:not(.q--avoid-card-border))]:([border-top:0] [border-top-left-radius:inherit] [border-top-right-radius:inherit]) [&_>_img:nth-child(1_of_:not(.q--avoid-card-border))]:([border-top:0] [border-top-left-radius:inherit] [border-top-right-radius:inherit]) [&_>_div:nth-last-child(1_of_:not(.q--avoid-card-border))]:([border-bottom:0] [border-bottom-left-radius:inherit] [border-bottom-right-radius:inherit]) [&_>_img:nth-last-child(1_of_:not(.q--avoid-card-border))]:([border-bottom:0] [border-bottom-left-radius:inherit] [border-bottom-right-radius:inherit]) [&_>_div:not(.q--avoid-card-border)]:([border-left:0] [border-right:0] [box-shadow:none]) [&_>_img]:(block w-full max-w-full border-[0])`
9
+ `shadow-[0_1px_5px_rgba(0,_0,_0,_0.2),_0_2px_2px_rgba(0,_0,_0,_0.14),_0_3px_1px_-2px_rgba(0,_0,_0,_0.12)] rounded-[4px] align-top bg-[#fff] relative
10
+ [&_>_div:not(.q--avoid-card-border)]:(rounded-tl-none rounded-tr-none rounded-bl-none rounded-br-none)
11
+ [&_>_img:not(.q--avoid-card-border)]:(rounded-tl-none rounded-tr-none rounded-bl-none rounded-br-none)
12
+ [&_>_div:nth-child(1_of_:not(.q--avoid-card-border))]:([border-top:0] [border-top-left-radius:inherit] [border-top-right-radius:inherit])
13
+ [&_>_img:nth-child(1_of_:not(.q--avoid-card-border))]:([border-top:0] [border-top-left-radius:inherit] [border-top-right-radius:inherit])
14
+ [&_>_div:nth-last-child(1_of_:not(.q--avoid-card-border))]:([border-bottom:0] [border-bottom-left-radius:inherit] [border-bottom-right-radius:inherit])
15
+ [&_>_img:nth-last-child(1_of_:not(.q--avoid-card-border))]:([border-bottom:0] [border-bottom-left-radius:inherit] [border-bottom-right-radius:inherit])
16
+ [&_>_div:not(.q--avoid-card-border)]:([border-left:0] [border-right:0] shadow-none)
17
+ [&_>_img]:(block w-full max-w-full border-[0])`
10
18
  ],
11
19
 
12
20
  [
13
21
  /^q-card--bordered$/,
14
22
  ([, c], { theme }) =>
15
23
  theme.quasar?.components?.['q-card--bordered'] ??
16
- `border-[1px] border-solid border-[rgba(0,0,0,0.12)]`
24
+ `border-1px border-solid border-black/12`
17
25
  ],
18
26
 
19
27
  [
20
28
  /^q-card--dark$/,
21
29
  ([, c], { theme }) =>
22
30
  theme.quasar?.components?.['q-card--dark'] ??
23
- `border-[rgba(255,_255,_255,_0.28)] [box-shadow:0_1px_5px_rgba(255,_255,_255,_0.2),_0_2px_2px_rgba(255,_255,_255,_0.14),_0_3px_1px_-2px_rgba(255,_255,_255,_0.12)]`
31
+ `border-white/28 shadow-[0_1px_5px_rgba(255,_255,_255,_0.2),_0_2px_2px_rgba(255,_255,_255,_0.14),_0_3px_1px_-2px_rgba(255,_255,_255,_0.12)]`
24
32
  ],
25
33
 
26
34
  [/^q-card__section$/, ([, c], { theme }) => `relative`],
@@ -31,7 +39,7 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
31
39
  /^q-card__section--horiz$/,
32
40
  ([, c], { theme }) =>
33
41
  theme.quasar?.components?.['q-card__section--horiz'] ??
34
- `[&_>_div:not(.q--avoid-card-border)]:(rounded-tl-none rounded-bl-none rounded-tr-none rounded-br-none) [&_>_img:not(.q--avoid-card-border)]:(rounded-tl-none rounded-bl-none rounded-tr-none rounded-br-none) [&_>_div:nth-child(1_of_:not(.q--avoid-card-border))]:([border-top-left-radius:inherit] [border-bottom-left-radius:inherit]) [&_>_img:nth-child(1_of_:not(.q--avoid-card-border))]:([border-top-left-radius:inherit] [border-bottom-left-radius:inherit]) [&_>_div:nth-last-child(1_of_:not(.q--avoid-card-border))]:([border-top-right-radius:inherit] [border-bottom-right-radius:inherit]) [&_>_img:nth-last-child(1_of_:not(.q--avoid-card-border))]:([border-top-right-radius:inherit] [border-bottom-right-radius:inherit]) [&_>_div:not(.q--avoid-card-border)]:([border-top:0] [border-bottom:0] [box-shadow:none])`
42
+ `[&_>_div:not(.q--avoid-card-border)]:(rounded-tl-none rounded-bl-none rounded-tr-none rounded-br-none) [&_>_img:not(.q--avoid-card-border)]:(rounded-tl-none rounded-bl-none rounded-tr-none rounded-br-none) [&_>_div:nth-child(1_of_:not(.q--avoid-card-border))]:([border-top-left-radius:inherit] [border-bottom-left-radius:inherit]) [&_>_img:nth-child(1_of_:not(.q--avoid-card-border))]:([border-top-left-radius:inherit] [border-bottom-left-radius:inherit]) [&_>_div:nth-last-child(1_of_:not(.q--avoid-card-border))]:([border-top-right-radius:inherit] [border-bottom-right-radius:inherit]) [&_>_img:nth-last-child(1_of_:not(.q--avoid-card-border))]:([border-top-right-radius:inherit] [border-bottom-right-radius:inherit]) [&_>_div:not(.q--avoid-card-border)]:([border-top:0] [border-bottom:0] shadow-none)`
35
43
  ],
36
44
 
37
45
  [
@@ -38,7 +38,8 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
38
38
  /^q-message-text--received$/,
39
39
  ([, c], { theme }) =>
40
40
  theme.quasar?.components?.['q-message-text--received'] ??
41
- `text-[#81c784] rounded-tl-[4px] rounded-br-[4px] rounded-tr-[4px] rounded-bl-[0] [&:last-child:before]:(right-full [border-right:0_solid_transparent] [border-left:8px_solid_transparent] [border-bottom:8px_solid_currentColor])`
41
+ `text-[#81c784] rounded-tl-[4px] rounded-br-[4px] rounded-tr-[4px] rounded-bl-[0]
42
+ [&:last-child:before]:(right-full [border-right:0_solid_transparent] [border-left:8px_solid_transparent] [border-bottom:8px_solid_currentColor])`
42
43
  ],
43
44
 
44
45
  [/^q-message-text-content--received$/, ([, c], { theme }) => `text-[#000]`],
@@ -62,7 +63,11 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
62
63
  /^q-message-text$/,
63
64
  ([, c], { theme }) =>
64
65
  theme.quasar?.components?.['q-message-text'] ??
65
- `bg-current p-[8px] leading-[1.2] relative [&_+_.q-message-text]:(mt-[3px]) [&:last-child]:(min-h-[48px]) [&:last-child_.q-message-stamp]:(block) [&:last-child:before]:(content-empty absolute bottom-0 w-[0] h-[0])`
66
+ `bg-current p-[8px] leading-[1.2] relative
67
+ [&_+_.q-message-text]:(mt-[3px])
68
+ [&:last-child]:(min-h-[48px])
69
+ [&:last-child_.q-message-stamp]:(block)
70
+ [&:last-child:before]:(content-empty absolute bottom-0 w-[0] h-[0])`
66
71
  ]
67
72
  ]
68
73
 
@@ -28,7 +28,12 @@ body.desktop .q-checkbox--dense:not(.disabled):focus .q-checkbox__inner:before,
28
28
  ]
29
29
 
30
30
  const shortcuts: UserShortcuts<QuasarTheme> = [
31
- [/^q-checkbox$/, ([, c], { theme }) => `align-middle`],
31
+ [
32
+ /^q-checkbox$/,
33
+ ([, c], { theme }) =>
34
+ theme.quasar?.components?.['q-checkbox'] ??
35
+ `align-middle [&.disabled]:(!opacity-75)`
36
+ ],
32
37
 
33
38
  [/^q-checkbox__native$/, ([, c], { theme }) => `w-px h-px`],
34
39
 
@@ -49,7 +54,7 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
49
54
  /^q-checkbox__truthy$/,
50
55
  ([, c], { theme }) =>
51
56
  theme.quasar?.components?.['q-checkbox__truthy'] ??
52
- `stroke-current stroke-[3.12px]`
57
+ `stroke-current stroke-[3.12px] stroke-offset-[29.78334] stroke-dash-[29.78334]`
53
58
  ],
54
59
 
55
60
  [
@@ -63,14 +68,16 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
63
68
  /^q-checkbox__inner$/,
64
69
  ([, c], { theme }) =>
65
70
  theme.quasar?.components?.['q-checkbox__inner'] ??
66
- `text-[40px] w-[1em] min-w-[1em] h-[1em] outline-0 rounded-[50%] text-[rgba(0,_0,_0,_0.54)]`
71
+ `text-[40px] w-[1em] min-w-[1em] h-[1em] outline-[0] rounded-[50%] layer-dismiss:text-[rgba(0,_0,_0,_0.54)]`
67
72
  ],
68
73
 
69
74
  [
70
75
  /^q-checkbox__inner--truthy$/,
71
76
  ([, c], { theme }) =>
72
77
  theme.quasar?.components?.['q-checkbox__inner--truthy'] ??
73
- `text-primary [&_.q-checkbox\\_\\_bg]:(bg-current) [&_path]:([transition:stroke-dashoffset_0.18s_cubic-bezier(0.4,_0,_0.6,_1)_0ms])`
78
+ `text-primary
79
+ [&_.q-checkbox\\_\\_bg]:(bg-current)
80
+ [&_path]:(stroke-offset-none [transition:stroke-dashoffset_0.18s_cubic-bezier(0.4,_0,_0.6,_1)_0ms])`
74
81
  ],
75
82
 
76
83
  [
@@ -84,14 +91,20 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
84
91
  /^q-checkbox--dark$/,
85
92
  ([, c], { theme }) =>
86
93
  theme.quasar?.components?.['q-checkbox--dark'] ??
87
- `[&_.q-checkbox\\_\\_inner]:(text-[rgba(255,_255,_255,_0.7)]) [&_.q-checkbox\\_\\_inner:before]:(!opacity-[0.32]) [&_.q-checkbox\\_\\_inner--truthy]:(text-primary) [&_.q-checkbox\\_\\_inner--indet]:(text-primary)`
94
+ `[&_.q-checkbox\\_\\_inner]:(layer-dismiss:text-[rgba(255,_255,_255,_0.7)])
95
+ [&_.q-checkbox\\_\\_inner:before]:(!opacity-[0.32])
96
+ [&_.q-checkbox\\_\\_inner--truthy]:(layer-dismiss:text-primary)
97
+ [&_.q-checkbox\\_\\_inner--indet]:(layer-dismiss:text-primary)`
88
98
  ],
89
99
 
90
100
  [
91
101
  /^q-checkbox--dense$/,
92
102
  ([, c], { theme }) =>
93
103
  theme.quasar?.components?.['q-checkbox--dense'] ??
94
- `[&_.q-checkbox\\_\\_inner]:(w-[0.5em] min-w-[0.5em] h-[0.5em]) [&_.q-checkbox\\_\\_bg]:(left-[5%] top-[5%] w-[90%] h-[90%]) [&_.q-checkbox\\_\\_label]:(pl-[0.5em])`
104
+ `[&_.q-checkbox\\_\\_inner]:(w-[0.5em] min-w-[0.5em] h-[0.5em])
105
+ [&_.q-checkbox\\_\\_bg]:(left-[5%] top-[5%] w-[90%] h-[90%])
106
+ [&_.q-checkbox\\_\\_label]:(pl-[0.5em])
107
+ [&.reverse_.q-checkbox\\_\\_label]:(pl-0 pr-[0.5em])`
95
108
  ]
96
109
  ]
97
110
 
@@ -60,8 +60,8 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
60
60
  [
61
61
  /^q-date__view$/,
62
62
  ([, c], { theme }) =>
63
- theme.quasar?.components?.['q-date__view'] ??
64
- `h-full w-full min-h-[290px] p-[16px]`
63
+ theme.quasar?.components?.['q-date__view'] ?? `min-h-[290px] p-[16px]`
64
+ // h-full w-full
65
65
  ],
66
66
 
67
67
  [
@@ -194,7 +194,9 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
194
194
  /^q-date--landscape$/,
195
195
  ([, c], { theme }) =>
196
196
  theme.quasar?.components?.['q-date--landscape'] ??
197
- `flex-row items-stretch min-w-[420px] [&_>_div]:(flex flex-col) [&_.q-date\\_\\_content]:(h-full)`
197
+ `flex-row items-stretch min-w-[420px]
198
+ [&_>_div]:(flex flex-auto flex-col)
199
+ [&_.q-date\\_\\_content]:(h-full)`
198
200
  ],
199
201
 
200
202
  [
@@ -6,12 +6,14 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
6
6
  /^q-drawer$/,
7
7
  ([, c], { theme }) =>
8
8
  theme.quasar?.components?.['q-drawer'] ??
9
- `absolute top-[0] bottom-[0] bg-[#fff]`
9
+ `absolute top-[0] bottom-[0] bg-[#fff] z-${theme.quasar.z['side']}`
10
10
  ],
11
11
 
12
12
  [
13
13
  /^q-drawer--on-top$/,
14
- ([, c], { theme }) => theme.quasar?.components?.['q-drawer--on-top'] ?? ``
14
+ ([, c], { theme }) =>
15
+ theme.quasar?.components?.['q-drawer--on-top'] ??
16
+ `z-${theme.quasar.z['top']}`
15
17
  ],
16
18
 
17
19
  [
@@ -65,14 +67,16 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
65
67
 
66
68
  [
67
69
  /^q-drawer__backdrop$/,
68
- ([, c], { theme }) => theme.quasar?.components?.['q-drawer__backdrop'] ?? ``
70
+ ([, c], { theme }) =>
71
+ theme.quasar?.components?.['q-drawer__backdrop'] ??
72
+ `z-${theme.quasar.z['top'] - 1}`
69
73
  ],
70
74
 
71
75
  [
72
76
  /^q-drawer__opener$/,
73
77
  ([, c], { theme }) =>
74
78
  theme.quasar?.components?.['q-drawer__opener'] ??
75
- `h-full w-[15px] select-none`
79
+ `h-full w-[15px] select-none z-${theme.quasar.z['marginals'] + 1}`
76
80
  ]
77
81
  ]
78
82
 
@@ -7,8 +7,8 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
7
7
  [
8
8
  /^q-fab$/,
9
9
  ([, c], { theme }) =>
10
- theme.quasar?.components?.['q-fab'] ??
11
- `relative align-middle [&_>_.q-btn]:(w-full)`
10
+ theme.quasar?.components?.['q-fab'] ?? `relative align-middle`
11
+ // [&_>_.q-btn]:(w-full)
12
12
  ],
13
13
 
14
14
  [/^q-fab--form-rounded$/, ([, c], { theme }) => `rounded-[28px]`],
@@ -19,14 +19,14 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
19
19
  /^q-fab__icon$/,
20
20
  ([, c], { theme }) =>
21
21
  theme.quasar?.components?.['q-fab__icon'] ??
22
- `[transition:opacity_0.4s,_transform_0.4s] opacity-100 rotate-0`
22
+ `[transition:opacity_0.4s,_transform_0.4s] opacity-100 rotate-0 relative!`
23
23
  ],
24
24
 
25
25
  [
26
26
  /^q-fab__active-icon$/,
27
27
  ([, c], { theme }) =>
28
28
  theme.quasar?.components?.['q-fab__active-icon'] ??
29
- `[transition:opacity_0.4s,_transform_0.4s] opacity-0 -rotate-180`
29
+ `[transition:opacity_0.4s,_transform_0.4s] opacity-0 -rotate-180 relative! !left--20px !mr--20px`
30
30
  ],
31
31
 
32
32
  [
@@ -107,7 +107,8 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
107
107
  /^q-fab__icon-holder$/,
108
108
  ([, c], { theme }) =>
109
109
  theme.quasar?.components?.['q-fab__icon-holder'] ??
110
- `min-w-[24px] min-h-[24px] relative`
110
+ `[&:before]:(content-empty)`
111
+ // min-w-[24px] min-h-[24px] relative
111
112
  ],
112
113
 
113
114
  [