@quidgest/ui 0.15.0 → 0.15.2
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/ui.css +40 -71
- package/dist/ui.esm.js +2578 -2568
- package/dist/ui.js +4 -4
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +42 -41
- package/dist/ui.scss +13 -31
- package/esm/components/QOverlay/QOverlay.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.vue.js +95 -90
- package/esm/components/QOverlay/index.d.ts +3 -0
- package/esm/components/QOverlay/index.d.ts.map +1 -1
- package/esm/components/QOverlay/types.d.ts +4 -0
- package/esm/components/QOverlay/types.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordFieldMeterOverlay.vue.js +14 -13
- package/esm/components/QPopover/QPopover.d.ts +3 -1
- package/esm/components/QPopover/QPopover.d.ts.map +1 -1
- package/esm/components/QPopover/QPopover.vue.js +44 -32
- package/esm/components/QPopover/index.d.ts +6 -4
- package/esm/components/QPopover/index.d.ts.map +1 -1
- package/esm/components/QPopover/types.d.ts +1 -1
- package/esm/components/QPopover/types.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +27 -27
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! modern-normalize
|
|
1
|
+
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
|
2
2
|
/*
|
|
3
3
|
Document
|
|
4
4
|
========
|
|
@@ -12,35 +12,30 @@ Use a better box model (opinionated).
|
|
|
12
12
|
box-sizing: border-box;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
+
/**
|
|
16
|
+
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
|
17
|
+
2. Correct the line height in all browsers.
|
|
18
|
+
3. Prevent adjustments of font size after orientation changes in iOS.
|
|
19
|
+
4. Use a more readable tab size (opinionated).
|
|
20
|
+
*/
|
|
15
21
|
html {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
tab-size: 4; /* 3 */
|
|
22
|
+
font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; /* 1 */
|
|
23
|
+
line-height: 1.15; /* 2 */
|
|
24
|
+
-webkit-text-size-adjust: 100%; /* 3 */
|
|
25
|
+
-moz-tab-size: 4;
|
|
26
|
+
-o-tab-size: 4;
|
|
27
|
+
tab-size: 4; /* 4 */
|
|
23
28
|
}
|
|
24
29
|
|
|
25
30
|
/*
|
|
26
31
|
Sections
|
|
27
32
|
========
|
|
28
33
|
*/
|
|
29
|
-
body {
|
|
30
|
-
margin: 0; /* Remove the margin in all browsers. */
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
/*
|
|
34
|
-
Grouping content
|
|
35
|
-
================
|
|
36
|
-
*/
|
|
37
34
|
/**
|
|
38
|
-
|
|
39
|
-
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
35
|
+
Remove the margin in all browsers.
|
|
40
36
|
*/
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
color: inherit; /* 2 */
|
|
37
|
+
body {
|
|
38
|
+
margin: 0;
|
|
44
39
|
}
|
|
45
40
|
|
|
46
41
|
/*
|
|
@@ -48,7 +43,7 @@ Text-level semantics
|
|
|
48
43
|
====================
|
|
49
44
|
*/
|
|
50
45
|
/**
|
|
51
|
-
Add the correct font weight in
|
|
46
|
+
Add the correct font weight in Chrome and Safari.
|
|
52
47
|
*/
|
|
53
48
|
b,
|
|
54
49
|
strong {
|
|
@@ -98,12 +93,10 @@ Tabular data
|
|
|
98
93
|
============
|
|
99
94
|
*/
|
|
100
95
|
/**
|
|
101
|
-
|
|
102
|
-
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
96
|
+
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
103
97
|
*/
|
|
104
98
|
table {
|
|
105
|
-
|
|
106
|
-
border-color: inherit; /* 2 */
|
|
99
|
+
border-color: currentcolor;
|
|
107
100
|
}
|
|
108
101
|
|
|
109
102
|
/*
|
|
@@ -125,14 +118,6 @@ textarea {
|
|
|
125
118
|
margin: 0; /* 2 */
|
|
126
119
|
}
|
|
127
120
|
|
|
128
|
-
/**
|
|
129
|
-
Remove the inheritance of text transform in Edge and Firefox.
|
|
130
|
-
*/
|
|
131
|
-
button,
|
|
132
|
-
select {
|
|
133
|
-
text-transform: none;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
121
|
/**
|
|
137
122
|
Correct the inability to style clickable types in iOS and Safari.
|
|
138
123
|
*/
|
|
@@ -143,29 +128,6 @@ button,
|
|
|
143
128
|
-webkit-appearance: button;
|
|
144
129
|
}
|
|
145
130
|
|
|
146
|
-
/**
|
|
147
|
-
Remove the inner border and padding in Firefox.
|
|
148
|
-
*/
|
|
149
|
-
::-moz-focus-inner {
|
|
150
|
-
border-style: none;
|
|
151
|
-
padding: 0;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
/**
|
|
155
|
-
Restore the focus styles unset by the previous rule.
|
|
156
|
-
*/
|
|
157
|
-
:-moz-focusring {
|
|
158
|
-
outline: 1px dotted ButtonText;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
/**
|
|
162
|
-
Remove the additional ':invalid' styles in Firefox.
|
|
163
|
-
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
|
|
164
|
-
*/
|
|
165
|
-
:-moz-ui-invalid {
|
|
166
|
-
box-shadow: none;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
131
|
/**
|
|
170
132
|
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
|
171
133
|
*/
|
|
@@ -213,6 +175,21 @@ Remove the inner padding in Chrome and Safari on macOS.
|
|
|
213
175
|
font: inherit; /* 2 */
|
|
214
176
|
}
|
|
215
177
|
|
|
178
|
+
/*
|
|
179
|
+
Interactive
|
|
180
|
+
===========
|
|
181
|
+
*/
|
|
182
|
+
/*
|
|
183
|
+
Add the correct display in Chrome and Safari.
|
|
184
|
+
*/
|
|
185
|
+
summary {
|
|
186
|
+
display: list-item;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/*
|
|
190
|
+
Custom Extensions
|
|
191
|
+
================
|
|
192
|
+
*/
|
|
216
193
|
/**
|
|
217
194
|
Remove the default browser styling for `<input type="color">`
|
|
218
195
|
to ensure consistent appearance across different browsers.
|
|
@@ -238,17 +215,6 @@ to ensure consistent appearance across different browsers.
|
|
|
238
215
|
border: 0;
|
|
239
216
|
}
|
|
240
217
|
|
|
241
|
-
/*
|
|
242
|
-
Interactive
|
|
243
|
-
===========
|
|
244
|
-
*/
|
|
245
|
-
/*
|
|
246
|
-
Add the correct display in Chrome and Safari.
|
|
247
|
-
*/
|
|
248
|
-
summary {
|
|
249
|
-
display: list-item;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
218
|
/* global settings */
|
|
253
219
|
:root {
|
|
254
220
|
--border-radius: 0.25rem;
|
|
@@ -3047,11 +3013,10 @@ body *::-webkit-scrollbar-track {
|
|
|
3047
3013
|
|
|
3048
3014
|
.q-popover .q-overlay__content {
|
|
3049
3015
|
position: relative;
|
|
3050
|
-
z-index: 1070;
|
|
3051
3016
|
display: flex;
|
|
3052
3017
|
flex-direction: column;
|
|
3053
|
-
gap: 0.5rem;
|
|
3054
3018
|
max-width: 276px;
|
|
3019
|
+
gap: 0.5rem;
|
|
3055
3020
|
padding: 1rem;
|
|
3056
3021
|
font-size: 0.81rem;
|
|
3057
3022
|
line-height: 1.5;
|
|
@@ -3062,8 +3027,12 @@ body *::-webkit-scrollbar-track {
|
|
|
3062
3027
|
line-break: auto;
|
|
3063
3028
|
}
|
|
3064
3029
|
.q-popover__header {
|
|
3030
|
+
display: flex;
|
|
3031
|
+
align-items: center;
|
|
3032
|
+
gap: 0.25rem;
|
|
3033
|
+
}
|
|
3034
|
+
.q-popover__title {
|
|
3065
3035
|
margin: 0;
|
|
3066
|
-
border-radius: 0.25rem;
|
|
3067
3036
|
font-size: 0.9rem;
|
|
3068
3037
|
}
|
|
3069
3038
|
|