@quidgest/ui 0.19.0 → 0.20.0

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.
Files changed (115) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/json/api.json +1109 -3
  3. package/dist/manifest/components.json +1 -0
  4. package/dist/ui.css +1181 -5
  5. package/dist/ui.esm.js +1444 -843
  6. package/dist/ui.js +1405 -804
  7. package/dist/ui.min.css +2 -1
  8. package/dist/ui.min.js +1405 -804
  9. package/dist/ui.scss +373 -7
  10. package/esm/components/QField/QField.d.ts.map +1 -1
  11. package/esm/components/QField/QField.vue.js +1 -1
  12. package/esm/components/QInputGroup/QInputGroup.d.ts +147 -3
  13. package/esm/components/QInputGroup/QInputGroup.d.ts.map +1 -1
  14. package/esm/components/QInputGroup/QInputGroup.vue.js +32 -23
  15. package/esm/components/QInputGroup/index.d.ts +81 -4
  16. package/esm/components/QInputGroup/index.d.ts.map +1 -1
  17. package/esm/components/QList/QList.d.ts.map +1 -1
  18. package/esm/components/QList/QList.vue.js +3 -1
  19. package/esm/components/QList/QListItem.d.ts.map +1 -1
  20. package/esm/components/QList/QListItem.vue.js +24 -28
  21. package/esm/components/QList/types.d.ts +1 -1
  22. package/esm/components/QOverlay/types.d.ts +3 -1
  23. package/esm/components/QOverlay/types.d.ts.map +1 -1
  24. package/esm/components/QPhoneField/QPhoneField.d.ts +2263 -0
  25. package/esm/components/QPhoneField/QPhoneField.d.ts.map +1 -0
  26. package/esm/components/QPhoneField/QPhoneField.vue.js +478 -0
  27. package/esm/components/QPhoneField/QPhoneField2.vue.js +5 -0
  28. package/esm/components/QPhoneField/constants.d.ts +11 -0
  29. package/esm/components/QPhoneField/constants.d.ts.map +1 -0
  30. package/esm/components/QPhoneField/constants.js +14 -0
  31. package/esm/components/QPhoneField/index.d.ts +1253 -0
  32. package/esm/components/QPhoneField/index.d.ts.map +1 -0
  33. package/esm/components/QPhoneField/index.js +6 -0
  34. package/esm/components/QPhoneField/types.d.ts +108 -0
  35. package/esm/components/QPhoneField/types.d.ts.map +1 -0
  36. package/esm/components/QSelect/QSelect.d.ts +16 -1
  37. package/esm/components/QSelect/QSelect.d.ts.map +1 -1
  38. package/esm/components/QSelect/QSelect.vue.js +158 -129
  39. package/esm/components/QSelect/index.d.ts +31 -3
  40. package/esm/components/QSelect/index.d.ts.map +1 -1
  41. package/esm/components/QSelect/types.d.ts +13 -0
  42. package/esm/components/QSelect/types.d.ts.map +1 -1
  43. package/esm/components/index.d.ts +1 -0
  44. package/esm/components/index.d.ts.map +1 -1
  45. package/esm/components/index.js +36 -34
  46. package/esm/composables/useDialog/index.d.ts +2 -88
  47. package/esm/composables/useDialog/index.d.ts.map +1 -1
  48. package/esm/composables/useDialog/index.js +6 -6
  49. package/esm/composables/useDialog/types.d.ts +14 -4
  50. package/esm/composables/useDialog/types.d.ts.map +1 -1
  51. package/esm/index.d.ts +1 -0
  52. package/esm/vendors/country-flag-icons/modules/countries.json.js +4 -0
  53. package/esm/vendors/country-flag-icons/modules/hasFlag.js +7 -0
  54. package/esm/vendors/libphonenumber-js/es6/AsYouType.js +312 -0
  55. package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.PatternMatcher.js +142 -0
  56. package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.PatternParser.js +145 -0
  57. package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.complete.js +45 -0
  58. package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.js +258 -0
  59. package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.util.js +57 -0
  60. package/esm/vendors/libphonenumber-js/es6/AsYouTypeParser.js +242 -0
  61. package/esm/vendors/libphonenumber-js/es6/AsYouTypeState.js +115 -0
  62. package/esm/vendors/libphonenumber-js/es6/ParseError.js +116 -0
  63. package/esm/vendors/libphonenumber-js/es6/PhoneNumber.js +164 -0
  64. package/esm/vendors/libphonenumber-js/es6/constants.js +4 -0
  65. package/esm/vendors/libphonenumber-js/es6/format.js +77 -0
  66. package/esm/vendors/libphonenumber-js/es6/formatIncompletePhoneNumber.js +7 -0
  67. package/esm/vendors/libphonenumber-js/es6/getCountries.js +7 -0
  68. package/esm/vendors/libphonenumber-js/es6/getExampleNumber.js +7 -0
  69. package/esm/vendors/libphonenumber-js/es6/helpers/RFC3966.js +9 -0
  70. package/esm/vendors/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js +7 -0
  71. package/esm/vendors/libphonenumber-js/es6/helpers/checkNumberLength.js +21 -0
  72. package/esm/vendors/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js +11 -0
  73. package/esm/vendors/libphonenumber-js/es6/helpers/extension/extractExtension.js +16 -0
  74. package/esm/vendors/libphonenumber-js/es6/helpers/extractCountryCallingCode.js +36 -0
  75. package/esm/vendors/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +21 -0
  76. package/esm/vendors/libphonenumber-js/es6/helpers/extractFormattedPhoneNumberFromPossibleRfc3966NumberUri.js +18 -0
  77. package/esm/vendors/libphonenumber-js/es6/helpers/extractNationalNumber.js +27 -0
  78. package/esm/vendors/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +27 -0
  79. package/esm/vendors/libphonenumber-js/es6/helpers/extractPhoneContext.js +15 -0
  80. package/esm/vendors/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js +11 -0
  81. package/esm/vendors/libphonenumber-js/es6/helpers/getCountryAndCallingCodeFromOneOfThem.js +13 -0
  82. package/esm/vendors/libphonenumber-js/es6/helpers/getCountryByCallingCode.js +12 -0
  83. package/esm/vendors/libphonenumber-js/es6/helpers/getCountryByNationalNumber.js +43 -0
  84. package/esm/vendors/libphonenumber-js/es6/helpers/getIddPrefix.js +10 -0
  85. package/esm/vendors/libphonenumber-js/es6/helpers/getNumberType.js +61 -0
  86. package/esm/vendors/libphonenumber-js/es6/helpers/getPossibleCountriesForNumber.js +14 -0
  87. package/esm/vendors/libphonenumber-js/es6/helpers/isCallingCode.js +7 -0
  88. package/esm/vendors/libphonenumber-js/es6/helpers/isCountryCode.js +7 -0
  89. package/esm/vendors/libphonenumber-js/es6/helpers/isObject.js +7 -0
  90. package/esm/vendors/libphonenumber-js/es6/helpers/isViablePhoneNumber.js +12 -0
  91. package/esm/vendors/libphonenumber-js/es6/helpers/matchesEntirely.js +6 -0
  92. package/esm/vendors/libphonenumber-js/es6/helpers/mergeArrays.js +39 -0
  93. package/esm/vendors/libphonenumber-js/es6/helpers/parseDigits.js +82 -0
  94. package/esm/vendors/libphonenumber-js/es6/helpers/stripIddPrefix.js +18 -0
  95. package/esm/vendors/libphonenumber-js/es6/isPossible.js +32 -0
  96. package/esm/vendors/libphonenumber-js/es6/isValid.js +11 -0
  97. package/esm/vendors/libphonenumber-js/es6/metadata.js +474 -0
  98. package/esm/vendors/libphonenumber-js/es6/normalizeArguments.js +110 -0
  99. package/esm/vendors/libphonenumber-js/es6/parse.js +103 -0
  100. package/esm/vendors/libphonenumber-js/es6/parseIncompletePhoneNumber.js +48 -0
  101. package/esm/vendors/libphonenumber-js/es6/parsePhoneNumber.js +9 -0
  102. package/esm/vendors/libphonenumber-js/es6/parsePhoneNumberWithError_.js +58 -0
  103. package/esm/vendors/libphonenumber-js/es6/parsePhoneNumber_.js +66 -0
  104. package/esm/vendors/libphonenumber-js/es6/tools/semver-compare.js +14 -0
  105. package/esm/vendors/libphonenumber-js/examples.mobile.json.js +250 -0
  106. package/esm/vendors/libphonenumber-js/max/exports/AsYouType.js +9 -0
  107. package/esm/vendors/libphonenumber-js/max/exports/formatIncompletePhoneNumber.js +8 -0
  108. package/esm/vendors/libphonenumber-js/max/exports/getCountries.js +8 -0
  109. package/esm/vendors/libphonenumber-js/max/exports/getCountryCallingCode.js +8 -0
  110. package/esm/vendors/libphonenumber-js/max/exports/getExampleNumber.js +8 -0
  111. package/esm/vendors/libphonenumber-js/max/exports/isSupportedCountry.js +8 -0
  112. package/esm/vendors/libphonenumber-js/max/exports/parsePhoneNumber.js +8 -0
  113. package/esm/vendors/libphonenumber-js/max/exports/withMetadataArgument.js +8 -0
  114. package/esm/vendors/libphonenumber-js/metadata.max.json.js +10489 -0
  115. package/package.json +3 -1
