@quidgest/ui 0.5.17 → 0.5.18
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 +2 -14
- package/dist/ui.esm.js +116 -117
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +1 -1
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +39 -39
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +3 -29
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest Framework v0.5.
|
|
2
|
+
* Quidgest Framework v0.5.18
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -254,11 +254,6 @@ $btn-outline: var(--q-theme-primary-light);
|
|
|
254
254
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
255
255
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
256
256
|
transition-duration: 0.15s;
|
|
257
|
-
@if $compact {
|
|
258
|
-
line-height: 15px;
|
|
259
|
-
} @else {
|
|
260
|
-
line-height: 16px;
|
|
261
|
-
}
|
|
262
257
|
&:hover:not(:disabled) {
|
|
263
258
|
cursor: pointer;
|
|
264
259
|
}
|
|
@@ -277,28 +272,11 @@ $btn-outline: var(--q-theme-primary-light);
|
|
|
277
272
|
align-items: center;
|
|
278
273
|
justify-content: center;
|
|
279
274
|
font-size: $font-size-base;
|
|
275
|
+
line-height: $font-size-base;
|
|
276
|
+
min-width: $font-size-base;
|
|
280
277
|
white-space: nowrap;
|
|
281
278
|
gap: 0.25rem;
|
|
282
279
|
pointer-events: none;
|
|
283
|
-
@if $compact {
|
|
284
|
-
line-height: 15px;
|
|
285
|
-
min-width: 15px;
|
|
286
|
-
} @else {
|
|
287
|
-
line-height: 16px;
|
|
288
|
-
min-width: 16px;
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
.e-icon__svg {
|
|
292
|
-
padding: 0;
|
|
293
|
-
margin: 0;
|
|
294
|
-
fill: currentColor;
|
|
295
|
-
@if $compact {
|
|
296
|
-
width: 15px;
|
|
297
|
-
height: 15px;
|
|
298
|
-
} @else {
|
|
299
|
-
width: 16px;
|
|
300
|
-
height: 16px;
|
|
301
|
-
}
|
|
302
280
|
}
|
|
303
281
|
.q-spinner-loader {
|
|
304
282
|
color: currentColor;
|
|
@@ -372,10 +350,6 @@ $btn-outline: var(--q-theme-primary-light);
|
|
|
372
350
|
font-size: 0.75rem;
|
|
373
351
|
line-height: 14px;
|
|
374
352
|
}
|
|
375
|
-
.e-icon__svg {
|
|
376
|
-
width: 14px;
|
|
377
|
-
height: 14px;
|
|
378
|
-
}
|
|
379
353
|
}
|
|
380
354
|
|
|
381
355
|
&--borderless {
|