@quidgest/ui 0.15.2 → 0.15.3
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/manifest/components.json +2 -0
- package/dist/ui.css +110 -5
- package/dist/ui.esm.js +3449 -3301
- package/dist/ui.js +9 -9
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +705 -699
- package/dist/ui.scss +118 -8
- package/esm/components/QCombobox/QCombobox.d.ts +16 -8
- package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
- package/esm/components/QCombobox/QCombobox.vue.js +1 -1
- package/esm/components/QCombobox/index.d.ts +28 -14
- package/esm/components/QCombobox/index.d.ts.map +1 -1
- package/esm/components/QDateTimePicker/QDateTimePicker.vue.js +1 -1
- package/esm/components/QDateTimePicker/index.d.ts +3 -0
- package/esm/components/QDateTimePicker/index.d.ts.map +1 -1
- package/esm/components/QField/QField.d.ts.map +1 -1
- package/esm/components/QField/QField.vue.js +11 -10
- package/esm/components/QFileUpload/QFileUpload.vue.js +1 -1
- package/esm/components/QFileUpload/index.d.ts +3 -0
- package/esm/components/QFileUpload/index.d.ts.map +1 -1
- package/esm/components/QInputGroup/QInputGroup.vue.js +1 -1
- package/esm/components/QLabel/QLabel.d.ts +1 -0
- package/esm/components/QLabel/QLabel.d.ts.map +1 -1
- package/esm/components/QLabel/QLabel.vue.js +28 -13
- package/esm/components/QLabel/index.d.ts +1 -0
- package/esm/components/QLabel/index.d.ts.map +1 -1
- package/esm/components/QLabel/types.d.ts +5 -0
- package/esm/components/QLabel/types.d.ts.map +1 -1
- package/esm/components/QMeter/QMeter.vue.js +14 -13
- package/esm/components/QMeter/index.d.ts +2 -0
- package/esm/components/QMeter/index.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.d.ts +8 -4
- package/esm/components/QPasswordField/QPasswordField.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.vue.js +1 -1
- package/esm/components/QPasswordField/index.d.ts +4 -2
- package/esm/components/QPasswordField/index.d.ts.map +1 -1
- package/esm/components/QPropertyList/QPropertyList.vue.js +23 -23
- package/esm/components/QPropertyList/QPropertyListRow.d.ts +6 -2
- package/esm/components/QPropertyList/QPropertyListRow.d.ts.map +1 -1
- package/esm/components/QPropertyList/QPropertyListRow.vue.js +20 -20
- package/esm/components/QPropertyList/index.d.ts +9 -2
- package/esm/components/QPropertyList/index.d.ts.map +1 -1
- package/esm/components/QRadioGroup/QRadioButton.d.ts +24 -0
- package/esm/components/QRadioGroup/QRadioButton.d.ts.map +1 -0
- package/esm/components/QRadioGroup/QRadioButton.vue.js +78 -0
- package/esm/components/QRadioGroup/QRadioButton.vue2.js +4 -0
- package/esm/components/QRadioGroup/QRadioGroup.d.ts +32 -0
- package/esm/components/QRadioGroup/QRadioGroup.d.ts.map +1 -0
- package/esm/components/QRadioGroup/QRadioGroup.vue.js +79 -0
- package/esm/components/QRadioGroup/QRadioGroup.vue2.js +4 -0
- package/esm/components/QRadioGroup/index.d.ts +108 -0
- package/esm/components/QRadioGroup/index.d.ts.map +1 -0
- package/esm/components/QRadioGroup/index.js +8 -0
- package/esm/components/QRadioGroup/types.d.ts +65 -0
- package/esm/components/QRadioGroup/types.d.ts.map +1 -0
- package/esm/components/QSelect/QSelect.d.ts +2 -2
- package/esm/components/QSelect/QSelect.vue.js +1 -1
- package/esm/components/QSelect/index.d.ts +4 -1
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/esm/components/QTextArea/QTextArea.vue.js +1 -1
- package/esm/components/QTextArea/index.d.ts +3 -0
- package/esm/components/QTextArea/index.d.ts.map +1 -1
- package/esm/components/QTextField/QTextField.d.ts +2 -2
- package/esm/components/QTextField/QTextField.vue.js +1 -1
- package/esm/components/QTextField/index.d.ts +4 -1
- package/esm/components/QTextField/index.d.ts.map +1 -1
- package/esm/components/index.d.ts +1 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +34 -31
- package/esm/composables/group.d.ts.map +1 -1
- package/esm/composables/group.js +1 -1
- package/esm/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest UI v0.15.
|
|
2
|
+
* Quidgest UI v0.15.3
|
|
3
3
|
* (c) 2025 Quidgest - Consultores de Gestão, S.A.
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1210,13 +1210,6 @@ body {
|
|
|
1210
1210
|
padding-right: 0.05rem;
|
|
1211
1211
|
}
|
|
1212
1212
|
|
|
1213
|
-
&--required {
|
|
1214
|
-
> #{$this}__label label::after {
|
|
1215
|
-
content: ' *';
|
|
1216
|
-
font-weight: 700;
|
|
1217
|
-
color: var(--q-theme-danger);
|
|
1218
|
-
}
|
|
1219
|
-
}
|
|
1220
1213
|
&--readonly {
|
|
1221
1214
|
> #{$this}__control {
|
|
1222
1215
|
background-color: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
@@ -1441,6 +1434,13 @@ $input-group-addon-background: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
|
1441
1434
|
.q-icon {
|
|
1442
1435
|
color: currentcolor;
|
|
1443
1436
|
}
|
|
1437
|
+
&--required {
|
|
1438
|
+
&::after {
|
|
1439
|
+
content: ' *';
|
|
1440
|
+
font-weight: 700;
|
|
1441
|
+
color: var(--q-theme-danger);
|
|
1442
|
+
}
|
|
1443
|
+
}
|
|
1444
1444
|
}
|
|
1445
1445
|
$line-color: var(--q-theme-primary);
|
|
1446
1446
|
.q-line-loader {
|
|
@@ -1833,6 +1833,116 @@ $base-border: 1px solid rgb(0 0 0 / 10%);
|
|
|
1833
1833
|
border-bottom: $base-border;
|
|
1834
1834
|
}
|
|
1835
1835
|
}
|
|
1836
|
+
.q-radio-group {
|
|
1837
|
+
$this: &;
|
|
1838
|
+
display: flex;
|
|
1839
|
+
flex-direction: column;
|
|
1840
|
+
gap: calc($space-base * 2);
|
|
1841
|
+
&__group {
|
|
1842
|
+
display: flex;
|
|
1843
|
+
flex-direction: column;
|
|
1844
|
+
gap: calc($space-base * 2);
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
&--horizontal {
|
|
1848
|
+
#{$this}__group {
|
|
1849
|
+
flex-direction: row;
|
|
1850
|
+
}
|
|
1851
|
+
}
|
|
1852
|
+
}
|
|
1853
|
+
.q-radio-button {
|
|
1854
|
+
$this: &;
|
|
1855
|
+
--q-radio-button-circle-size: 1rem;
|
|
1856
|
+
--q-radio-button-checked-color: var(--q-theme-primary);
|
|
1857
|
+
display: flex;
|
|
1858
|
+
align-items: center;
|
|
1859
|
+
font-size: var(--q-radio-button-circle-size);
|
|
1860
|
+
gap: 0.5em;
|
|
1861
|
+
label {
|
|
1862
|
+
font-size: 0.875em;
|
|
1863
|
+
line-height: 1;
|
|
1864
|
+
}
|
|
1865
|
+
&__input {
|
|
1866
|
+
position: relative;
|
|
1867
|
+
width: var(--q-radio-button-circle-size);
|
|
1868
|
+
height: var(--q-radio-button-circle-size);
|
|
1869
|
+
background-color: transparent;
|
|
1870
|
+
flex-shrink: 0;
|
|
1871
|
+
appearance: none;
|
|
1872
|
+
border-width: 1px;
|
|
1873
|
+
border-color: var(--q-theme-neutral);
|
|
1874
|
+
border-radius: 50%;
|
|
1875
|
+
|
|
1876
|
+
&::before {
|
|
1877
|
+
content: '';
|
|
1878
|
+
position: absolute;
|
|
1879
|
+
top: 50%;
|
|
1880
|
+
left: 50%;
|
|
1881
|
+
width: 0.5em;
|
|
1882
|
+
height: 0.5em;
|
|
1883
|
+
background-color: var(--q-theme-background);
|
|
1884
|
+
border-radius: 50%;
|
|
1885
|
+
transform: translate(-50%, -50%) scale(0);
|
|
1886
|
+
opacity: 0;
|
|
1887
|
+
transition:
|
|
1888
|
+
transform 0.1s ease-out,
|
|
1889
|
+
opacity 0.1s ease-out;
|
|
1890
|
+
}
|
|
1891
|
+
&:checked {
|
|
1892
|
+
&::before {
|
|
1893
|
+
transform: translate(-50%, -50%) scale(1);
|
|
1894
|
+
opacity: 1;
|
|
1895
|
+
}
|
|
1896
|
+
&:not(:disabled) {
|
|
1897
|
+
background-color: var(--q-radio-button-checked-color);
|
|
1898
|
+
border-color: var(--q-radio-button-checked-color);
|
|
1899
|
+
}
|
|
1900
|
+
&:disabled::before {
|
|
1901
|
+
background-color: var(--q-theme-neutral);
|
|
1902
|
+
}
|
|
1903
|
+
}
|
|
1904
|
+
&:hover:not(:disabled) {
|
|
1905
|
+
border-color: var(--q-radio-button-checked-color);
|
|
1906
|
+
cursor: pointer;
|
|
1907
|
+
}
|
|
1908
|
+
&:focus:not(:disabled) {
|
|
1909
|
+
outline: 0;
|
|
1910
|
+
}
|
|
1911
|
+
&:focus-visible:not(:disabled) {
|
|
1912
|
+
outline: $outline;
|
|
1913
|
+
}
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
@mixin color-variant($color) {
|
|
1917
|
+
&--#{$color} {
|
|
1918
|
+
--q-radio-button-checked-color: var(--q-theme-#{$color});
|
|
1919
|
+
}
|
|
1920
|
+
}
|
|
1921
|
+
@each $color in (primary, info, success, warning, danger) {
|
|
1922
|
+
@include color-variant($color);
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
&--disabled {
|
|
1926
|
+
opacity: 0.5;
|
|
1927
|
+
}
|
|
1928
|
+
&--readonly {
|
|
1929
|
+
#{$this}__input {
|
|
1930
|
+
background-color: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
1931
|
+
}
|
|
1932
|
+
}
|
|
1933
|
+
&--invalid {
|
|
1934
|
+
#{$this}__input {
|
|
1935
|
+
border-color: var(--q-theme-danger);
|
|
1936
|
+
}
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
&--small {
|
|
1940
|
+
--q-radio-button-circle-size: 0.875rem;
|
|
1941
|
+
}
|
|
1942
|
+
&--large {
|
|
1943
|
+
--q-radio-button-circle-size: 1.125rem;
|
|
1944
|
+
}
|
|
1945
|
+
}
|
|
1836
1946
|
.q-select {
|
|
1837
1947
|
$this: &;
|
|
1838
1948
|
&:not(#{$this}--readonly):not(#{$this}--disabled) {
|
|
@@ -31,10 +31,10 @@ declare function __VLS_template(): {
|
|
|
31
31
|
readonly class?: string | unknown[] | undefined;
|
|
32
32
|
readonly label?: string | undefined;
|
|
33
33
|
readonly for?: string | undefined;
|
|
34
|
+
readonly required?: boolean | undefined;
|
|
34
35
|
readonly size?: import('..').QFieldSize | undefined;
|
|
35
36
|
readonly readonly?: boolean | undefined;
|
|
36
37
|
readonly disabled?: boolean | undefined;
|
|
37
|
-
readonly required?: boolean | undefined;
|
|
38
38
|
readonly invalid?: boolean | undefined;
|
|
39
39
|
readonly placeholder?: string | undefined;
|
|
40
40
|
readonly clearable?: boolean | undefined;
|
|
@@ -57,10 +57,10 @@ declare function __VLS_template(): {
|
|
|
57
57
|
readonly class?: string | unknown[] | undefined;
|
|
58
58
|
readonly label?: string | undefined;
|
|
59
59
|
readonly for?: string | undefined;
|
|
60
|
+
readonly required?: boolean | undefined;
|
|
60
61
|
readonly size?: import('..').QFieldSize | undefined;
|
|
61
62
|
readonly readonly?: boolean | undefined;
|
|
62
63
|
readonly disabled?: boolean | undefined;
|
|
63
|
-
readonly required?: boolean | undefined;
|
|
64
64
|
readonly invalid?: boolean | undefined;
|
|
65
65
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
66
66
|
$attrs: {
|
|
@@ -133,6 +133,7 @@ declare function __VLS_template(): {
|
|
|
133
133
|
} & import('../../types/component').QBaseComponentProps & {
|
|
134
134
|
label?: string;
|
|
135
135
|
for?: string;
|
|
136
|
+
required?: boolean;
|
|
136
137
|
} & {
|
|
137
138
|
size?: import('..').QFieldSize;
|
|
138
139
|
readonly?: boolean;
|
|
@@ -183,6 +184,7 @@ declare function __VLS_template(): {
|
|
|
183
184
|
} & import('../../types/component').QBaseComponentProps & {
|
|
184
185
|
label?: string;
|
|
185
186
|
for?: string;
|
|
187
|
+
required?: boolean;
|
|
186
188
|
} & {
|
|
187
189
|
size?: import('..').QFieldSize;
|
|
188
190
|
readonly?: boolean;
|
|
@@ -475,10 +477,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
475
477
|
readonly class?: string | unknown[] | undefined;
|
|
476
478
|
readonly label?: string | undefined;
|
|
477
479
|
readonly for?: string | undefined;
|
|
480
|
+
readonly required?: boolean | undefined;
|
|
478
481
|
readonly size?: import('..').QFieldSize | undefined;
|
|
479
482
|
readonly readonly?: boolean | undefined;
|
|
480
483
|
readonly disabled?: boolean | undefined;
|
|
481
|
-
readonly required?: boolean | undefined;
|
|
482
484
|
readonly invalid?: boolean | undefined;
|
|
483
485
|
readonly placeholder?: string | undefined;
|
|
484
486
|
readonly clearable?: boolean | undefined;
|
|
@@ -501,10 +503,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
501
503
|
readonly class?: string | unknown[] | undefined;
|
|
502
504
|
readonly label?: string | undefined;
|
|
503
505
|
readonly for?: string | undefined;
|
|
506
|
+
readonly required?: boolean | undefined;
|
|
504
507
|
readonly size?: import('..').QFieldSize | undefined;
|
|
505
508
|
readonly readonly?: boolean | undefined;
|
|
506
509
|
readonly disabled?: boolean | undefined;
|
|
507
|
-
readonly required?: boolean | undefined;
|
|
508
510
|
readonly invalid?: boolean | undefined;
|
|
509
511
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
510
512
|
$attrs: {
|
|
@@ -577,6 +579,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
577
579
|
} & import('../../types/component').QBaseComponentProps & {
|
|
578
580
|
label?: string;
|
|
579
581
|
for?: string;
|
|
582
|
+
required?: boolean;
|
|
580
583
|
} & {
|
|
581
584
|
size?: import('..').QFieldSize;
|
|
582
585
|
readonly?: boolean;
|
|
@@ -627,6 +630,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
627
630
|
} & import('../../types/component').QBaseComponentProps & {
|
|
628
631
|
label?: string;
|
|
629
632
|
for?: string;
|
|
633
|
+
required?: boolean;
|
|
630
634
|
} & {
|
|
631
635
|
size?: import('..').QFieldSize;
|
|
632
636
|
readonly?: boolean;
|
|
@@ -661,10 +665,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
661
665
|
readonly class?: string | unknown[] | undefined;
|
|
662
666
|
readonly label?: string | undefined;
|
|
663
667
|
readonly for?: string | undefined;
|
|
668
|
+
readonly required?: boolean | undefined;
|
|
664
669
|
readonly size?: import('..').QFieldSize | undefined;
|
|
665
670
|
readonly readonly?: boolean | undefined;
|
|
666
671
|
readonly disabled?: boolean | undefined;
|
|
667
|
-
readonly required?: boolean | undefined;
|
|
668
672
|
readonly invalid?: boolean | undefined;
|
|
669
673
|
readonly placeholder?: string | undefined;
|
|
670
674
|
readonly clearable?: boolean | undefined;
|
|
@@ -687,10 +691,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
687
691
|
readonly class?: string | unknown[] | undefined;
|
|
688
692
|
readonly label?: string | undefined;
|
|
689
693
|
readonly for?: string | undefined;
|
|
694
|
+
readonly required?: boolean | undefined;
|
|
690
695
|
readonly size?: import('..').QFieldSize | undefined;
|
|
691
696
|
readonly readonly?: boolean | undefined;
|
|
692
697
|
readonly disabled?: boolean | undefined;
|
|
693
|
-
readonly required?: boolean | undefined;
|
|
694
698
|
readonly invalid?: boolean | undefined;
|
|
695
699
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
696
700
|
$attrs: {
|
|
@@ -763,6 +767,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
763
767
|
} & import('../../types/component').QBaseComponentProps & {
|
|
764
768
|
label?: string;
|
|
765
769
|
for?: string;
|
|
770
|
+
required?: boolean;
|
|
766
771
|
} & {
|
|
767
772
|
size?: import('..').QFieldSize;
|
|
768
773
|
readonly?: boolean;
|
|
@@ -813,6 +818,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
813
818
|
} & import('../../types/component').QBaseComponentProps & {
|
|
814
819
|
label?: string;
|
|
815
820
|
for?: string;
|
|
821
|
+
required?: boolean;
|
|
816
822
|
} & {
|
|
817
823
|
size?: import('..').QFieldSize;
|
|
818
824
|
readonly?: boolean;
|
|
@@ -882,10 +888,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
882
888
|
readonly class?: string | unknown[] | undefined;
|
|
883
889
|
readonly label?: string | undefined;
|
|
884
890
|
readonly for?: string | undefined;
|
|
891
|
+
readonly required?: boolean | undefined;
|
|
885
892
|
readonly size?: import('..').QFieldSize | undefined;
|
|
886
893
|
readonly readonly?: boolean | undefined;
|
|
887
894
|
readonly disabled?: boolean | undefined;
|
|
888
|
-
readonly required?: boolean | undefined;
|
|
889
895
|
readonly invalid?: boolean | undefined;
|
|
890
896
|
readonly placeholder?: string | undefined;
|
|
891
897
|
readonly clearable?: boolean | undefined;
|
|
@@ -908,10 +914,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
908
914
|
readonly class?: string | unknown[] | undefined;
|
|
909
915
|
readonly label?: string | undefined;
|
|
910
916
|
readonly for?: string | undefined;
|
|
917
|
+
readonly required?: boolean | undefined;
|
|
911
918
|
readonly size?: import('..').QFieldSize | undefined;
|
|
912
919
|
readonly readonly?: boolean | undefined;
|
|
913
920
|
readonly disabled?: boolean | undefined;
|
|
914
|
-
readonly required?: boolean | undefined;
|
|
915
921
|
readonly invalid?: boolean | undefined;
|
|
916
922
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
917
923
|
$attrs: {
|
|
@@ -984,6 +990,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
984
990
|
} & import('../../types/component').QBaseComponentProps & {
|
|
985
991
|
label?: string;
|
|
986
992
|
for?: string;
|
|
993
|
+
required?: boolean;
|
|
987
994
|
} & {
|
|
988
995
|
size?: import('..').QFieldSize;
|
|
989
996
|
readonly?: boolean;
|
|
@@ -1034,6 +1041,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
1034
1041
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1035
1042
|
label?: string;
|
|
1036
1043
|
for?: string;
|
|
1044
|
+
required?: boolean;
|
|
1037
1045
|
} & {
|
|
1038
1046
|
size?: import('..').QFieldSize;
|
|
1039
1047
|
readonly?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QCombobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/QCombobox.vue"],"names":[],"mappings":"AA0HA;AAskBC,OAAO,EAAE,aAAa,EAAiB,MAAM,SAAS,CAAA;AAYtD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAG7C,OAAO,EAAY,QAAQ,EAAyB,MAAM,KAAK,CAAA;AAE/D,KAAK,WAAW,GAAG,cAAc,CAAC;AAscnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACjB,GAAG,WAAW,CAAC;AAOhB,iBAAS,cAAc;WA6UT,OAAO,IAA6B;;iCAtBZ,GAAG;gCACJ,GAAG;yBACV,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACb,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDA3X1B,GAAE,8CAGd,GACD,yBAEoB,GAAE,6DAEL,GAAG
|
|
1
|
+
{"version":3,"file":"QCombobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/QCombobox.vue"],"names":[],"mappings":"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"}
|
|
@@ -21,10 +21,10 @@ const we = ["data-key"], xe = {
|
|
|
21
21
|
class: {},
|
|
22
22
|
label: {},
|
|
23
23
|
for: {},
|
|
24
|
+
required: { type: Boolean },
|
|
24
25
|
size: {},
|
|
25
26
|
readonly: { type: Boolean },
|
|
26
27
|
disabled: { type: Boolean },
|
|
27
|
-
required: { type: Boolean },
|
|
28
28
|
invalid: { type: Boolean },
|
|
29
29
|
placeholder: {},
|
|
30
30
|
clearable: { type: Boolean },
|
|
@@ -36,10 +36,10 @@ declare const QCombobox: {
|
|
|
36
36
|
readonly class?: string | unknown[] | undefined;
|
|
37
37
|
readonly label?: string | undefined;
|
|
38
38
|
readonly for?: string | undefined;
|
|
39
|
+
readonly required?: boolean | undefined;
|
|
39
40
|
readonly size?: import('..').QFieldSize | undefined;
|
|
40
41
|
readonly readonly?: boolean | undefined;
|
|
41
42
|
readonly disabled?: boolean | undefined;
|
|
42
|
-
readonly required?: boolean | undefined;
|
|
43
43
|
readonly invalid?: boolean | undefined;
|
|
44
44
|
readonly placeholder?: string | undefined;
|
|
45
45
|
readonly clearable?: boolean | undefined;
|
|
@@ -62,10 +62,10 @@ declare const QCombobox: {
|
|
|
62
62
|
readonly class?: string | unknown[] | undefined;
|
|
63
63
|
readonly label?: string | undefined;
|
|
64
64
|
readonly for?: string | undefined;
|
|
65
|
+
readonly required?: boolean | undefined;
|
|
65
66
|
readonly size?: import('..').QFieldSize | undefined;
|
|
66
67
|
readonly readonly?: boolean | undefined;
|
|
67
68
|
readonly disabled?: boolean | undefined;
|
|
68
|
-
readonly required?: boolean | undefined;
|
|
69
69
|
readonly invalid?: boolean | undefined;
|
|
70
70
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
71
71
|
$attrs: {
|
|
@@ -138,6 +138,7 @@ declare const QCombobox: {
|
|
|
138
138
|
} & import('../../types/component').QBaseComponentProps & {
|
|
139
139
|
label?: string;
|
|
140
140
|
for?: string;
|
|
141
|
+
required?: boolean;
|
|
141
142
|
} & {
|
|
142
143
|
size?: import('..').QFieldSize;
|
|
143
144
|
readonly?: boolean;
|
|
@@ -188,6 +189,7 @@ declare const QCombobox: {
|
|
|
188
189
|
} & import('../../types/component').QBaseComponentProps & {
|
|
189
190
|
label?: string;
|
|
190
191
|
for?: string;
|
|
192
|
+
required?: boolean;
|
|
191
193
|
} & {
|
|
192
194
|
size?: import('..').QFieldSize;
|
|
193
195
|
readonly?: boolean;
|
|
@@ -222,10 +224,10 @@ declare const QCombobox: {
|
|
|
222
224
|
readonly class?: string | unknown[] | undefined;
|
|
223
225
|
readonly label?: string | undefined;
|
|
224
226
|
readonly for?: string | undefined;
|
|
227
|
+
readonly required?: boolean | undefined;
|
|
225
228
|
readonly size?: import('..').QFieldSize | undefined;
|
|
226
229
|
readonly readonly?: boolean | undefined;
|
|
227
230
|
readonly disabled?: boolean | undefined;
|
|
228
|
-
readonly required?: boolean | undefined;
|
|
229
231
|
readonly invalid?: boolean | undefined;
|
|
230
232
|
readonly placeholder?: string | undefined;
|
|
231
233
|
readonly clearable?: boolean | undefined;
|
|
@@ -248,10 +250,10 @@ declare const QCombobox: {
|
|
|
248
250
|
readonly class?: string | unknown[] | undefined;
|
|
249
251
|
readonly label?: string | undefined;
|
|
250
252
|
readonly for?: string | undefined;
|
|
253
|
+
readonly required?: boolean | undefined;
|
|
251
254
|
readonly size?: import('..').QFieldSize | undefined;
|
|
252
255
|
readonly readonly?: boolean | undefined;
|
|
253
256
|
readonly disabled?: boolean | undefined;
|
|
254
|
-
readonly required?: boolean | undefined;
|
|
255
257
|
readonly invalid?: boolean | undefined;
|
|
256
258
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
257
259
|
$attrs: {
|
|
@@ -324,6 +326,7 @@ declare const QCombobox: {
|
|
|
324
326
|
} & import('../../types/component').QBaseComponentProps & {
|
|
325
327
|
label?: string;
|
|
326
328
|
for?: string;
|
|
329
|
+
required?: boolean;
|
|
327
330
|
} & {
|
|
328
331
|
size?: import('..').QFieldSize;
|
|
329
332
|
readonly?: boolean;
|
|
@@ -374,6 +377,7 @@ declare const QCombobox: {
|
|
|
374
377
|
} & import('../../types/component').QBaseComponentProps & {
|
|
375
378
|
label?: string;
|
|
376
379
|
for?: string;
|
|
380
|
+
required?: boolean;
|
|
377
381
|
} & {
|
|
378
382
|
size?: import('..').QFieldSize;
|
|
379
383
|
readonly?: boolean;
|
|
@@ -435,10 +439,10 @@ declare const QCombobox: {
|
|
|
435
439
|
readonly class?: string | unknown[] | undefined;
|
|
436
440
|
readonly label?: string | undefined;
|
|
437
441
|
readonly for?: string | undefined;
|
|
442
|
+
readonly required?: boolean | undefined;
|
|
438
443
|
readonly size?: import('..').QFieldSize | undefined;
|
|
439
444
|
readonly readonly?: boolean | undefined;
|
|
440
445
|
readonly disabled?: boolean | undefined;
|
|
441
|
-
readonly required?: boolean | undefined;
|
|
442
446
|
readonly invalid?: boolean | undefined;
|
|
443
447
|
readonly placeholder?: string | undefined;
|
|
444
448
|
readonly clearable?: boolean | undefined;
|
|
@@ -461,10 +465,10 @@ declare const QCombobox: {
|
|
|
461
465
|
readonly class?: string | unknown[] | undefined;
|
|
462
466
|
readonly label?: string | undefined;
|
|
463
467
|
readonly for?: string | undefined;
|
|
468
|
+
readonly required?: boolean | undefined;
|
|
464
469
|
readonly size?: import('..').QFieldSize | undefined;
|
|
465
470
|
readonly readonly?: boolean | undefined;
|
|
466
471
|
readonly disabled?: boolean | undefined;
|
|
467
|
-
readonly required?: boolean | undefined;
|
|
468
472
|
readonly invalid?: boolean | undefined;
|
|
469
473
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
470
474
|
$attrs: {
|
|
@@ -537,6 +541,7 @@ declare const QCombobox: {
|
|
|
537
541
|
} & import('../../types/component').QBaseComponentProps & {
|
|
538
542
|
label?: string;
|
|
539
543
|
for?: string;
|
|
544
|
+
required?: boolean;
|
|
540
545
|
} & {
|
|
541
546
|
size?: import('..').QFieldSize;
|
|
542
547
|
readonly?: boolean;
|
|
@@ -587,6 +592,7 @@ declare const QCombobox: {
|
|
|
587
592
|
} & import('../../types/component').QBaseComponentProps & {
|
|
588
593
|
label?: string;
|
|
589
594
|
for?: string;
|
|
595
|
+
required?: boolean;
|
|
590
596
|
} & {
|
|
591
597
|
size?: import('..').QFieldSize;
|
|
592
598
|
readonly?: boolean;
|
|
@@ -909,10 +915,10 @@ declare const QCombobox: {
|
|
|
909
915
|
readonly class?: string | unknown[] | undefined;
|
|
910
916
|
readonly label?: string | undefined;
|
|
911
917
|
readonly for?: string | undefined;
|
|
918
|
+
readonly required?: boolean | undefined;
|
|
912
919
|
readonly size?: import('..').QFieldSize | undefined;
|
|
913
920
|
readonly readonly?: boolean | undefined;
|
|
914
921
|
readonly disabled?: boolean | undefined;
|
|
915
|
-
readonly required?: boolean | undefined;
|
|
916
922
|
readonly invalid?: boolean | undefined;
|
|
917
923
|
readonly placeholder?: string | undefined;
|
|
918
924
|
readonly clearable?: boolean | undefined;
|
|
@@ -935,10 +941,10 @@ declare const QCombobox: {
|
|
|
935
941
|
readonly class?: string | unknown[] | undefined;
|
|
936
942
|
readonly label?: string | undefined;
|
|
937
943
|
readonly for?: string | undefined;
|
|
944
|
+
readonly required?: boolean | undefined;
|
|
938
945
|
readonly size?: import('..').QFieldSize | undefined;
|
|
939
946
|
readonly readonly?: boolean | undefined;
|
|
940
947
|
readonly disabled?: boolean | undefined;
|
|
941
|
-
readonly required?: boolean | undefined;
|
|
942
948
|
readonly invalid?: boolean | undefined;
|
|
943
949
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
944
950
|
$attrs: {
|
|
@@ -1011,6 +1017,7 @@ declare const QCombobox: {
|
|
|
1011
1017
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1012
1018
|
label?: string;
|
|
1013
1019
|
for?: string;
|
|
1020
|
+
required?: boolean;
|
|
1014
1021
|
} & {
|
|
1015
1022
|
size?: import('..').QFieldSize;
|
|
1016
1023
|
readonly?: boolean;
|
|
@@ -1061,6 +1068,7 @@ declare const QCombobox: {
|
|
|
1061
1068
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1062
1069
|
label?: string;
|
|
1063
1070
|
for?: string;
|
|
1071
|
+
required?: boolean;
|
|
1064
1072
|
} & {
|
|
1065
1073
|
size?: import('..').QFieldSize;
|
|
1066
1074
|
readonly?: boolean;
|
|
@@ -1095,10 +1103,10 @@ declare const QCombobox: {
|
|
|
1095
1103
|
readonly class?: string | unknown[] | undefined;
|
|
1096
1104
|
readonly label?: string | undefined;
|
|
1097
1105
|
readonly for?: string | undefined;
|
|
1106
|
+
readonly required?: boolean | undefined;
|
|
1098
1107
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1099
1108
|
readonly readonly?: boolean | undefined;
|
|
1100
1109
|
readonly disabled?: boolean | undefined;
|
|
1101
|
-
readonly required?: boolean | undefined;
|
|
1102
1110
|
readonly invalid?: boolean | undefined;
|
|
1103
1111
|
readonly placeholder?: string | undefined;
|
|
1104
1112
|
readonly clearable?: boolean | undefined;
|
|
@@ -1121,10 +1129,10 @@ declare const QCombobox: {
|
|
|
1121
1129
|
readonly class?: string | unknown[] | undefined;
|
|
1122
1130
|
readonly label?: string | undefined;
|
|
1123
1131
|
readonly for?: string | undefined;
|
|
1132
|
+
readonly required?: boolean | undefined;
|
|
1124
1133
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1125
1134
|
readonly readonly?: boolean | undefined;
|
|
1126
1135
|
readonly disabled?: boolean | undefined;
|
|
1127
|
-
readonly required?: boolean | undefined;
|
|
1128
1136
|
readonly invalid?: boolean | undefined;
|
|
1129
1137
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1130
1138
|
$attrs: {
|
|
@@ -1197,6 +1205,7 @@ declare const QCombobox: {
|
|
|
1197
1205
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1198
1206
|
label?: string;
|
|
1199
1207
|
for?: string;
|
|
1208
|
+
required?: boolean;
|
|
1200
1209
|
} & {
|
|
1201
1210
|
size?: import('..').QFieldSize;
|
|
1202
1211
|
readonly?: boolean;
|
|
@@ -1247,6 +1256,7 @@ declare const QCombobox: {
|
|
|
1247
1256
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1248
1257
|
label?: string;
|
|
1249
1258
|
for?: string;
|
|
1259
|
+
required?: boolean;
|
|
1250
1260
|
} & {
|
|
1251
1261
|
size?: import('..').QFieldSize;
|
|
1252
1262
|
readonly?: boolean;
|
|
@@ -1330,10 +1340,10 @@ declare const QCombobox: {
|
|
|
1330
1340
|
readonly class?: string | unknown[] | undefined;
|
|
1331
1341
|
readonly label?: string | undefined;
|
|
1332
1342
|
readonly for?: string | undefined;
|
|
1343
|
+
readonly required?: boolean | undefined;
|
|
1333
1344
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1334
1345
|
readonly readonly?: boolean | undefined;
|
|
1335
1346
|
readonly disabled?: boolean | undefined;
|
|
1336
|
-
readonly required?: boolean | undefined;
|
|
1337
1347
|
readonly invalid?: boolean | undefined;
|
|
1338
1348
|
readonly placeholder?: string | undefined;
|
|
1339
1349
|
readonly clearable?: boolean | undefined;
|
|
@@ -1356,10 +1366,10 @@ declare const QCombobox: {
|
|
|
1356
1366
|
readonly class?: string | unknown[] | undefined;
|
|
1357
1367
|
readonly label?: string | undefined;
|
|
1358
1368
|
readonly for?: string | undefined;
|
|
1369
|
+
readonly required?: boolean | undefined;
|
|
1359
1370
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1360
1371
|
readonly readonly?: boolean | undefined;
|
|
1361
1372
|
readonly disabled?: boolean | undefined;
|
|
1362
|
-
readonly required?: boolean | undefined;
|
|
1363
1373
|
readonly invalid?: boolean | undefined;
|
|
1364
1374
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1365
1375
|
$attrs: {
|
|
@@ -1432,6 +1442,7 @@ declare const QCombobox: {
|
|
|
1432
1442
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1433
1443
|
label?: string;
|
|
1434
1444
|
for?: string;
|
|
1445
|
+
required?: boolean;
|
|
1435
1446
|
} & {
|
|
1436
1447
|
size?: import('..').QFieldSize;
|
|
1437
1448
|
readonly?: boolean;
|
|
@@ -1482,6 +1493,7 @@ declare const QCombobox: {
|
|
|
1482
1493
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1483
1494
|
label?: string;
|
|
1484
1495
|
for?: string;
|
|
1496
|
+
required?: boolean;
|
|
1485
1497
|
} & {
|
|
1486
1498
|
size?: import('..').QFieldSize;
|
|
1487
1499
|
readonly?: boolean;
|
|
@@ -1516,10 +1528,10 @@ declare const QCombobox: {
|
|
|
1516
1528
|
readonly class?: string | unknown[] | undefined;
|
|
1517
1529
|
readonly label?: string | undefined;
|
|
1518
1530
|
readonly for?: string | undefined;
|
|
1531
|
+
readonly required?: boolean | undefined;
|
|
1519
1532
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1520
1533
|
readonly readonly?: boolean | undefined;
|
|
1521
1534
|
readonly disabled?: boolean | undefined;
|
|
1522
|
-
readonly required?: boolean | undefined;
|
|
1523
1535
|
readonly invalid?: boolean | undefined;
|
|
1524
1536
|
readonly placeholder?: string | undefined;
|
|
1525
1537
|
readonly clearable?: boolean | undefined;
|
|
@@ -1542,10 +1554,10 @@ declare const QCombobox: {
|
|
|
1542
1554
|
readonly class?: string | unknown[] | undefined;
|
|
1543
1555
|
readonly label?: string | undefined;
|
|
1544
1556
|
readonly for?: string | undefined;
|
|
1557
|
+
readonly required?: boolean | undefined;
|
|
1545
1558
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1546
1559
|
readonly readonly?: boolean | undefined;
|
|
1547
1560
|
readonly disabled?: boolean | undefined;
|
|
1548
|
-
readonly required?: boolean | undefined;
|
|
1549
1561
|
readonly invalid?: boolean | undefined;
|
|
1550
1562
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1551
1563
|
$attrs: {
|
|
@@ -1618,6 +1630,7 @@ declare const QCombobox: {
|
|
|
1618
1630
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1619
1631
|
label?: string;
|
|
1620
1632
|
for?: string;
|
|
1633
|
+
required?: boolean;
|
|
1621
1634
|
} & {
|
|
1622
1635
|
size?: import('..').QFieldSize;
|
|
1623
1636
|
readonly?: boolean;
|
|
@@ -1668,6 +1681,7 @@ declare const QCombobox: {
|
|
|
1668
1681
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1669
1682
|
label?: string;
|
|
1670
1683
|
for?: string;
|
|
1684
|
+
required?: boolean;
|
|
1671
1685
|
} & {
|
|
1672
1686
|
size?: import('..').QFieldSize;
|
|
1673
1687
|
readonly?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAI+vzB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -17,10 +17,10 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
17
17
|
class: {},
|
|
18
18
|
label: {},
|
|
19
19
|
for: {},
|
|
20
|
+
required: { type: Boolean },
|
|
20
21
|
size: {},
|
|
21
22
|
readonly: { type: Boolean },
|
|
22
23
|
disabled: { type: Boolean },
|
|
23
|
-
required: { type: Boolean },
|
|
24
24
|
invalid: { type: Boolean },
|
|
25
25
|
format: { default: "dd/MM/yyyy HH:mm" },
|
|
26
26
|
minTime: {},
|
|
@@ -5,6 +5,7 @@ declare const QDateTimePicker: {
|
|
|
5
5
|
} & import('../../types/component').QBaseComponentProps & {
|
|
6
6
|
label?: string;
|
|
7
7
|
for?: string;
|
|
8
|
+
required?: boolean;
|
|
8
9
|
} & {
|
|
9
10
|
size?: import('..').QFieldSize;
|
|
10
11
|
readonly?: boolean;
|
|
@@ -43,6 +44,7 @@ declare const QDateTimePicker: {
|
|
|
43
44
|
} & import('../../types/component').QBaseComponentProps & {
|
|
44
45
|
label?: string;
|
|
45
46
|
for?: string;
|
|
47
|
+
required?: boolean;
|
|
46
48
|
} & {
|
|
47
49
|
size?: import('..').QFieldSize;
|
|
48
50
|
readonly?: boolean;
|
|
@@ -74,6 +76,7 @@ declare const QDateTimePicker: {
|
|
|
74
76
|
} & import('../../types/component').QBaseComponentProps & {
|
|
75
77
|
label?: string;
|
|
76
78
|
for?: string;
|
|
79
|
+
required?: boolean;
|
|
77
80
|
} & {
|
|
78
81
|
size?: import('..').QFieldSize;
|
|
79
82
|
readonly?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AAKnD,QAAA,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AAKnD,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAoC,CAAA;AAGzD,OAAO,EAAE,eAAe,EAAE,CAAA;AAG1B,YAAY,EAAE,oBAAoB,EAAE,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QField/QField.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QField/QField.vue"],"names":[],"mappings":"AA0CA;AAyFC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AA4C3C,iBAAS,cAAc;WA8FT,OAAO,IAA6B;;iCAlBb,GAAG;gCACJ,GAAG;yBACV,GAAG;yBACH,GAAG;yBACF,GAAG;wBACJ,GAAG;wBACH,GAAG;;;;;;EAiB/B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;OASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|