package/dist/ui.scss CHANGED
@@ -1,11 +1,277 @@
1
1
  /*!
2
- * Quidgest UI v0.19.0
2
+ * Quidgest UI v0.20.0
3
3
  * (c) 2026 Quidgest - Consultores de Gestão, S.A.
4
4
  * Released under the MIT License.
5
5
  */
6
6
  @use 'sass:math';
7
7
  @use 'sass:map';
8
8
 
9
+ [class*=' flag:'],[class^='flag:'] {display:inline-block;background-size:cover;height:1em;width:1.5em;--CountryFlagIcon-height:1em;height:var(--CountryFlagIcon-height);width:calc(var(--CountryFlagIcon-height)*3/2);}
10
+ .flag\:AC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
11
+ .flag\:AD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
12
+ .flag\:AE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
13
+ .flag\:AF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
14
+ .flag\:AG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
15
+ .flag\:AI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
16
+ .flag\:AL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
17
+ .flag\:AM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
18
+ .flag\:AO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
19
+ .flag\:AQ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
20
+ .flag\:AR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
21
+ .flag\:AS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
22
+ .flag\:AT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
23
+ .flag\:AU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
24
+ .flag\:AW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
25
+ .flag\:AX{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
26
+ .flag\:AZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
27
+ .flag\:BA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
28
+ .flag\:BB{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
29
+ .flag\:BD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
30
+ .flag\:BE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
31
+ .flag\:BF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
32
+ .flag\:BG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
33
+ .flag\:BH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
34
+ .flag\:BI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
35
+ .flag\:BJ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
36
+ .flag\:BL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
37
+ .flag\:BM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
38
+ .flag\:BN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
39
+ .flag\:BO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
40
+ .flag\:BQ-BO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
41
+ .flag\:BQ-SA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
42
+ .flag\:BQ-SE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
43
+ .flag\:BQ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
44
+ .flag\:BR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
45
+ .flag\:BS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
46
+ .flag\:BT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
47
+ .flag\:BV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
48
+ .flag\:BW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
49
+ .flag\:BY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
50
+ .flag\:BZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
51
+ .flag\:CA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
52
+ .flag\:CC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
53
+ .flag\:CD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
54
+ .flag\:CF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
55
+ .flag\:CG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
56
+ .flag\:CH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
57
+ .flag\:CI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
58
+ .flag\:CK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
59
+ .flag\:CL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
60
+ .flag\:CM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
61
+ .flag\:CN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
62
+ .flag\:CO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
63
+ .flag\:CR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
64
+ .flag\:CU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
65
+ .flag\:CV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
66
+ .flag\:CW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
67
+ .flag\:CX{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
68
+ .flag\:CY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
69
+ .flag\:CZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
70
+ .flag\:DE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
71
+ .flag\:DJ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
72
+ .flag\:DK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
73
+ .flag\:DM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
74
+ .flag\:DO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
75
+ .flag\:DZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
76
+ .flag\:EC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
77
+ .flag\:EE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
78
+ .flag\:EG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
79
+ .flag\:EH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
80
+ .flag\:ER{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
81
+ .flag\:ES-CT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
82
+ .flag\:ES{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
83
+ .flag\:ET{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
84
+ .flag\:EU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
85
+ .flag\:FI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
86
+ .flag\:FJ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
87
+ .flag\:FK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
88
+ .flag\:FM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
89
+ .flag\:FO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
90
+ .flag\:FR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
91
+ .flag\:GA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
92
+ .flag\:GB-ENG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
93
+ .flag\:GB-NIR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
94
+ .flag\:GB-SCT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
95
+ .flag\:GB-WLS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
96
+ .flag\:GB{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
97
+ .flag\:GD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
98
+ .flag\:GE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
99
+ .flag\:GF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
100
+ .flag\:GG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
101
+ .flag\:GH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
102
+ .flag\:GI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
103
+ .flag\:GL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
104
+ .flag\:GM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
105
+ .flag\:GN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
106
+ .flag\:GP{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
107
+ .flag\:GQ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
108
+ .flag\:GR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
109
+ .flag\:GS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
110
+ .flag\:GT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
111
+ .flag\:GU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
112
+ .flag\:GW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
113
+ .flag\:GY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
114
+ .flag\:HK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
115
+ .flag\:HM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
116
+ .flag\:HN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
117
+ .flag\:HR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
118
+ .flag\:HT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
119
+ .flag\:HU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
120
+ .flag\:IC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
121
+ .flag\:ID{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
122
+ .flag\:IE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
123
+ .flag\:IL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
124
+ .flag\:IM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
125
+ .flag\:IN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
126
+ .flag\:IO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
127
+ .flag\:IQ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
128
+ .flag\:IR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
129
+ .flag\:IS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
130
+ .flag\:IT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
131
+ .flag\:JE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
132
+ .flag\:JM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
133
+ .flag\:JO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
134
+ .flag\:JP{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
135
+ .flag\:KE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
136
+ .flag\:KG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
137
+ .flag\:KH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
138
+ .flag\:KI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
139
+ .flag\:KM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
140
+ .flag\:KN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
141
+ .flag\:KP{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
142
+ .flag\:KR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
143
+ .flag\:KW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
144
+ .flag\:KY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
145
+ .flag\:KZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
146
+ .flag\:LA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
147
+ .flag\:LB{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
148
+ .flag\:LC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
149
+ .flag\:LI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
150
+ .flag\:LK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
151
+ .flag\:LR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
152
+ .flag\:LS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
153
+ .flag\:LT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
154
+ .flag\:LU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
155
+ .flag\:LV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
156
+ .flag\:LY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
157
+ .flag\:MA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
158
+ .flag\:MC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
159
+ .flag\:MD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
160
+ .flag\:ME{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
161
+ .flag\:MF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
162
+ .flag\:MG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
163
+ .flag\:MH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
164
+ .flag\:MK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
165
+ .flag\:ML{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
166
+ .flag\:MM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
167
+ .flag\:MN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
168
+ .flag\:MO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
169
+ .flag\:MP{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
170
+ .flag\:MQ{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 900 600' xmlns='http:
171
+ .flag\:MR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
172
+ .flag\:MS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
173
+ .flag\:MT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
174
+ .flag\:MU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
175
+ .flag\:MV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
176
+ .flag\:MW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
177
+ .flag\:MX{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
178
+ .flag\:MY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
179
+ .flag\:MZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
180
+ .flag\:NA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
181
+ .flag\:NC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
182
+ .flag\:NE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
183
+ .flag\:NF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
184
+ .flag\:NG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
185
+ .flag\:NI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
186
+ .flag\:NL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
187
+ .flag\:NO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
188
+ .flag\:NP{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
189
+ .flag\:NR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
190
+ .flag\:NU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
191
+ .flag\:NZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
192
+ .flag\:OM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
193
+ .flag\:PA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
194
+ .flag\:PE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
195
+ .flag\:PF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
196
+ .flag\:PG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
197
+ .flag\:PH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
198
+ .flag\:PK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
199
+ .flag\:PL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
200
+ .flag\:PM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
201
+ .flag\:PN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
202
+ .flag\:PR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
203
+ .flag\:PS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
204
+ .flag\:PT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
205
+ .flag\:PW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
206
+ .flag\:PY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
207
+ .flag\:QA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
208
+ .flag\:RE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
209
+ .flag\:RO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
210
+ .flag\:RS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
211
+ .flag\:RU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
212
+ .flag\:RW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
213
+ .flag\:SA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
214
+ .flag\:SB{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
215
+ .flag\:SC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
216
+ .flag\:SD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
217
+ .flag\:SE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
218
+ .flag\:SG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
219
+ .flag\:SH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
220
+ .flag\:SI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
221
+ .flag\:SJ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
222
+ .flag\:SK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
223
+ .flag\:SL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
224
+ .flag\:SM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
225
+ .flag\:SN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
226
+ .flag\:SO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
227
+ .flag\:SR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
228
+ .flag\:SS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
229
+ .flag\:ST{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
230
+ .flag\:SV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
231
+ .flag\:SX{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
232
+ .flag\:SY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
233
+ .flag\:SZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
234
+ .flag\:TA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
235
+ .flag\:TC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
236
+ .flag\:TD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
237
+ .flag\:TF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
238
+ .flag\:TG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
239
+ .flag\:TH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
240
+ .flag\:TJ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
241
+ .flag\:TK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
242
+ .flag\:TL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
243
+ .flag\:TM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
244
+ .flag\:TN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
245
+ .flag\:TO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
246
+ .flag\:TR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
247
+ .flag\:TT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
248
+ .flag\:TV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
249
+ .flag\:TW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
250
+ .flag\:TZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
251
+ .flag\:UA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
252
+ .flag\:UG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
253
+ .flag\:UM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
254
+ .flag\:US{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
255
+ .flag\:UY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
256
+ .flag\:UZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
257
+ .flag\:VA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
258
+ .flag\:VC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
259
+ .flag\:VE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
260
+ .flag\:VG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
261
+ .flag\:VI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
262
+ .flag\:VN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
263
+ .flag\:VU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
264
+ .flag\:WF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
265
+ .flag\:WS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
266
+ .flag\:XA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
267
+ .flag\:XC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
268
+ .flag\:XK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
269
+ .flag\:XO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
270
+ .flag\:YE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
271
+ .flag\:YT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
272
+ .flag\:ZA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
273
+ .flag\:ZM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
274
+ .flag\:ZW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
9
275
  *,
10
276
  ::before,
11
277
  ::after {
@@ -2497,7 +2763,7 @@ $q-line-loader-color: var(--q-line-loader-color);
2497
2763
  }
2498
2764
  }
2499
2765
  &:hover,
2500
- &:focus-visible,
2766
+ &:focus,
2501
2767
  &--highlighted {
2502
2768
  background-color: rgb(var(--q-theme-primary-light-rgb) / 50%);
2503
2769
  }
@@ -2530,9 +2796,14 @@ $q-line-loader-color: var(--q-line-loader-color);
2530
2796
  }
2531
2797
  &__check-container {
2532
2798
  display: flex;
2799
+ align-items: center;
2533
2800
  margin-left: auto;
2534
2801
  min-width: 1em;
2535
- align-self: flex-start;
2802
+ min-height: 1.15rem;
2803
+ align-self: center;
2804
+ &--top {
2805
+ align-self: flex-start;
2806
+ }
2536
2807
  }
2537
2808
  &__description {
2538
2809
  display: flex;
@@ -2786,6 +3057,103 @@ $arrow-tip-radius: 0.1rem;
2786
3057
  padding: 0.25rem 0;
2787
3058
  }
2788
3059
  }
3060
+ .q-phone-field {
3061
+ &__country-select {
3062
+ flex: 0 0 auto;
3063
+ align-self: stretch;
3064
+ width: auto;
3065
+ > .q-field__control {
3066
+ height: 100%;
3067
+ width: max-content;
3068
+ min-width: max-content;
3069
+ padding-block: 0;
3070
+ padding-inline: $space-base $space-base * 2;
3071
+ }
3072
+ .q-field__prepend {
3073
+ padding-inline: 0 $space-base;
3074
+ }
3075
+ .q-field__append {
3076
+ padding-inline: $space-base 0;
3077
+ }
3078
+ }
3079
+ &__input {
3080
+ flex: 1 1 auto;
3081
+ width: 100%;
3082
+ min-width: 0;
3083
+ > .q-field__control {
3084
+ height: 100%;
3085
+ min-width: 0;
3086
+ }
3087
+ .q-text-field__input::placeholder {
3088
+ color: var(--q-theme-neutral-dark);
3089
+ }
3090
+ }
3091
+ &__flag,
3092
+ &__flag-fallback {
3093
+ display: inline-flex;
3094
+ flex: 0 0 auto;
3095
+ align-items: center;
3096
+ justify-content: center;
3097
+ width: 1.5em;
3098
+ aspect-ratio: 3 / 2;
3099
+ overflow: hidden;
3100
+ border-radius: calc(var(--border-radius) / 2);
3101
+ }
3102
+ &__flag {
3103
+ background-position: center;
3104
+ background-color: rgb(var(--q-theme-neutral-light-rgb) / 25%);
3105
+ color: transparent;
3106
+ }
3107
+ &__flag-code {
3108
+
3109
+
3110
+
3111
+
3112
+ color: var(--CountryFlagIcon-height, var(--q-theme-neutral-dark));
3113
+ font-size: 0.65em;
3114
+ font-weight: $font-weight-bold;
3115
+ }
3116
+ &__flag-fallback {
3117
+ background-color: rgb(var(--q-theme-neutral-light-rgb) / 25%);
3118
+ color: var(--q-theme-neutral-dark);
3119
+ font-size: 0.65em;
3120
+ font-weight: $font-weight-bold;
3121
+ }
3122
+ &__validation-message {
3123
+ color: var(--q-theme-danger);
3124
+ }
3125
+ }
3126
+ .q-phone-field__search {
3127
+ align-self: stretch;
3128
+ width: auto;
3129
+ margin-inline: $space-base;
3130
+ .q-text-field__input::placeholder {
3131
+ color: var(--q-theme-neutral-dark);
3132
+ }
3133
+ & + .q-select__items {
3134
+ --q-phone-field-country-list-max-height: 15rem;
3135
+ width: 100%;
3136
+ min-width: 0;
3137
+ max-height: var(--q-phone-field-country-list-max-height);
3138
+ }
3139
+ }
3140
+ .q-phone-field__country-name {
3141
+ min-width: 0;
3142
+ overflow: hidden;
3143
+ text-overflow: ellipsis;
3144
+ white-space: nowrap;
3145
+ }
3146
+ .q-phone-field__item-code {
3147
+ margin-inline-start: auto;
3148
+ color: var(--q-theme-neutral-dark);
3149
+ white-space: nowrap;
3150
+ }
3151
+ .q-phone-field__empty {
3152
+ width: 100%;
3153
+ color: var(--q-theme-neutral-dark);
3154
+ padding: $space-base * 4 $space-base * 2;
3155
+ text-align: center;
3156
+ }
2789
3157
  .q-popover {
2790
3158
  &__content {
2791
3159
  position: relative;
@@ -3273,8 +3641,7 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
3273
3641
  outline: none;
3274
3642
  .q-list-item {
3275
3643
  width: calc(100% - 2 * $space-base);
3276
- margin-left: $space-base;
3277
- margin-right: $space-base;
3644
+ margin-inline: $space-base;
3278
3645
  }
3279
3646
  }
3280
3647
  &__items {
@@ -3294,8 +3661,7 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
3294
3661
  }
3295
3662
 
3296
3663
  .q-field__prepend {
3297
- padding-left: $space-base * 2;
3298
- padding-right: $space-base * 2;
3664
+ padding-inline: $space-base * 2;
3299
3665
  }
3300
3666
  }
3301
3667
  $sidebar-size-small: 19rem;
@@ -1 +1 @@
1
- {"version":3,"file":"QField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QField/QField.vue"],"names":[],"mappings":"AA2CA;AA4FC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,GAAG,CAAA;AA+CrC,iBAAS,cAAc;WAgGT,OAAO,IAA6B;;iCAlBb,GAAG;gCACJ,GAAG;yBACV,GAAG;yBACH,GAAG;yBACF,GAAG;wBACJ,GAAG;wBACH,GAAG;;;;;;EAiB/B;AAWD,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"}
1
+ {"version":3,"file":"QField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QField/QField.vue"],"names":[],"mappings":"AA2CA;AA4FC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,GAAG,CAAA;AA+CrC,iBAAS,cAAc;WAgGT,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"}
@@ -48,7 +48,7 @@ var m = ["id"], h = {
48
48
  label: y.label,
49
49
  "label-position": y.labelPosition,
50
50
  for: y.for,
51
- required: y.required
51
+ required: x.value
52
52
  }, {
53
53
  prepend: p(() => [u(t.$slots, "label.prepend")]),
54
54
  append: p(() => [u(t.$slots, "label.append")]),
@@ -9,13 +9,157 @@ declare function __VLS_template(): {
9
9
  append?(_: {}): any;
10
10
  extras?(_: {}): any;
11
11
  };
12
- refs: {};
12
+ refs: {
13
+ field: ({
14
+ $: import('vue').ComponentInternalInstance;
15
+ $data: {};
16
+ $props: {
17
+ readonly id?: string | undefined;
18
+ readonly class?: string | unknown[] | undefined;
19
+ readonly label?: string | undefined;
20
+ readonly required?: boolean | undefined;
21
+ readonly for?: string | undefined;
22
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
23
+ readonly size?: import('..').QFieldSize | undefined;
24
+ readonly readonly?: boolean | undefined;
25
+ readonly disabled?: boolean | undefined;
26
+ readonly invalid?: boolean | undefined;
27
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
28
+ $attrs: import('vue').Attrs;
29
+ $refs: {
30
+ [x: string]: unknown;
31
+ } & {
32
+ field: HTMLDivElement;
33
+ };
34
+ $slots: Readonly<{
35
+ [name: string]: import('vue').Slot<any> | undefined;
36
+ }>;
37
+ $root: import('vue').ComponentPublicInstance | null;
38
+ $parent: import('vue').ComponentPublicInstance | null;
39
+ $host: Element | null;
40
+ $emit: (event: string, ...args: any[]) => void;
41
+ $el: any;
42
+ $options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
43
+ fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
44
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
45
+ size: import('..').QFieldSize;
46
+ labelPosition: import('..').QLabelPosition;
47
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
48
+ beforeCreate?: (() => void) | (() => void)[];
49
+ created?: (() => void) | (() => void)[];
50
+ beforeMount?: (() => void) | (() => void)[];
51
+ mounted?: (() => void) | (() => void)[];
52
+ beforeUpdate?: (() => void) | (() => void)[];
53
+ updated?: (() => void) | (() => void)[];
54
+ activated?: (() => void) | (() => void)[];
55
+ deactivated?: (() => void) | (() => void)[];
56
+ beforeDestroy?: (() => void) | (() => void)[];
57
+ beforeUnmount?: (() => void) | (() => void)[];
58
+ destroyed?: (() => void) | (() => void)[];
59
+ unmounted?: (() => void) | (() => void)[];
60
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
61
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
62
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
63
+ };
64
+ $forceUpdate: () => void;
65
+ $nextTick: typeof import('vue').nextTick;
66
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
67
+ } & Readonly<{
68
+ size: import('..').QFieldSize;
69
+ labelPosition: import('..').QLabelPosition;
70
+ }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "fieldRef" | ("size" | "labelPosition")> & {
71
+ fieldRef: HTMLDivElement | null;
72
+ } & {} & import('vue').ComponentCustomProperties & {} & {
73
+ $slots: {
74
+ 'label.prepend'?(_: {}): any;
75
+ 'label.append'?(_: {}): any;
76
+ control?(_: {}): any;
77
+ prepend?(_: {}): any;
78
+ default?(_: {}): any;
79
+ append?(_: {}): any;
80
+ extras?(_: {}): any;
81
+ };
82
+ }) | null;
83
+ };
13
84
  rootEl: any;
14
85
  };
15
86
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
- declare const __VLS_component: import('vue').DefineComponent<QInputGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<QInputGroupProps> & Readonly<{}>, {
87
+ declare const __VLS_component: import('vue').DefineComponent<QInputGroupProps, {
88
+ fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
89
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<QInputGroupProps> & Readonly<{}>, {
17
90
  size: import('..').QFieldSize;
18
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
91
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
92
+ field: ({
93
+ $: import('vue').ComponentInternalInstance;
94
+ $data: {};
95
+ $props: {
96
+ readonly id?: string | undefined;
97
+ readonly class?: string | unknown[] | undefined;
98
+ readonly label?: string | undefined;
99
+ readonly required?: boolean | undefined;
100
+ readonly for?: string | undefined;
101
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
102
+ readonly size?: import('..').QFieldSize | undefined;
103
+ readonly readonly?: boolean | undefined;
104
+ readonly disabled?: boolean | undefined;
105
+ readonly invalid?: boolean | undefined;
106
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
107
+ $attrs: import('vue').Attrs;
108
+ $refs: {
109
+ [x: string]: unknown;
110
+ } & {
111
+ field: HTMLDivElement;
112
+ };
113
+ $slots: Readonly<{
114
+ [name: string]: import('vue').Slot<any> | undefined;
115
+ }>;
116
+ $root: import('vue').ComponentPublicInstance | null;
117
+ $parent: import('vue').ComponentPublicInstance | null;
118
+ $host: Element | null;
119
+ $emit: (event: string, ...args: any[]) => void;
120
+ $el: any;
121
+ $options: import('vue').ComponentOptionsBase<Readonly<import('..').QFieldProps> & Readonly<{}>, {
122
+ fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
123
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
124
+ size: import('..').QFieldSize;
125
+ labelPosition: import('..').QLabelPosition;
126
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
127
+ beforeCreate?: (() => void) | (() => void)[];
128
+ created?: (() => void) | (() => void)[];
129
+ beforeMount?: (() => void) | (() => void)[];
130
+ mounted?: (() => void) | (() => void)[];
131
+ beforeUpdate?: (() => void) | (() => void)[];
132
+ updated?: (() => void) | (() => void)[];
133
+ activated?: (() => void) | (() => void)[];
134
+ deactivated?: (() => void) | (() => void)[];
135
+ beforeDestroy?: (() => void) | (() => void)[];
136
+ beforeUnmount?: (() => void) | (() => void)[];
137
+ destroyed?: (() => void) | (() => void)[];
138
+ unmounted?: (() => void) | (() => void)[];
139
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
140
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
141
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
142
+ };
143
+ $forceUpdate: () => void;
144
+ $nextTick: typeof import('vue').nextTick;
145
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
146
+ } & Readonly<{
147
+ size: import('..').QFieldSize;
148
+ labelPosition: import('..').QLabelPosition;
149
+ }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "fieldRef" | ("size" | "labelPosition")> & {
150
+ fieldRef: HTMLDivElement | null;
151
+ } & {} & import('vue').ComponentCustomProperties & {} & {
152
+ $slots: {
153
+ 'label.prepend'?(_: {}): any;
154
+ 'label.append'?(_: {}): any;
155
+ control?(_: {}): any;
156
+ prepend?(_: {}): any;
157
+ default?(_: {}): any;
158
+ append?(_: {}): any;
159
+ extras?(_: {}): any;
160
+ };
161
+ }) | null;
162
+ }, any>;
19
163
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
20
164
  export default _default;
21
165
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1 +1 @@
1
- {"version":3,"file":"QInputGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QInputGroup/QInputGroup.vue"],"names":[],"mappings":"AAuCA;AAuEC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,GAAG,CAAA;AAkB1C,iBAAS,cAAc;WAgHT,OAAO,IAA6B;;iCAfb,GAAG;gCACJ,GAAG;yBACT,GAAG;yBACH,GAAG;wBACJ,GAAG;wBACH,GAAG;;;;EAe/B;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;6EAQnB,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"}
1
+ {"version":3,"file":"QInputGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QInputGroup/QInputGroup.vue"],"names":[],"mappings":"AA2CA;AAoFC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,GAAG,CAAA;AA8B1C,iBAAS,cAAc;WA2HT,OAAO,IAA6B;;iCAhBb,GAAG;gCACJ,GAAG;yBACT,GAAG;yBACH,GAAG;wBACJ,GAAG;wBACH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA2DyrkB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;EA3C90kB;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA+BoskB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;OArB70kB,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"}