qt-ui-kit 1.0.106 → 1.0.108
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.mts +11 -3
- package/dist/index.d.ts +11 -3
- package/dist/index.js +436 -302
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +444 -303
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +10 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -418,6 +418,9 @@
|
|
|
418
418
|
.flex-none {
|
|
419
419
|
flex: none;
|
|
420
420
|
}
|
|
421
|
+
.shrink-0 {
|
|
422
|
+
flex-shrink: 0;
|
|
423
|
+
}
|
|
421
424
|
.grow {
|
|
422
425
|
flex-grow: 1;
|
|
423
426
|
}
|
|
@@ -472,6 +475,9 @@
|
|
|
472
475
|
.flex-col-reverse {
|
|
473
476
|
flex-direction: column-reverse;
|
|
474
477
|
}
|
|
478
|
+
.flex-row {
|
|
479
|
+
flex-direction: row;
|
|
480
|
+
}
|
|
475
481
|
.flex-nowrap {
|
|
476
482
|
flex-wrap: nowrap;
|
|
477
483
|
}
|
|
@@ -612,6 +618,10 @@
|
|
|
612
618
|
border-bottom-style: var(--tw-border-style);
|
|
613
619
|
border-bottom-width: 2px;
|
|
614
620
|
}
|
|
621
|
+
.border-solid {
|
|
622
|
+
--tw-border-style: solid;
|
|
623
|
+
border-style: solid;
|
|
624
|
+
}
|
|
615
625
|
.border-black {
|
|
616
626
|
border-color: var(--color-black);
|
|
617
627
|
}
|