@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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.19.0",
2
+ "version": "0.20.0",
3
3
  "components": [
4
4
  {
5
5
  "name": "QAccordion",
@@ -5632,6 +5632,1061 @@
5632
5632
  }
5633
5633
  ]
5634
5634
  },
5635
+ {
5636
+ "name": "QPhoneField",
5637
+ "description": "Collects and formats international telephone numbers while keeping the country calling code and national number visually distinct. Strict validation uses the `libphonenumber-js/max` metadata, while flags use the complete 3:2 stylesheet from `country-flag-icons`. Restricting `countries` filters runtime options but does not reduce either dependency's bundle contribution.",
5638
+ "meta": {
5639
+ "props": [
5640
+ {
5641
+ "name": "modelValue",
5642
+ "type": {
5643
+ "kind": "primitive",
5644
+ "name": "string"
5645
+ },
5646
+ "description": "",
5647
+ "required": false
5648
+ },
5649
+ {
5650
+ "name": "country",
5651
+ "type": {
5652
+ "kind": "enum",
5653
+ "values": [
5654
+ "AM",
5655
+ "PM",
5656
+ "AC",
5657
+ "AD",
5658
+ "AE",
5659
+ "AF",
5660
+ "AG",
5661
+ "AI",
5662
+ "AL",
5663
+ "AO",
5664
+ "AR",
5665
+ "AS",
5666
+ "AT",
5667
+ "AU",
5668
+ "AW",
5669
+ "AX",
5670
+ "AZ",
5671
+ "BA",
5672
+ "BB",
5673
+ "BD",
5674
+ "BE",
5675
+ "BF",
5676
+ "BG",
5677
+ "BH",
5678
+ "BI",
5679
+ "BJ",
5680
+ "BL",
5681
+ "BM",
5682
+ "BN",
5683
+ "BO",
5684
+ "BQ",
5685
+ "BR",
5686
+ "BS",
5687
+ "BT",
5688
+ "BW",
5689
+ "BY",
5690
+ "BZ",
5691
+ "CA",
5692
+ "CC",
5693
+ "CD",
5694
+ "CF",
5695
+ "CG",
5696
+ "CH",
5697
+ "CI",
5698
+ "CK",
5699
+ "CL",
5700
+ "CM",
5701
+ "CN",
5702
+ "CO",
5703
+ "CR",
5704
+ "CU",
5705
+ "CV",
5706
+ "CW",
5707
+ "CX",
5708
+ "CY",
5709
+ "CZ",
5710
+ "DE",
5711
+ "DJ",
5712
+ "DK",
5713
+ "DM",
5714
+ "DO",
5715
+ "DZ",
5716
+ "EC",
5717
+ "EE",
5718
+ "EG",
5719
+ "EH",
5720
+ "ER",
5721
+ "ES",
5722
+ "ET",
5723
+ "FI",
5724
+ "FJ",
5725
+ "FK",
5726
+ "FM",
5727
+ "FO",
5728
+ "FR",
5729
+ "GA",
5730
+ "GB",
5731
+ "GD",
5732
+ "GE",
5733
+ "GF",
5734
+ "GG",
5735
+ "GH",
5736
+ "GI",
5737
+ "GL",
5738
+ "GM",
5739
+ "GN",
5740
+ "GP",
5741
+ "GQ",
5742
+ "GR",
5743
+ "GT",
5744
+ "GU",
5745
+ "GW",
5746
+ "GY",
5747
+ "HK",
5748
+ "HN",
5749
+ "HR",
5750
+ "HT",
5751
+ "HU",
5752
+ "ID",
5753
+ "IE",
5754
+ "IL",
5755
+ "IM",
5756
+ "IN",
5757
+ "IO",
5758
+ "IQ",
5759
+ "IR",
5760
+ "IS",
5761
+ "IT",
5762
+ "JE",
5763
+ "JM",
5764
+ "JO",
5765
+ "JP",
5766
+ "KE",
5767
+ "KG",
5768
+ "KH",
5769
+ "KI",
5770
+ "KM",
5771
+ "KN",
5772
+ "KP",
5773
+ "KR",
5774
+ "KW",
5775
+ "KY",
5776
+ "KZ",
5777
+ "LA",
5778
+ "LB",
5779
+ "LC",
5780
+ "LI",
5781
+ "LK",
5782
+ "LR",
5783
+ "LS",
5784
+ "LT",
5785
+ "LU",
5786
+ "LV",
5787
+ "LY",
5788
+ "MA",
5789
+ "MC",
5790
+ "MD",
5791
+ "ME",
5792
+ "MF",
5793
+ "MG",
5794
+ "MH",
5795
+ "MK",
5796
+ "ML",
5797
+ "MM",
5798
+ "MN",
5799
+ "MO",
5800
+ "MP",
5801
+ "MQ",
5802
+ "MR",
5803
+ "MS",
5804
+ "MT",
5805
+ "MU",
5806
+ "MV",
5807
+ "MW",
5808
+ "MX",
5809
+ "MY",
5810
+ "MZ",
5811
+ "NA",
5812
+ "NC",
5813
+ "NE",
5814
+ "NF",
5815
+ "NG",
5816
+ "NI",
5817
+ "NL",
5818
+ "NO",
5819
+ "NP",
5820
+ "NR",
5821
+ "NU",
5822
+ "NZ",
5823
+ "OM",
5824
+ "PA",
5825
+ "PE",
5826
+ "PF",
5827
+ "PG",
5828
+ "PH",
5829
+ "PK",
5830
+ "PL",
5831
+ "PR",
5832
+ "PS",
5833
+ "PT",
5834
+ "PW",
5835
+ "PY",
5836
+ "QA",
5837
+ "RE",
5838
+ "RO",
5839
+ "RS",
5840
+ "RU",
5841
+ "RW",
5842
+ "SA",
5843
+ "SB",
5844
+ "SC",
5845
+ "SD",
5846
+ "SE",
5847
+ "SG",
5848
+ "SH",
5849
+ "SI",
5850
+ "SJ",
5851
+ "SK",
5852
+ "SL",
5853
+ "SM",
5854
+ "SN",
5855
+ "SO",
5856
+ "SR",
5857
+ "SS",
5858
+ "ST",
5859
+ "SV",
5860
+ "SX",
5861
+ "SY",
5862
+ "SZ",
5863
+ "TA",
5864
+ "TC",
5865
+ "TD",
5866
+ "TG",
5867
+ "TH",
5868
+ "TJ",
5869
+ "TK",
5870
+ "TL",
5871
+ "TM",
5872
+ "TN",
5873
+ "TO",
5874
+ "TR",
5875
+ "TT",
5876
+ "TV",
5877
+ "TW",
5878
+ "TZ",
5879
+ "UA",
5880
+ "UG",
5881
+ "US",
5882
+ "UY",
5883
+ "UZ",
5884
+ "VA",
5885
+ "VC",
5886
+ "VE",
5887
+ "VG",
5888
+ "VI",
5889
+ "VN",
5890
+ "VU",
5891
+ "WF",
5892
+ "WS",
5893
+ "XK",
5894
+ "YE",
5895
+ "YT",
5896
+ "ZA",
5897
+ "ZM",
5898
+ "ZW"
5899
+ ]
5900
+ },
5901
+ "description": "",
5902
+ "required": false
5903
+ },
5904
+ {
5905
+ "name": "open",
5906
+ "type": {
5907
+ "kind": "primitive",
5908
+ "name": "boolean"
5909
+ },
5910
+ "description": "",
5911
+ "required": false
5912
+ },
5913
+ {
5914
+ "name": "id",
5915
+ "type": {
5916
+ "kind": "primitive",
5917
+ "name": "string"
5918
+ },
5919
+ "description": "The component unique identifier.",
5920
+ "required": false,
5921
+ "category": "Identification"
5922
+ },
5923
+ {
5924
+ "name": "label",
5925
+ "type": {
5926
+ "kind": "primitive",
5927
+ "name": "string"
5928
+ },
5929
+ "description": "The label of the input.",
5930
+ "required": false,
5931
+ "category": "Content"
5932
+ },
5933
+ {
5934
+ "name": "required",
5935
+ "type": {
5936
+ "kind": "primitive",
5937
+ "name": "boolean"
5938
+ },
5939
+ "description": "If set to true, an asterisk (*) is displayed\nto indicate that the associated field is required.\n\nThe asterisk is decorative (`aria-hidden`). Required state for assistive\ntech should come from the associated control (e.g. native `required` on inputs).\nIf set to true, an asterisk (*) is displayed\nto indicate that the field is required.",
5940
+ "required": false,
5941
+ "category": "State"
5942
+ },
5943
+ {
5944
+ "name": "for",
5945
+ "type": {
5946
+ "kind": "primitive",
5947
+ "name": "string"
5948
+ },
5949
+ "description": "The form field associated with the label.",
5950
+ "required": false,
5951
+ "category": "Accessibility"
5952
+ },
5953
+ {
5954
+ "name": "labelPosition",
5955
+ "type": {
5956
+ "kind": "enum",
5957
+ "values": [
5958
+ "right",
5959
+ "left",
5960
+ "center",
5961
+ "topleft",
5962
+ "topright"
5963
+ ]
5964
+ },
5965
+ "description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
5966
+ "required": false,
5967
+ "category": "Presentation"
5968
+ },
5969
+ {
5970
+ "name": "size",
5971
+ "type": {
5972
+ "kind": "enum",
5973
+ "values": [
5974
+ "medium",
5975
+ "small",
5976
+ "large",
5977
+ "block",
5978
+ "xlarge",
5979
+ "xxlarge",
5980
+ "mini"
5981
+ ]
5982
+ },
5983
+ "description": "The size category of the field.",
5984
+ "required": false,
5985
+ "category": "Presentation"
5986
+ },
5987
+ {
5988
+ "name": "readonly",
5989
+ "type": {
5990
+ "kind": "primitive",
5991
+ "name": "boolean"
5992
+ },
5993
+ "description": "Whether the input is readonly.",
5994
+ "required": false,
5995
+ "category": "State"
5996
+ },
5997
+ {
5998
+ "name": "disabled",
5999
+ "type": {
6000
+ "kind": "primitive",
6001
+ "name": "boolean"
6002
+ },
6003
+ "description": "Whether the input is disabled.",
6004
+ "required": false,
6005
+ "category": "State"
6006
+ },
6007
+ {
6008
+ "name": "invalid",
6009
+ "type": {
6010
+ "kind": "primitive",
6011
+ "name": "boolean"
6012
+ },
6013
+ "description": "Whether the input is invalid.",
6014
+ "required": false,
6015
+ "category": "State"
6016
+ },
6017
+ {
6018
+ "name": "placeholder",
6019
+ "type": {
6020
+ "kind": "primitive",
6021
+ "name": "string"
6022
+ },
6023
+ "description": "Overrides the placeholder for the national number input. When omitted, the component\ndisplays zeros using the telephone format of the selected country.",
6024
+ "required": false,
6025
+ "category": "Content"
6026
+ },
6027
+ {
6028
+ "name": "defaultCountry",
6029
+ "type": {
6030
+ "kind": "enum",
6031
+ "values": [
6032
+ "AM",
6033
+ "PM",
6034
+ "AC",
6035
+ "AD",
6036
+ "AE",
6037
+ "AF",
6038
+ "AG",
6039
+ "AI",
6040
+ "AL",
6041
+ "AO",
6042
+ "AR",
6043
+ "AS",
6044
+ "AT",
6045
+ "AU",
6046
+ "AW",
6047
+ "AX",
6048
+ "AZ",
6049
+ "BA",
6050
+ "BB",
6051
+ "BD",
6052
+ "BE",
6053
+ "BF",
6054
+ "BG",
6055
+ "BH",
6056
+ "BI",
6057
+ "BJ",
6058
+ "BL",
6059
+ "BM",
6060
+ "BN",
6061
+ "BO",
6062
+ "BQ",
6063
+ "BR",
6064
+ "BS",
6065
+ "BT",
6066
+ "BW",
6067
+ "BY",
6068
+ "BZ",
6069
+ "CA",
6070
+ "CC",
6071
+ "CD",
6072
+ "CF",
6073
+ "CG",
6074
+ "CH",
6075
+ "CI",
6076
+ "CK",
6077
+ "CL",
6078
+ "CM",
6079
+ "CN",
6080
+ "CO",
6081
+ "CR",
6082
+ "CU",
6083
+ "CV",
6084
+ "CW",
6085
+ "CX",
6086
+ "CY",
6087
+ "CZ",
6088
+ "DE",
6089
+ "DJ",
6090
+ "DK",
6091
+ "DM",
6092
+ "DO",
6093
+ "DZ",
6094
+ "EC",
6095
+ "EE",
6096
+ "EG",
6097
+ "EH",
6098
+ "ER",
6099
+ "ES",
6100
+ "ET",
6101
+ "FI",
6102
+ "FJ",
6103
+ "FK",
6104
+ "FM",
6105
+ "FO",
6106
+ "FR",
6107
+ "GA",
6108
+ "GB",
6109
+ "GD",
6110
+ "GE",
6111
+ "GF",
6112
+ "GG",
6113
+ "GH",
6114
+ "GI",
6115
+ "GL",
6116
+ "GM",
6117
+ "GN",
6118
+ "GP",
6119
+ "GQ",
6120
+ "GR",
6121
+ "GT",
6122
+ "GU",
6123
+ "GW",
6124
+ "GY",
6125
+ "HK",
6126
+ "HN",
6127
+ "HR",
6128
+ "HT",
6129
+ "HU",
6130
+ "ID",
6131
+ "IE",
6132
+ "IL",
6133
+ "IM",
6134
+ "IN",
6135
+ "IO",
6136
+ "IQ",
6137
+ "IR",
6138
+ "IS",
6139
+ "IT",
6140
+ "JE",
6141
+ "JM",
6142
+ "JO",
6143
+ "JP",
6144
+ "KE",
6145
+ "KG",
6146
+ "KH",
6147
+ "KI",
6148
+ "KM",
6149
+ "KN",
6150
+ "KP",
6151
+ "KR",
6152
+ "KW",
6153
+ "KY",
6154
+ "KZ",
6155
+ "LA",
6156
+ "LB",
6157
+ "LC",
6158
+ "LI",
6159
+ "LK",
6160
+ "LR",
6161
+ "LS",
6162
+ "LT",
6163
+ "LU",
6164
+ "LV",
6165
+ "LY",
6166
+ "MA",
6167
+ "MC",
6168
+ "MD",
6169
+ "ME",
6170
+ "MF",
6171
+ "MG",
6172
+ "MH",
6173
+ "MK",
6174
+ "ML",
6175
+ "MM",
6176
+ "MN",
6177
+ "MO",
6178
+ "MP",
6179
+ "MQ",
6180
+ "MR",
6181
+ "MS",
6182
+ "MT",
6183
+ "MU",
6184
+ "MV",
6185
+ "MW",
6186
+ "MX",
6187
+ "MY",
6188
+ "MZ",
6189
+ "NA",
6190
+ "NC",
6191
+ "NE",
6192
+ "NF",
6193
+ "NG",
6194
+ "NI",
6195
+ "NL",
6196
+ "NO",
6197
+ "NP",
6198
+ "NR",
6199
+ "NU",
6200
+ "NZ",
6201
+ "OM",
6202
+ "PA",
6203
+ "PE",
6204
+ "PF",
6205
+ "PG",
6206
+ "PH",
6207
+ "PK",
6208
+ "PL",
6209
+ "PR",
6210
+ "PS",
6211
+ "PT",
6212
+ "PW",
6213
+ "PY",
6214
+ "QA",
6215
+ "RE",
6216
+ "RO",
6217
+ "RS",
6218
+ "RU",
6219
+ "RW",
6220
+ "SA",
6221
+ "SB",
6222
+ "SC",
6223
+ "SD",
6224
+ "SE",
6225
+ "SG",
6226
+ "SH",
6227
+ "SI",
6228
+ "SJ",
6229
+ "SK",
6230
+ "SL",
6231
+ "SM",
6232
+ "SN",
6233
+ "SO",
6234
+ "SR",
6235
+ "SS",
6236
+ "ST",
6237
+ "SV",
6238
+ "SX",
6239
+ "SY",
6240
+ "SZ",
6241
+ "TA",
6242
+ "TC",
6243
+ "TD",
6244
+ "TG",
6245
+ "TH",
6246
+ "TJ",
6247
+ "TK",
6248
+ "TL",
6249
+ "TM",
6250
+ "TN",
6251
+ "TO",
6252
+ "TR",
6253
+ "TT",
6254
+ "TV",
6255
+ "TW",
6256
+ "TZ",
6257
+ "UA",
6258
+ "UG",
6259
+ "US",
6260
+ "UY",
6261
+ "UZ",
6262
+ "VA",
6263
+ "VC",
6264
+ "VE",
6265
+ "VG",
6266
+ "VI",
6267
+ "VN",
6268
+ "VU",
6269
+ "WF",
6270
+ "WS",
6271
+ "XK",
6272
+ "YE",
6273
+ "YT",
6274
+ "ZA",
6275
+ "ZM",
6276
+ "ZW"
6277
+ ]
6278
+ },
6279
+ "description": "The fallback country used when no country can be derived from `modelValue` and no\ncontrolled `country` is provided. Its precedence is after `country` and before\n`locale` and the first available country.",
6280
+ "required": false,
6281
+ "category": "Configuration"
6282
+ },
6283
+ {
6284
+ "name": "countries",
6285
+ "type": {
6286
+ "kind": "array",
6287
+ "elementType": {
6288
+ "name": "enum",
6289
+ "value": [
6290
+ "AM",
6291
+ "PM",
6292
+ "AC",
6293
+ "AD",
6294
+ "AE",
6295
+ "AF",
6296
+ "AG",
6297
+ "AI",
6298
+ "AL",
6299
+ "AO",
6300
+ "AR",
6301
+ "AS",
6302
+ "AT",
6303
+ "AU",
6304
+ "AW",
6305
+ "AX",
6306
+ "AZ",
6307
+ "BA",
6308
+ "BB",
6309
+ "BD",
6310
+ "BE",
6311
+ "BF",
6312
+ "BG",
6313
+ "BH",
6314
+ "BI",
6315
+ "BJ",
6316
+ "BL",
6317
+ "BM",
6318
+ "BN",
6319
+ "BO",
6320
+ "BQ",
6321
+ "BR",
6322
+ "BS",
6323
+ "BT",
6324
+ "BW",
6325
+ "BY",
6326
+ "BZ",
6327
+ "CA",
6328
+ "CC",
6329
+ "CD",
6330
+ "CF",
6331
+ "CG",
6332
+ "CH",
6333
+ "CI",
6334
+ "CK",
6335
+ "CL",
6336
+ "CM",
6337
+ "CN",
6338
+ "CO",
6339
+ "CR",
6340
+ "CU",
6341
+ "CV",
6342
+ "CW",
6343
+ "CX",
6344
+ "CY",
6345
+ "CZ",
6346
+ "DE",
6347
+ "DJ",
6348
+ "DK",
6349
+ "DM",
6350
+ "DO",
6351
+ "DZ",
6352
+ "EC",
6353
+ "EE",
6354
+ "EG",
6355
+ "EH",
6356
+ "ER",
6357
+ "ES",
6358
+ "ET",
6359
+ "FI",
6360
+ "FJ",
6361
+ "FK",
6362
+ "FM",
6363
+ "FO",
6364
+ "FR",
6365
+ "GA",
6366
+ "GB",
6367
+ "GD",
6368
+ "GE",
6369
+ "GF",
6370
+ "GG",
6371
+ "GH",
6372
+ "GI",
6373
+ "GL",
6374
+ "GM",
6375
+ "GN",
6376
+ "GP",
6377
+ "GQ",
6378
+ "GR",
6379
+ "GT",
6380
+ "GU",
6381
+ "GW",
6382
+ "GY",
6383
+ "HK",
6384
+ "HN",
6385
+ "HR",
6386
+ "HT",
6387
+ "HU",
6388
+ "ID",
6389
+ "IE",
6390
+ "IL",
6391
+ "IM",
6392
+ "IN",
6393
+ "IO",
6394
+ "IQ",
6395
+ "IR",
6396
+ "IS",
6397
+ "IT",
6398
+ "JE",
6399
+ "JM",
6400
+ "JO",
6401
+ "JP",
6402
+ "KE",
6403
+ "KG",
6404
+ "KH",
6405
+ "KI",
6406
+ "KM",
6407
+ "KN",
6408
+ "KP",
6409
+ "KR",
6410
+ "KW",
6411
+ "KY",
6412
+ "KZ",
6413
+ "LA",
6414
+ "LB",
6415
+ "LC",
6416
+ "LI",
6417
+ "LK",
6418
+ "LR",
6419
+ "LS",
6420
+ "LT",
6421
+ "LU",
6422
+ "LV",
6423
+ "LY",
6424
+ "MA",
6425
+ "MC",
6426
+ "MD",
6427
+ "ME",
6428
+ "MF",
6429
+ "MG",
6430
+ "MH",
6431
+ "MK",
6432
+ "ML",
6433
+ "MM",
6434
+ "MN",
6435
+ "MO",
6436
+ "MP",
6437
+ "MQ",
6438
+ "MR",
6439
+ "MS",
6440
+ "MT",
6441
+ "MU",
6442
+ "MV",
6443
+ "MW",
6444
+ "MX",
6445
+ "MY",
6446
+ "MZ",
6447
+ "NA",
6448
+ "NC",
6449
+ "NE",
6450
+ "NF",
6451
+ "NG",
6452
+ "NI",
6453
+ "NL",
6454
+ "NO",
6455
+ "NP",
6456
+ "NR",
6457
+ "NU",
6458
+ "NZ",
6459
+ "OM",
6460
+ "PA",
6461
+ "PE",
6462
+ "PF",
6463
+ "PG",
6464
+ "PH",
6465
+ "PK",
6466
+ "PL",
6467
+ "PR",
6468
+ "PS",
6469
+ "PT",
6470
+ "PW",
6471
+ "PY",
6472
+ "QA",
6473
+ "RE",
6474
+ "RO",
6475
+ "RS",
6476
+ "RU",
6477
+ "RW",
6478
+ "SA",
6479
+ "SB",
6480
+ "SC",
6481
+ "SD",
6482
+ "SE",
6483
+ "SG",
6484
+ "SH",
6485
+ "SI",
6486
+ "SJ",
6487
+ "SK",
6488
+ "SL",
6489
+ "SM",
6490
+ "SN",
6491
+ "SO",
6492
+ "SR",
6493
+ "SS",
6494
+ "ST",
6495
+ "SV",
6496
+ "SX",
6497
+ "SY",
6498
+ "SZ",
6499
+ "TA",
6500
+ "TC",
6501
+ "TD",
6502
+ "TG",
6503
+ "TH",
6504
+ "TJ",
6505
+ "TK",
6506
+ "TL",
6507
+ "TM",
6508
+ "TN",
6509
+ "TO",
6510
+ "TR",
6511
+ "TT",
6512
+ "TV",
6513
+ "TW",
6514
+ "TZ",
6515
+ "UA",
6516
+ "UG",
6517
+ "US",
6518
+ "UY",
6519
+ "UZ",
6520
+ "VA",
6521
+ "VC",
6522
+ "VE",
6523
+ "VG",
6524
+ "VI",
6525
+ "VN",
6526
+ "VU",
6527
+ "WF",
6528
+ "WS",
6529
+ "XK",
6530
+ "YE",
6531
+ "YT",
6532
+ "ZA",
6533
+ "ZM",
6534
+ "ZW"
6535
+ ]
6536
+ }
6537
+ },
6538
+ "description": "The countries available for selection, in display order.\nAll supported countries are shown when this property is omitted.\nValid non-geographic numbers (for example, `+800`) are accepted only when this\nproperty is omitted because they do not map to a selectable country.\nThis filters the options at runtime; it does not reduce the bundled flag stylesheet.",
6539
+ "required": false,
6540
+ "category": "Configuration"
6541
+ },
6542
+ {
6543
+ "name": "locale",
6544
+ "type": {
6545
+ "kind": "primitive",
6546
+ "name": "string"
6547
+ },
6548
+ "description": "The locale used to display, sort, and search country names. Its region is also used\nas a fallback country after `country` and `defaultCountry`. When omitted, `en-US`\nis used for deterministic server rendering.",
6549
+ "default": "en-US",
6550
+ "required": false,
6551
+ "category": "Configuration"
6552
+ },
6553
+ {
6554
+ "name": "clearable",
6555
+ "type": {
6556
+ "kind": "primitive",
6557
+ "name": "boolean"
6558
+ },
6559
+ "description": "Whether the value of the field can be cleared.",
6560
+ "required": false,
6561
+ "category": "Behavior"
6562
+ },
6563
+ {
6564
+ "name": "autoValidate",
6565
+ "type": {
6566
+ "kind": "primitive",
6567
+ "name": "boolean"
6568
+ },
6569
+ "description": "Whether the component automatically displays validation feedback after blur.\nDisable this property when validation is managed externally through `invalid`.",
6570
+ "default": "true",
6571
+ "required": false,
6572
+ "category": "Behavior"
6573
+ },
6574
+ {
6575
+ "name": "inline",
6576
+ "type": {
6577
+ "kind": "primitive",
6578
+ "name": "boolean"
6579
+ },
6580
+ "description": "Whether to disable teleporting the country selector overlay.",
6581
+ "required": false,
6582
+ "category": "Behavior"
6583
+ },
6584
+ {
6585
+ "name": "texts",
6586
+ "type": {
6587
+ "kind": "object",
6588
+ "fields": {}
6589
+ },
6590
+ "description": "Custom text configurations.",
6591
+ "default": "DEFAULT_TEXTS",
6592
+ "required": false,
6593
+ "category": "Configuration"
6594
+ }
6595
+ ],
6596
+ "events": [
6597
+ {
6598
+ "name": "update:modelValue",
6599
+ "description": "",
6600
+ "type": "[value: string]"
6601
+ },
6602
+ {
6603
+ "name": "update:open",
6604
+ "description": "",
6605
+ "type": "[value: boolean]"
6606
+ },
6607
+ {
6608
+ "name": "click:clear",
6609
+ "description": "",
6610
+ "type": "[event: Event]"
6611
+ },
6612
+ {
6613
+ "name": "update:country",
6614
+ "description": "",
6615
+ "type": "[value: CountryCode | undefined]"
6616
+ },
6617
+ {
6618
+ "name": "validity-change",
6619
+ "description": "",
6620
+ "type": "[validity: QPhoneFieldValidity]"
6621
+ }
6622
+ ],
6623
+ "slots": [
6624
+ {
6625
+ "name": "label.prepend",
6626
+ "description": "Content before the field label."
6627
+ },
6628
+ {
6629
+ "name": "label.append",
6630
+ "description": "Content after the field label."
6631
+ },
6632
+ {
6633
+ "name": "append",
6634
+ "description": "Content after the telephone input and before the clear button."
6635
+ },
6636
+ {
6637
+ "name": "extras",
6638
+ "description": "Supporting or validation content associated with the input through `aria-describedby`.\nApply `validationId` to a more specific descendant only when an additional association\nis needed; the component always provides a wrapper with this ID."
6639
+ }
6640
+ ]
6641
+ },
6642
+ "examples": [
6643
+ {
6644
+ "title": "Default",
6645
+ "description": "Uses the default `en-US` locale and emits a complete international value.",
6646
+ "code": "<QPhoneField :label=\"Phone number\" :clearable=\"true\" :size=\"large\" />"
6647
+ },
6648
+ {
6649
+ "title": "International Value",
6650
+ "description": "Derives the country, flag, calling code, and national presentation from an E.164 value.",
6651
+ "code": "<QPhoneField :model-value=\"+442079460018\" />"
6652
+ },
6653
+ {
6654
+ "title": "Restricted Countries",
6655
+ "description": "Restricts and orders the countries shown in the searchable selector. This is a runtime filter; the component still includes the complete flag stylesheet.",
6656
+ "code": "<QPhoneField :countries=\"['PT', 'ES', 'FR', 'GB']\" :model-value=\"+351912345678\" />"
6657
+ },
6658
+ {
6659
+ "title": "Paste Detection",
6660
+ "description": "Paste a number beginning with `+` or `00` to update the country automatically.",
6661
+ "code": "<QPhoneField :label=\"Paste an international number\" />"
6662
+ },
6663
+ {
6664
+ "title": "Required Validation",
6665
+ "description": "Shows the built-in validation message after the required field loses focus.",
6666
+ "code": "<QPhoneField :required=\"true\" :clearable=\"false\" />"
6667
+ },
6668
+ {
6669
+ "title": "External Validation",
6670
+ "description": "Keeps the required semantics while delegating validation feedback to the application.",
6671
+ "code": "<QPhoneField :required=\"true\" :auto-validate=\"false\" :clearable=\"false\" />"
6672
+ },
6673
+ {
6674
+ "title": "Readonly",
6675
+ "description": "Prevents editing and country selection while retaining the formatted value.",
6676
+ "code": "<QPhoneField :model-value=\"+351912345678\" :readonly=\"true\" />"
6677
+ },
6678
+ {
6679
+ "title": "Disabled",
6680
+ "description": "Disables all interaction with the field.",
6681
+ "code": "<QPhoneField :model-value=\"+351912345678\" :disabled=\"true\" />"
6682
+ },
6683
+ {
6684
+ "title": "Invalid",
6685
+ "description": "Combines an application-provided invalid state with the component validation styling.",
6686
+ "code": "<QPhoneField :model-value=\"+35191\" :invalid=\"true\" />"
6687
+ }
6688
+ ]
6689
+ },
5635
6690
  {
5636
6691
  "name": "QPopover",
5637
6692
  "description": "A floating container that displays contextual content, triggered by a button.",
@@ -6441,6 +7496,15 @@
6441
7496
  "description": "",
6442
7497
  "required": false
6443
7498
  },
