@quidgest/ui 0.5.6 → 0.5.8
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/index.d.ts +4 -4
- package/dist/ui.css +15 -18
- package/dist/ui.esm.js +347 -343
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +4 -4
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +50 -50
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +18 -30
- package/package.json +4 -6
package/dist/index.d.ts
CHANGED
|
@@ -93,9 +93,9 @@ declare interface HTMLElementWithClickOutsideEvent extends HTMLElement {
|
|
|
93
93
|
|
|
94
94
|
export declare type Icon = {
|
|
95
95
|
/**
|
|
96
|
-
* The
|
|
96
|
+
* The identifier of the icon.
|
|
97
97
|
*/
|
|
98
|
-
|
|
98
|
+
icon: string;
|
|
99
99
|
/**
|
|
100
100
|
* The type of resource.
|
|
101
101
|
*/
|
|
@@ -663,7 +663,7 @@ export declare const QIcon: DefineComponent<{
|
|
|
663
663
|
type: PropType<"img" | "svg" | "font">;
|
|
664
664
|
default: string;
|
|
665
665
|
};
|
|
666
|
-
|
|
666
|
+
icon: {
|
|
667
667
|
type: PropType<string>;
|
|
668
668
|
required: true;
|
|
669
669
|
};
|
|
@@ -676,7 +676,7 @@ export declare const QIcon: DefineComponent<{
|
|
|
676
676
|
type: PropType<"img" | "svg" | "font">;
|
|
677
677
|
default: string;
|
|
678
678
|
};
|
|
679
|
-
|
|
679
|
+
icon: {
|
|
680
680
|
type: PropType<string>;
|
|
681
681
|
required: true;
|
|
682
682
|
};
|
package/dist/ui.css
CHANGED
|
@@ -7,7 +7,9 @@
|
|
|
7
7
|
*/
|
|
8
8
|
html {
|
|
9
9
|
line-height: 1.15; /* 1 */
|
|
10
|
-
-webkit-text-size-adjust: 100%;
|
|
10
|
+
-webkit-text-size-adjust: 100%;
|
|
11
|
+
-moz-text-size-adjust: 100%;
|
|
12
|
+
text-size-adjust: 100%; /* 2 */
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
/* Sections
|
|
@@ -65,17 +67,6 @@ a {
|
|
|
65
67
|
background-color: transparent;
|
|
66
68
|
}
|
|
67
69
|
|
|
68
|
-
/**
|
|
69
|
-
* 1. Remove the bottom border in Chrome 57-
|
|
70
|
-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
71
|
-
*/
|
|
72
|
-
abbr[title] {
|
|
73
|
-
border-bottom: none; /* 1 */
|
|
74
|
-
text-decoration: underline; /* 2 */
|
|
75
|
-
-webkit-text-decoration: underline dotted;
|
|
76
|
-
text-decoration: underline dotted; /* 2 */
|
|
77
|
-
}
|
|
78
|
-
|
|
79
70
|
/**
|
|
80
71
|
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
81
72
|
*/
|
|
@@ -176,6 +167,8 @@ button,
|
|
|
176
167
|
[type=reset],
|
|
177
168
|
[type=submit] {
|
|
178
169
|
-webkit-appearance: button;
|
|
170
|
+
-moz-appearance: button;
|
|
171
|
+
appearance: button;
|
|
179
172
|
}
|
|
180
173
|
|
|
181
174
|
/**
|
|
@@ -258,7 +251,9 @@ textarea {
|
|
|
258
251
|
* 2. Correct the outline style in Safari.
|
|
259
252
|
*/
|
|
260
253
|
[type=search] {
|
|
261
|
-
-webkit-appearance: textfield;
|
|
254
|
+
-webkit-appearance: textfield;
|
|
255
|
+
-moz-appearance: textfield;
|
|
256
|
+
appearance: textfield; /* 1 */
|
|
262
257
|
outline-offset: -2px; /* 2 */
|
|
263
258
|
}
|
|
264
259
|
|
|
@@ -267,6 +262,7 @@ textarea {
|
|
|
267
262
|
*/
|
|
268
263
|
[type=search]::-webkit-search-decoration {
|
|
269
264
|
-webkit-appearance: none;
|
|
265
|
+
appearance: none;
|
|
270
266
|
}
|
|
271
267
|
|
|
272
268
|
/**
|
|
@@ -274,7 +270,8 @@ textarea {
|
|
|
274
270
|
* 2. Change font properties to `inherit` in Safari.
|
|
275
271
|
*/
|
|
276
272
|
::-webkit-file-upload-button {
|
|
277
|
-
-webkit-appearance: button;
|
|
273
|
+
-webkit-appearance: button;
|
|
274
|
+
appearance: button; /* 1 */
|
|
278
275
|
font: inherit; /* 2 */
|
|
279
276
|
}
|
|
280
277
|
|
|
@@ -312,8 +309,8 @@ template {
|
|
|
312
309
|
|
|
313
310
|
/* global settings */
|
|
314
311
|
*,
|
|
315
|
-
|
|
316
|
-
|
|
312
|
+
::after,
|
|
313
|
+
::before {
|
|
317
314
|
box-sizing: border-box;
|
|
318
315
|
border: 0 solid #dce3e8;
|
|
319
316
|
outline-offset: 1px;
|
|
@@ -480,7 +477,7 @@ body {
|
|
|
480
477
|
border-color: transparent !important;
|
|
481
478
|
}
|
|
482
479
|
.q-btn--elevated {
|
|
483
|
-
box-shadow:
|
|
480
|
+
box-shadow: 0 2px 4px -1px rgb(var(--box-shadow-tint)/0.2), 0 4px 5px 0 rgb(var(--box-shadow-tint)/0.14), 0 1px 10px 0 rgb(var(--box-shadow-tint)/0.12);
|
|
484
481
|
}
|
|
485
482
|
.q-btn--block {
|
|
486
483
|
display: block;
|
|
@@ -505,7 +502,7 @@ body {
|
|
|
505
502
|
border-radius: 0.25rem;
|
|
506
503
|
}
|
|
507
504
|
.q-btn-group--elevated {
|
|
508
|
-
box-shadow:
|
|
505
|
+
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
509
506
|
}
|
|
510
507
|
.q-btn-group > .q-btn {
|
|
511
508
|
position: relative;
|