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.
- package/dist/plugins/quasar/unocss/components/QAjaxBar.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/components/QBanner.unocss.js +9 -12
- package/dist/plugins/quasar/unocss/components/QBar.unocss.js +2 -2
- package/dist/plugins/quasar/unocss/components/QBtn.unocss.js +5 -3
- package/dist/plugins/quasar/unocss/components/QCard.unocss.js +12 -4
- package/dist/plugins/quasar/unocss/components/QChatMessage.unocss.js +7 -2
- package/dist/plugins/quasar/unocss/components/QCheckbox.unocss.js +18 -6
- package/dist/plugins/quasar/unocss/components/QDate.unocss.js +5 -3
- package/dist/plugins/quasar/unocss/components/QDrawer.unocss.js +6 -4
- package/dist/plugins/quasar/unocss/components/QFab.unocss.js +6 -5
- package/dist/plugins/quasar/unocss/components/QField.unocss.js +196 -35
- package/dist/plugins/quasar/unocss/components/QFooter.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/components/QItem.unocss.js +3 -3
- package/dist/plugins/quasar/unocss/components/QMenu.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/components/QPagination.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/components/QPullToRefresh.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/components/QScrollarea.unocss.js +4 -1
- package/dist/plugins/quasar/unocss/components/QStepper.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/components/QTabPanel.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/components/QTable.unocss.js +3 -3
- package/dist/plugins/quasar/unocss/components/QToggle.unocss.js +2 -2
- package/dist/plugins/quasar/unocss/components/QTooltip.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/core/colors.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/core/flex.unocss.js +23 -14
- package/dist/plugins/quasar/unocss/core/position.unocss.js +2 -1
- package/dist/plugins/quasar/unocss/core/size.unocss.js +96 -84
- package/dist/plugins/quasar/unocss/directives/QRipple.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/index.js +107 -67
- package/dist/plugins/quasar/unocss/plugins/QLoading.unocss.js +1 -1
- package/dist/plugins/quasar/unocss/plugins/QNotify.unocss.js +20 -20
- package/dist/plugins/quasar/unocss/theme.js +9 -1
- package/dist/types/plugins/quasar/unocss/index.d.ts +2 -1
- package/dist/types/plugins/quasar/unocss/theme.d.ts +9 -1
- package/package.json +1 -1
- package/src/node/plugins/quasar/unocss/components/QAjaxBar.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/components/QBanner.unocss.ts +13 -12
- package/src/node/plugins/quasar/unocss/components/QBar.unocss.ts +2 -2
- package/src/node/plugins/quasar/unocss/components/QBtn.unocss.ts +5 -3
- package/src/node/plugins/quasar/unocss/components/QCard.unocss.ts +12 -4
- package/src/node/plugins/quasar/unocss/components/QChatMessage.unocss.ts +7 -2
- package/src/node/plugins/quasar/unocss/components/QCheckbox.unocss.ts +19 -6
- package/src/node/plugins/quasar/unocss/components/QDate.unocss.ts +5 -3
- package/src/node/plugins/quasar/unocss/components/QDrawer.unocss.ts +8 -4
- package/src/node/plugins/quasar/unocss/components/QFab.unocss.ts +6 -5
- package/src/node/plugins/quasar/unocss/components/QField.unocss.ts +196 -37
- package/src/node/plugins/quasar/unocss/components/QFooter.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/components/QItem.unocss.ts +3 -3
- package/src/node/plugins/quasar/unocss/components/QMenu.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/components/QPagination.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/components/QPullToRefresh.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/components/QScrollarea.unocss.ts +4 -1
- package/src/node/plugins/quasar/unocss/components/QStepper.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/components/QTabPanel.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/components/QTable.unocss.ts +3 -3
- package/src/node/plugins/quasar/unocss/components/QToggle.unocss.ts +2 -2
- package/src/node/plugins/quasar/unocss/components/QTooltip.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/core/colors.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/core/flex.unocss.ts +39 -17
- package/src/node/plugins/quasar/unocss/core/position.unocss.ts +3 -1
- package/src/node/plugins/quasar/unocss/core/size.unocss.ts +102 -84
- package/src/node/plugins/quasar/unocss/directives/QRipple.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/index.ts +257 -196
- package/src/node/plugins/quasar/unocss/plugins/QLoading.unocss.ts +1 -1
- package/src/node/plugins/quasar/unocss/plugins/QNotify.unocss.ts +38 -20
- package/src/node/plugins/quasar/unocss/theme.ts +18 -2
|
@@ -2,7 +2,7 @@ const shortcuts = [
|
|
|
2
2
|
[
|
|
3
3
|
/^q-loading-bar$/,
|
|
4
4
|
([, c], { theme }) => theme.quasar?.components?.['q-loading-bar'] ??
|
|
5
|
-
`fixed z
|
|
5
|
+
`fixed z-${theme.quasar.z['max']} transition-transform bg-red`
|
|
6
6
|
],
|
|
7
7
|
[/^q-loading-bar--top$/, ([, c], { theme }) => `left-0 right-0 top-0 w-full`],
|
|
8
8
|
[
|
|
@@ -1,27 +1,24 @@
|
|
|
1
1
|
const shortcuts = [
|
|
2
|
-
[
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
[
|
|
3
|
+
/^q-banner$/,
|
|
4
|
+
([, c], { theme }) => theme.quasar?.components?.['q-banner'] ??
|
|
5
|
+
`min-h-[54px] px-[16px] py-[8px] bg-[#fff]`
|
|
6
|
+
],
|
|
7
|
+
[/^q-banner--top-padding$/, ([, c], { theme }) => `pt-[14px]`],
|
|
5
8
|
[
|
|
6
9
|
/^q-banner__avatar$/,
|
|
7
10
|
([, c], { theme }) => theme.quasar?.components?.['q-banner__avatar'] ??
|
|
8
|
-
|
|
9
|
-
[&.q-icon]:(text-40px)
|
|
10
|
-
[&:not(:empty)+.q-banner\\_\\_content]:(pl-16px)`
|
|
11
|
+
`!min-w-[1px] [&_>_.q-avatar]:(text-[46px]) [&_>_.q-icon]:(text-[40px]) [&:not(:empty)_+_.q-banner\\_\\_content]:(pl-[16px])`
|
|
11
12
|
],
|
|
12
13
|
[
|
|
13
14
|
/^q-banner__actions$/,
|
|
14
15
|
([, c], { theme }) => theme.quasar?.components?.['q-banner__actions'] ??
|
|
15
|
-
`[&.col-auto]:(pl-16px)
|
|
16
|
-
[&.col-all_.q.btn-item]:(mt-4px mb-0 ml-4px mr-0)`
|
|
16
|
+
`[&.col-auto]:(pl-[16px]) [&.col-all_.q-btn-item]:(mt-[4px] mr-[0] mb-[0] ml-[4px])`
|
|
17
17
|
],
|
|
18
18
|
[
|
|
19
19
|
/^q-banner--dense$/,
|
|
20
20
|
([, c], { theme }) => theme.quasar?.components?.['q-banner--dense'] ??
|
|
21
|
-
`min-h-32px p-8px
|
|
22
|
-
[&_.q-banner\\_\\_avatar>.q-avatar,.q-banner--dense_.q-banner\\_\\_avatar>.q-icon]:(text-28px)
|
|
23
|
-
[&_.q-banner\\_\\_avatar:not(:empty)+.q-banner\\_\\_content]:(pl-8px)
|
|
24
|
-
[&_.q-banner\\_\\_actions.col-auto]:(pl-8px)`
|
|
21
|
+
`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])`
|
|
25
22
|
]
|
|
26
23
|
];
|
|
27
24
|
export { shortcuts };
|
|
@@ -2,7 +2,7 @@ const shortcuts = [
|
|
|
2
2
|
[
|
|
3
3
|
/^q-bar$/,
|
|
4
4
|
([, c], { theme }) => theme.quasar?.components?.['q-bar'] ??
|
|
5
|
-
`bg-black
|
|
5
|
+
`bg-black/20
|
|
6
6
|
[&>.q-icon]:(ml-2px)
|
|
7
7
|
[&>div]:(ml-8px)
|
|
8
8
|
[&>div+.q-icon]:(ml-8px)
|
|
@@ -24,6 +24,6 @@ const shortcuts = [
|
|
|
24
24
|
`px-8px py-0 h-24px text-14px
|
|
25
25
|
[&_.q-btn]:(text-8px)`
|
|
26
26
|
],
|
|
27
|
-
[/^q-bar--dark$/, ([, c], { theme }) => `bg-white
|
|
27
|
+
[/^q-bar--dark$/, ([, c], { theme }) => `bg-white/20`]
|
|
28
28
|
];
|
|
29
29
|
export { shortcuts };
|
|
@@ -2,7 +2,7 @@ const shortcuts = [
|
|
|
2
2
|
[
|
|
3
3
|
/^q-btn$/,
|
|
4
4
|
([, c], { theme }) => theme.quasar?.components?.['q-btn'] ??
|
|
5
|
-
`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)])`
|
|
5
|
+
`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)])`
|
|
6
6
|
// inline-flex flex-col
|
|
7
7
|
],
|
|
8
8
|
[
|
|
@@ -47,12 +47,14 @@ const shortcuts = [
|
|
|
47
47
|
[
|
|
48
48
|
/^q-btn--fab$/,
|
|
49
49
|
([, c], { theme }) => theme.quasar?.components?.['q-btn--fab'] ??
|
|
50
|
-
`[&_.q-icon]:(text-[24px]) p-[16px]
|
|
50
|
+
`[&_.q-icon]:(text-[24px]) p-[16px] [&_.q-icon]:(m-auto) pb-0`
|
|
51
|
+
// min-h-[56px] min-w-[56px]
|
|
51
52
|
],
|
|
52
53
|
[
|
|
53
54
|
/^q-btn--fab-mini$/,
|
|
54
55
|
([, c], { theme }) => theme.quasar?.components?.['q-btn--fab-mini'] ??
|
|
55
|
-
`[&_.q-icon]:(text-[24px]) p-[8px]
|
|
56
|
+
`[&_.q-icon]:(text-[24px]) p-[8px] pb-0`
|
|
57
|
+
// min-h-[40px] min-w-[40px]
|
|
56
58
|
],
|
|
57
59
|
[/^q-btn__content$/, ([, c], { theme }) => `[transition:opacity_0.3s] z-0`],
|
|
58
60
|
[
|
|
@@ -2,24 +2,32 @@ const shortcuts = [
|
|
|
2
2
|
[
|
|
3
3
|
/^q-card$/,
|
|
4
4
|
([, c], { theme }) => theme.quasar?.components?.['q-card'] ??
|
|
5
|
-
`[
|
|
5
|
+
`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
|
|
6
|
+
[&_>_div:not(.q--avoid-card-border)]:(rounded-tl-none rounded-tr-none rounded-bl-none rounded-br-none)
|
|
7
|
+
[&_>_img:not(.q--avoid-card-border)]:(rounded-tl-none rounded-tr-none rounded-bl-none rounded-br-none)
|
|
8
|
+
[&_>_div:nth-child(1_of_:not(.q--avoid-card-border))]:([border-top:0] [border-top-left-radius:inherit] [border-top-right-radius:inherit])
|
|
9
|
+
[&_>_img:nth-child(1_of_:not(.q--avoid-card-border))]:([border-top:0] [border-top-left-radius:inherit] [border-top-right-radius:inherit])
|
|
10
|
+
[&_>_div:nth-last-child(1_of_:not(.q--avoid-card-border))]:([border-bottom:0] [border-bottom-left-radius:inherit] [border-bottom-right-radius:inherit])
|
|
11
|
+
[&_>_img:nth-last-child(1_of_:not(.q--avoid-card-border))]:([border-bottom:0] [border-bottom-left-radius:inherit] [border-bottom-right-radius:inherit])
|
|
12
|
+
[&_>_div:not(.q--avoid-card-border)]:([border-left:0] [border-right:0] shadow-none)
|
|
13
|
+
[&_>_img]:(block w-full max-w-full border-[0])`
|
|
6
14
|
],
|
|
7
15
|
[
|
|
8
16
|
/^q-card--bordered$/,
|
|
9
17
|
([, c], { theme }) => theme.quasar?.components?.['q-card--bordered'] ??
|
|
10
|
-
`border-
|
|
18
|
+
`border-1px border-solid border-black/12`
|
|
11
19
|
],
|
|
12
20
|
[
|
|
13
21
|
/^q-card--dark$/,
|
|
14
22
|
([, c], { theme }) => theme.quasar?.components?.['q-card--dark'] ??
|
|
15
|
-
`border-
|
|
23
|
+
`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)]`
|
|
16
24
|
],
|
|
17
25
|
[/^q-card__section$/, ([, c], { theme }) => `relative`],
|
|
18
26
|
[/^q-card__section--vert$/, ([, c], { theme }) => `p-[16px]`],
|
|
19
27
|
[
|
|
20
28
|
/^q-card__section--horiz$/,
|
|
21
29
|
([, c], { theme }) => theme.quasar?.components?.['q-card__section--horiz'] ??
|
|
22
|
-
`[&_>_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]
|
|
30
|
+
`[&_>_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)`
|
|
23
31
|
],
|
|
24
32
|
[
|
|
25
33
|
/^q-card__actions$/,
|
|
@@ -24,7 +24,8 @@ const shortcuts = [
|
|
|
24
24
|
[
|
|
25
25
|
/^q-message-text--received$/,
|
|
26
26
|
([, c], { theme }) => theme.quasar?.components?.['q-message-text--received'] ??
|
|
27
|
-
`text-[#81c784] rounded-tl-[4px] rounded-br-[4px] rounded-tr-[4px] rounded-bl-[0]
|
|
27
|
+
`text-[#81c784] rounded-tl-[4px] rounded-br-[4px] rounded-tr-[4px] rounded-bl-[0]
|
|
28
|
+
[&:last-child:before]:(right-full [border-right:0_solid_transparent] [border-left:8px_solid_transparent] [border-bottom:8px_solid_currentColor])`
|
|
28
29
|
],
|
|
29
30
|
[/^q-message-text-content--received$/, ([, c], { theme }) => `text-[#000]`],
|
|
30
31
|
[/^q-message-name--sent$/, ([, c], { theme }) => `text-right`],
|
|
@@ -39,7 +40,11 @@ const shortcuts = [
|
|
|
39
40
|
[
|
|
40
41
|
/^q-message-text$/,
|
|
41
42
|
([, c], { theme }) => theme.quasar?.components?.['q-message-text'] ??
|
|
42
|
-
`bg-current p-[8px] leading-[1.2] relative
|
|
43
|
+
`bg-current p-[8px] leading-[1.2] relative
|
|
44
|
+
[&_+_.q-message-text]:(mt-[3px])
|
|
45
|
+
[&:last-child]:(min-h-[48px])
|
|
46
|
+
[&:last-child_.q-message-stamp]:(block)
|
|
47
|
+
[&:last-child:before]:(content-empty absolute bottom-0 w-[0] h-[0])`
|
|
43
48
|
]
|
|
44
49
|
];
|
|
45
50
|
export { shortcuts };
|
|
@@ -24,7 +24,11 @@ body.desktop .q-checkbox--dense:not(.disabled):focus .q-checkbox__inner:before,
|
|
|
24
24
|
}
|
|
25
25
|
];
|
|
26
26
|
const shortcuts = [
|
|
27
|
-
[
|
|
27
|
+
[
|
|
28
|
+
/^q-checkbox$/,
|
|
29
|
+
([, c], { theme }) => theme.quasar?.components?.['q-checkbox'] ??
|
|
30
|
+
`align-middle [&.disabled]:(!opacity-75)`
|
|
31
|
+
],
|
|
28
32
|
[/^q-checkbox__native$/, ([, c], { theme }) => `w-px h-px`],
|
|
29
33
|
[
|
|
30
34
|
/^q-checkbox__bg$/,
|
|
@@ -37,7 +41,7 @@ const shortcuts = [
|
|
|
37
41
|
[
|
|
38
42
|
/^q-checkbox__truthy$/,
|
|
39
43
|
([, c], { theme }) => theme.quasar?.components?.['q-checkbox__truthy'] ??
|
|
40
|
-
`stroke-current stroke-[3.12px]`
|
|
44
|
+
`stroke-current stroke-[3.12px] stroke-offset-[29.78334] stroke-dash-[29.78334]`
|
|
41
45
|
],
|
|
42
46
|
[
|
|
43
47
|
/^q-checkbox__indet$/,
|
|
@@ -47,12 +51,14 @@ const shortcuts = [
|
|
|
47
51
|
[
|
|
48
52
|
/^q-checkbox__inner$/,
|
|
49
53
|
([, c], { theme }) => theme.quasar?.components?.['q-checkbox__inner'] ??
|
|
50
|
-
`text-[40px] w-[1em] min-w-[1em] h-[1em] outline-0 rounded-[50%] text-[rgba(0,_0,_0,_0.54)]`
|
|
54
|
+
`text-[40px] w-[1em] min-w-[1em] h-[1em] outline-[0] rounded-[50%] layer-dismiss:text-[rgba(0,_0,_0,_0.54)]`
|
|
51
55
|
],
|
|
52
56
|
[
|
|
53
57
|
/^q-checkbox__inner--truthy$/,
|
|
54
58
|
([, c], { theme }) => theme.quasar?.components?.['q-checkbox__inner--truthy'] ??
|
|
55
|
-
`text-primary
|
|
59
|
+
`text-primary
|
|
60
|
+
[&_.q-checkbox\\_\\_bg]:(bg-current)
|
|
61
|
+
[&_path]:(stroke-offset-none [transition:stroke-dashoffset_0.18s_cubic-bezier(0.4,_0,_0.6,_1)_0ms])`
|
|
56
62
|
],
|
|
57
63
|
[
|
|
58
64
|
/^q-checkbox__inner--indet$/,
|
|
@@ -62,12 +68,18 @@ const shortcuts = [
|
|
|
62
68
|
[
|
|
63
69
|
/^q-checkbox--dark$/,
|
|
64
70
|
([, c], { theme }) => theme.quasar?.components?.['q-checkbox--dark'] ??
|
|
65
|
-
`[&_.q-checkbox\\_\\_inner]:(text-[rgba(255,_255,_255,_0.7)])
|
|
71
|
+
`[&_.q-checkbox\\_\\_inner]:(layer-dismiss:text-[rgba(255,_255,_255,_0.7)])
|
|
72
|
+
[&_.q-checkbox\\_\\_inner:before]:(!opacity-[0.32])
|
|
73
|
+
[&_.q-checkbox\\_\\_inner--truthy]:(layer-dismiss:text-primary)
|
|
74
|
+
[&_.q-checkbox\\_\\_inner--indet]:(layer-dismiss:text-primary)`
|
|
66
75
|
],
|
|
67
76
|
[
|
|
68
77
|
/^q-checkbox--dense$/,
|
|
69
78
|
([, c], { theme }) => theme.quasar?.components?.['q-checkbox--dense'] ??
|
|
70
|
-
`[&_.q-checkbox\\_\\_inner]:(w-[0.5em] min-w-[0.5em] h-[0.5em])
|
|
79
|
+
`[&_.q-checkbox\\_\\_inner]:(w-[0.5em] min-w-[0.5em] h-[0.5em])
|
|
80
|
+
[&_.q-checkbox\\_\\_bg]:(left-[5%] top-[5%] w-[90%] h-[90%])
|
|
81
|
+
[&_.q-checkbox\\_\\_label]:(pl-[0.5em])
|
|
82
|
+
[&.reverse_.q-checkbox\\_\\_label]:(pl-0 pr-[0.5em])`
|
|
71
83
|
]
|
|
72
84
|
];
|
|
73
85
|
export { preflights, shortcuts };
|
|
@@ -39,8 +39,8 @@ const shortcuts = [
|
|
|
39
39
|
],
|
|
40
40
|
[
|
|
41
41
|
/^q-date__view$/,
|
|
42
|
-
([, c], { theme }) => theme.quasar?.components?.['q-date__view'] ??
|
|
43
|
-
|
|
42
|
+
([, c], { theme }) => theme.quasar?.components?.['q-date__view'] ?? `min-h-[290px] p-[16px]`
|
|
43
|
+
// h-full w-full
|
|
44
44
|
],
|
|
45
45
|
[
|
|
46
46
|
/^q-date__navigation$/,
|
|
@@ -132,7 +132,9 @@ const shortcuts = [
|
|
|
132
132
|
[
|
|
133
133
|
/^q-date--landscape$/,
|
|
134
134
|
([, c], { theme }) => theme.quasar?.components?.['q-date--landscape'] ??
|
|
135
|
-
`flex-row items-stretch min-w-[420px]
|
|
135
|
+
`flex-row items-stretch min-w-[420px]
|
|
136
|
+
[&_>_div]:(flex flex-auto flex-col)
|
|
137
|
+
[&_.q-date\\_\\_content]:(h-full)`
|
|
136
138
|
],
|
|
137
139
|
[
|
|
138
140
|
/^q-date--landscape-standard$/,
|
|
@@ -2,11 +2,12 @@ const shortcuts = [
|
|
|
2
2
|
[
|
|
3
3
|
/^q-drawer$/,
|
|
4
4
|
([, c], { theme }) => theme.quasar?.components?.['q-drawer'] ??
|
|
5
|
-
`absolute top-[0] bottom-[0] bg-[#fff]`
|
|
5
|
+
`absolute top-[0] bottom-[0] bg-[#fff] z-${theme.quasar.z['side']}`
|
|
6
6
|
],
|
|
7
7
|
[
|
|
8
8
|
/^q-drawer--on-top$/,
|
|
9
|
-
([, c], { theme }) => theme.quasar?.components?.['q-drawer--on-top'] ??
|
|
9
|
+
([, c], { theme }) => theme.quasar?.components?.['q-drawer--on-top'] ??
|
|
10
|
+
`z-${theme.quasar.z['top']}`
|
|
10
11
|
],
|
|
11
12
|
[
|
|
12
13
|
/^q-drawer--left$/,
|
|
@@ -45,12 +46,13 @@ const shortcuts = [
|
|
|
45
46
|
],
|
|
46
47
|
[
|
|
47
48
|
/^q-drawer__backdrop$/,
|
|
48
|
-
([, c], { theme }) => theme.quasar?.components?.['q-drawer__backdrop'] ??
|
|
49
|
+
([, c], { theme }) => theme.quasar?.components?.['q-drawer__backdrop'] ??
|
|
50
|
+
`z-${theme.quasar.z['top'] - 1}`
|
|
49
51
|
],
|
|
50
52
|
[
|
|
51
53
|
/^q-drawer__opener$/,
|
|
52
54
|
([, c], { theme }) => theme.quasar?.components?.['q-drawer__opener'] ??
|
|
53
|
-
`h-full w-[15px] select-none`
|
|
55
|
+
`h-full w-[15px] select-none z-${theme.quasar.z['marginals'] + 1}`
|
|
54
56
|
]
|
|
55
57
|
];
|
|
56
58
|
export { shortcuts };
|
|
@@ -2,20 +2,20 @@ const shortcuts = [
|
|
|
2
2
|
[/^z-fab$/, ([, c], { theme }) => ``],
|
|
3
3
|
[
|
|
4
4
|
/^q-fab$/,
|
|
5
|
-
([, c], { theme }) => theme.quasar?.components?.['q-fab'] ??
|
|
6
|
-
|
|
5
|
+
([, c], { theme }) => theme.quasar?.components?.['q-fab'] ?? `relative align-middle`
|
|
6
|
+
// [&_>_.q-btn]:(w-full)
|
|
7
7
|
],
|
|
8
8
|
[/^q-fab--form-rounded$/, ([, c], { theme }) => `rounded-[28px]`],
|
|
9
9
|
[/^q-fab--form-square$/, ([, c], { theme }) => `rounded-[4px]`],
|
|
10
10
|
[
|
|
11
11
|
/^q-fab__icon$/,
|
|
12
12
|
([, c], { theme }) => theme.quasar?.components?.['q-fab__icon'] ??
|
|
13
|
-
`[transition:opacity_0.4s,_transform_0.4s] opacity-100 rotate-0
|
|
13
|
+
`[transition:opacity_0.4s,_transform_0.4s] opacity-100 rotate-0 relative!`
|
|
14
14
|
],
|
|
15
15
|
[
|
|
16
16
|
/^q-fab__active-icon$/,
|
|
17
17
|
([, c], { theme }) => theme.quasar?.components?.['q-fab__active-icon'] ??
|
|
18
|
-
`[transition:opacity_0.4s,_transform_0.4s] opacity-0 -rotate-180`
|
|
18
|
+
`[transition:opacity_0.4s,_transform_0.4s] opacity-0 -rotate-180 relative! !left--20px !mr--20px`
|
|
19
19
|
],
|
|
20
20
|
[
|
|
21
21
|
/^q-fab__label--external$/,
|
|
@@ -72,7 +72,8 @@ const shortcuts = [
|
|
|
72
72
|
[
|
|
73
73
|
/^q-fab__icon-holder$/,
|
|
74
74
|
([, c], { theme }) => theme.quasar?.components?.['q-fab__icon-holder'] ??
|
|
75
|
-
`
|
|
75
|
+
`[&:before]:(content-empty)`
|
|
76
|
+
// min-w-[24px] min-h-[24px] relative
|
|
76
77
|
],
|
|
77
78
|
[
|
|
78
79
|
/^q-fab__icon-holder--opened$/,
|