@quidgest/ui 0.7.6 → 0.7.7
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 +1 -1
- package/dist/ui.css +9 -12
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +13 -34
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1789,7 +1789,7 @@ export declare type QFieldProps = {
|
|
|
1789
1789
|
required?: boolean;
|
|
1790
1790
|
};
|
|
1791
1791
|
|
|
1792
|
-
export declare type QFieldSize = 'mini' | 'small' | 'medium' | 'large' | '
|
|
1792
|
+
export declare type QFieldSize = 'mini' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' | 'block';
|
|
1793
1793
|
|
|
1794
1794
|
export declare const QIcon: IQIcon;
|
|
1795
1795
|
|
package/dist/ui.css
CHANGED
|
@@ -488,27 +488,23 @@ body *::-webkit-scrollbar-track {
|
|
|
488
488
|
cursor: not-allowed;
|
|
489
489
|
opacity: 0.5;
|
|
490
490
|
}
|
|
491
|
-
.q-field--fit-content > .q-field__control {
|
|
492
|
-
width: -moz-fit-content;
|
|
493
|
-
width: fit-content;
|
|
494
|
-
}
|
|
495
491
|
.q-field--mini > .q-field__control {
|
|
496
|
-
width:
|
|
492
|
+
width: calc(1 * 5em + 0 * 0.25rem);
|
|
497
493
|
}
|
|
498
494
|
.q-field--small > .q-field__control {
|
|
499
|
-
width:
|
|
495
|
+
width: calc(2 * 5em + 1 * 0.25rem);
|
|
500
496
|
}
|
|
501
497
|
.q-field--medium > .q-field__control {
|
|
502
|
-
width:
|
|
498
|
+
width: calc(3 * 5em + 2 * 0.25rem);
|
|
503
499
|
}
|
|
504
500
|
.q-field--large > .q-field__control {
|
|
505
|
-
width:
|
|
501
|
+
width: calc(4 * 5em + 3 * 0.25rem);
|
|
506
502
|
}
|
|
507
|
-
.q-field--
|
|
508
|
-
width:
|
|
503
|
+
.q-field--xlarge > .q-field__control {
|
|
504
|
+
width: calc(6 * 5em + 5 * 0.25rem);
|
|
509
505
|
}
|
|
510
|
-
.q-field--
|
|
511
|
-
width:
|
|
506
|
+
.q-field--xxlarge > .q-field__control {
|
|
507
|
+
width: calc(8 * 5em + 7 * 0.25rem);
|
|
512
508
|
}
|
|
513
509
|
.q-field--block {
|
|
514
510
|
width: 100%;
|
|
@@ -959,6 +955,7 @@ body *::-webkit-scrollbar-track {
|
|
|
959
955
|
outline: none;
|
|
960
956
|
background-color: inherit;
|
|
961
957
|
cursor: inherit;
|
|
958
|
+
padding: 0;
|
|
962
959
|
}
|
|
963
960
|
.q-text-field__input::-moz-placeholder {
|
|
964
961
|
font-style: italic;
|