7499
+ {
7500
+ "name": "open",
7501
+ "type": {
7502
+ "kind": "primitive",
7503
+ "name": "boolean"
7504
+ },
7505
+ "description": "",
7506
+ "required": false
7507
+ },
6444
7508
  {
6445
7509
  "name": "id",
6446
7510
  "type": {
@@ -6592,6 +7656,39 @@
6592
7656
  "required": false,
6593
7657
  "category": "Behavior"
6594
7658
  },
7659
+ {
7660
+ "name": "overlayAnchor",
7661
+ "type": {
7662
+ "kind": "union",
7663
+ "types": [
7664
+ {
7665
+ "name": "other",
7666
+ "value": "null"
7667
+ },
7668
+ {
7669
+ "name": "string"
7670
+ },
7671
+ {
7672
+ "name": "object",
7673
+ "value": {}
7674
+ }
7675
+ ]
7676
+ },
7677
+ "description": "An alternative element used to anchor and size the options overlay.",
7678
+ "required": false,
7679
+ "category": "Identification"
7680
+ },
7681
+ {
7682
+ "name": "selectOnTab",
7683
+ "type": {
7684
+ "kind": "primitive",
7685
+ "name": "boolean"
7686
+ },
7687
+ "description": "Whether pressing Tab while an option is focused selects it before focus moves away.",
7688
+ "default": "true",
7689
+ "required": false,
7690
+ "category": "Behavior"
7691
+ },
6595
7692
  {
6596
7693
  "name": "multiple",
6597
7694
  "type": {
@@ -6683,6 +7780,11 @@
6683
7780
  "description": "",
6684
7781
  "type": "[value: any]"
6685
7782
  },
7783
+ {
7784
+ "name": "update:open",
7785
+ "description": "",
7786
+ "type": "[value: boolean]"
7787
+ },
6686
7788
  {
6687
7789
  "name": "before-show",
6688
7790
  "description": "",
@@ -6709,6 +7811,10 @@
6709
7811
  "name": "prepend",
6710
7812
  "description": ""
6711
7813
  },
7814
+ {
7815
+ "name": "value",
7816
+ "description": ""
7817
+ },
6712
7818
  {
6713
7819
  "name": "append",
6714
7820
  "description": ""
@@ -7588,9 +8694,9 @@
7588
8694
  "type": {
7589
8695
  "kind": "enum",
7590
8696
  "values": [
8697
+ "off",
7591
8698
  "soft",
7592
- "hard",
7593
- "off"
8699
+ "hard"
7594
8700
  ]
7595
8701
  },
7596
8702
  "description": "Whether the text of the text area field can be wrapped and how.",