@quidgest/ui 0.7.0 → 0.7.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/index.d.ts +4 -0
- package/dist/ui.css +11 -1
- package/dist/ui.esm.js +258 -235
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +2 -2
- 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 +12 -4
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest Framework v0.7.
|
|
2
|
+
* Quidgest Framework v0.7.2
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -451,6 +451,13 @@ $input-height: 31.89px;
|
|
|
451
451
|
outline: $outline;
|
|
452
452
|
}
|
|
453
453
|
}
|
|
454
|
+
&__extras {
|
|
455
|
+
display: flex;
|
|
456
|
+
gap: $space-base;
|
|
457
|
+
align-items: center;
|
|
458
|
+
color: rgb(var(--q-theme-on-background-rgb) / 0.8);
|
|
459
|
+
margin-top: $space-base;
|
|
460
|
+
}
|
|
454
461
|
&__prepend,
|
|
455
462
|
&__append {
|
|
456
463
|
display: flex;
|
|
@@ -510,9 +517,7 @@ $input-height: 31.89px;
|
|
|
510
517
|
}
|
|
511
518
|
}
|
|
512
519
|
&--block {
|
|
513
|
-
|
|
514
|
-
width: 100%;
|
|
515
|
-
}
|
|
520
|
+
width: 100%;
|
|
516
521
|
}
|
|
517
522
|
}
|
|
518
523
|
.q-icon {
|
|
@@ -550,6 +555,9 @@ $input-height: 31.89px;
|
|
|
550
555
|
min-width: 40px;
|
|
551
556
|
height: $input-height;
|
|
552
557
|
}
|
|
558
|
+
> * + * {
|
|
559
|
+
margin-left: -1px;
|
|
560
|
+
}
|
|
553
561
|
> span {
|
|
554
562
|
display: flex;
|
|
555
563
|
align-items: center;
|