@quidgest/ui 0.7.6 → 0.7.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 +6 -1
- package/dist/ui.css +9 -12
- package/dist/ui.esm.js +426 -400
- 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 +45 -45
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +13 -34
- package/package.json +27 -27
package/dist/index.d.ts
CHANGED
|
@@ -1336,6 +1336,11 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1336
1336
|
noData: string;
|
|
1337
1337
|
};
|
|
1338
1338
|
}, {}>, {
|
|
1339
|
+
"label.prepend"?(_: {}): any;
|
|
1340
|
+
"label.append"?(_: {}): any;
|
|
1341
|
+
prepend?(_: {}): any;
|
|
1342
|
+
append?(_: {}): any;
|
|
1343
|
+
extras?(_: {}): any;
|
|
1339
1344
|
"body.prepend"?(_: {}): any;
|
|
1340
1345
|
"body.append"?(_: {}): any;
|
|
1341
1346
|
}>;
|
|
@@ -1789,7 +1794,7 @@ export declare type QFieldProps = {
|
|
|
1789
1794
|
required?: boolean;
|
|
1790
1795
|
};
|
|
1791
1796
|
|
|
1792
|
-
export declare type QFieldSize = 'mini' | 'small' | 'medium' | 'large' | '
|
|
1797
|
+
export declare type QFieldSize = 'mini' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' | 'block';
|
|
1793
1798
|
|
|
1794
1799
|
export declare const QIcon: IQIcon;
|
|
1795
1800
|
|
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;
|