@quidgest/ui 0.17.7 → 0.17.9

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.17.7",
2
+ "version": "0.17.9",
3
3
  "components": [
4
4
  {
5
5
  "name": "QAccordion",
@@ -4739,6 +4739,324 @@
4739
4739
  }
4740
4740
  ]
4741
4741
  },
4742
+ {
4743
+ "name": "QObfuscation",
4744
+ "description": "Permission-based data obfuscation for consulta / sensitive fields. - No permission: plain \"Restricted\" (or bullets) — no action. - Can reveal: a padlock toggles the value. When revealed, either: - place scoped-slot `qObfuscationHideAction` on the field's `label.append` (QObfuscation then hides its own label/padlock), or - omit it and QObfuscation keeps its label with the hide padlock. - Set `loading` while fetching on reveal (before the value becomes visible).",
4745
+ "meta": {
4746
+ "props": [
4747
+ {
4748
+ "name": "revealed",
4749
+ "type": {
4750
+ "kind": "primitive",
4751
+ "name": "boolean"
4752
+ },
4753
+ "description": "",
4754
+ "required": false
4755
+ },
4756
+ {
4757
+ "name": "id",
4758
+ "type": {
4759
+ "kind": "primitive",
4760
+ "name": "string"
4761
+ },
4762
+ "description": "The component unique identifier.",
4763
+ "required": false,
4764
+ "category": "Identification"
4765
+ },
4766
+ {
4767
+ "name": "label",
4768
+ "type": {
4769
+ "kind": "primitive",
4770
+ "name": "string"
4771
+ },
4772
+ "description": "The label of the input.",
4773
+ "required": false,
4774
+ "category": "Content"
4775
+ },
4776
+ {
4777
+ "name": "required",
4778
+ "type": {
4779
+ "kind": "primitive",
4780
+ "name": "boolean"
4781
+ },
4782
+ "description": "If set to true, an asterisk (*) is displayed\nto indicate that the associated field is required.\nIf set to true, an asterisk (*) is displayed\nto indicate that the field is required.",
4783
+ "default": "false",
4784
+ "required": false,
4785
+ "category": "State"
4786
+ },
4787
+ {
4788
+ "name": "for",
4789
+ "type": {
4790
+ "kind": "primitive",
4791
+ "name": "string"
4792
+ },
4793
+ "description": "The form field associated with the label.",
4794
+ "required": false,
4795
+ "category": "Accessibility"
4796
+ },
4797
+ {
4798
+ "name": "labelPosition",
4799
+ "type": {
4800
+ "kind": "enum",
4801
+ "values": [
4802
+ "right",
4803
+ "left",
4804
+ "center",
4805
+ "topleft",
4806
+ "topright"
4807
+ ]
4808
+ },
4809
+ "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",
4810
+ "default": "topleft",
4811
+ "required": false,
4812
+ "category": "Presentation"
4813
+ },
4814
+ {
4815
+ "name": "size",
4816
+ "type": {
4817
+ "kind": "enum",
4818
+ "values": [
4819
+ "medium",
4820
+ "small",
4821
+ "large",
4822
+ "block",
4823
+ "xlarge",
4824
+ "xxlarge",
4825
+ "mini"
4826
+ ]
4827
+ },
4828
+ "description": "The size category of the field.",
4829
+ "default": "medium",
4830
+ "required": false,
4831
+ "category": "Presentation"
4832
+ },
4833
+ {
4834
+ "name": "readonly",
4835
+ "type": {
4836
+ "kind": "primitive",
4837
+ "name": "boolean"
4838
+ },
4839
+ "description": "Whether the input is readonly.",
4840
+ "required": false,
4841
+ "category": "State"
4842
+ },
4843
+ {
4844
+ "name": "disabled",
4845
+ "type": {
4846
+ "kind": "primitive",
4847
+ "name": "boolean"
4848
+ },
4849
+ "description": "Whether the input is disabled.",
4850
+ "required": false,
4851
+ "category": "State"
4852
+ },
4853
+ {
4854
+ "name": "invalid",
4855
+ "type": {
4856
+ "kind": "primitive",
4857
+ "name": "boolean"
4858
+ },
4859
+ "description": "Whether the input is invalid.",
4860
+ "required": false,
4861
+ "category": "State"
4862
+ },
4863
+ {
4864
+ "name": "revealable",
4865
+ "type": {
4866
+ "kind": "primitive",
4867
+ "name": "boolean"
4868
+ },
4869
+ "description": "When false, the value stays masked with no reveal control (PDF \"Obfuscation\").\nWhen true, the user can reveal and hide the slot content (PDF \"Allow data to be revealed\").",
4870
+ "default": "false",
4871
+ "required": false,
4872
+ "category": "Behavior"
4873
+ },
4874
+ {
4875
+ "name": "loading",
4876
+ "type": {
4877
+ "kind": "primitive",
4878
+ "name": "boolean"
4879
+ },
4880
+ "description": "When true, shows the reveal button in a loading state while sensitive\ndata is being fetched. Forwarded to the reveal `QButton`.",
4881
+ "default": "false",
4882
+ "required": false,
4883
+ "category": "State"
4884
+ },
4885
+ {
4886
+ "name": "mask",
4887
+ "type": {
4888
+ "kind": "enum",
4889
+ "values": [
4890
+ "restricted",
4891
+ "bullets"
4892
+ ]
4893
+ },
4894
+ "description": "Mask style shown while the slot content is hidden.",
4895
+ "default": "restricted",
4896
+ "required": false,
4897
+ "category": "Presentation"
4898
+ },
4899
+ {
4900
+ "name": "bulletCount",
4901
+ "type": {
4902
+ "kind": "primitive",
4903
+ "name": "number"
4904
+ },
4905
+ "description": "Number of bullet characters when `mask` is `bullets`.",
4906
+ "default": "12",
4907
+ "required": false,
4908
+ "category": "Presentation"
4909
+ },
4910
+ {
4911
+ "name": "icons",
4912
+ "type": {
4913
+ "kind": "object",
4914
+ "fields": {}
4915
+ },
4916
+ "description": "Custom icon configurations.",
4917
+ "default": "DEFAULT_ICONS",
4918
+ "required": false,
4919
+ "category": "Configuration"
4920
+ },
4921
+ {
4922
+ "name": "texts",
4923
+ "type": {
4924
+ "kind": "unknown",
4925
+ "raw": "Partial<{ restricted: string; showData: string; hideData: string; }> | undefined"
4926
+ },
4927
+ "description": "Custom text configurations.",
4928
+ "default": "DEFAULT_TEXTS",
4929
+ "required": false,
4930
+ "category": "Configuration"
4931
+ }
4932
+ ],
4933
+ "events": [
4934
+ {
4935
+ "name": "hide",
4936
+ "description": "",
4937
+ "type": "[]"
4938
+ },
4939
+ {
4940
+ "name": "update:revealed",
4941
+ "description": "",
4942
+ "type": "[value: boolean]"
4943
+ },
4944
+ {
4945
+ "name": "reveal",
4946
+ "description": "",
4947
+ "type": "[]"
4948
+ }
4949
+ ],
4950
+ "slots": [
4951
+ {
4952
+ "name": "default",
4953
+ "description": ""
4954
+ },
4955
+ {
4956
+ "name": "reveal",
4957
+ "description": ""
4958
+ },
4959
+ {
4960
+ "name": "mask",
4961
+ "description": ""
4962
+ },
4963
+ {
4964
+ "name": "label.prepend",
4965
+ "description": ""
4966
+ },
4967
+ {
4968
+ "name": "label.append",
4969
+ "description": ""
4970
+ },
4971
+ {
4972
+ "name": "extras",
4973
+ "description": ""
4974
+ }
4975
+ ]
4976
+ },
4977
+ "examples": [
4978
+ {
4979
+ "title": "Obfuscation",
4980
+ "description": "Role without permission — plain Restricted, no reveal control.",
4981
+ "code": "<QObfuscation :label=\"Field label\" :revealable=\"false\" />"
4982
+ },
4983
+ {
4984
+ "title": "Obfuscation Bullets",
4985
+ "description": "Bullet mask when obfuscation uses dots instead of Restricted.",
4986
+ "code": "<QObfuscation :label=\"Field label\" :revealable=\"false\" :mask=\"bullets\" :bullet-count=\"12\" />"
4987
+ },
4988
+ {
4989
+ "title": "Revealable Hidden",
4990
+ "description": "Allow reveal — masked state displays only a padlock (PDF step 1).",
4991
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\">\n\t\t\t\tField value revealed\n\t\t\t</q-obfuscation>"
4992
+ },
4993
+ {
4994
+ "title": "Revealable Shown",
4995
+ "description": "Allow reveal — value shown with an open padlock on the slotted field label.",
4996
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\"\n\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t<q-text-field :label=\"args.label\" v-model=\"value\">\n\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t</template>\n\t\t\t\t</q-text-field>\n\t\t\t</q-obfuscation>"
4997
+ },
4998
+ {
4999
+ "title": "Revealable Text Field",
5000
+ "description": "Editable text field gated behind the padlock control.",
5001
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\"\n\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t<q-text-field v-model=\"taxId\" :label=\"args.label\">\n\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t</template>\n\t\t\t\t</q-text-field>\n\t\t\t</q-obfuscation>"
5002
+ },
5003
+ {
5004
+ "title": "Revealable Password Field",
5005
+ "description": "Password field — hide control on the field label.",
5006
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\"\n\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t<q-password-field v-model=\"secret\" :label=\"args.label\">\n\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t</template>\n\t\t\t\t</q-password-field>\n\t\t\t</q-obfuscation>"
5007
+ },
5008
+ {
5009
+ "title": "Revealable Text Area",
5010
+ "description": "Multi-line notes gated behind the padlock.",
5011
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\"\n\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t<q-text-area v-model=\"notes\" :label=\"args.label\" rows=\"3\">\n\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t</template>\n\t\t\t\t</q-text-area>\n\t\t\t</q-obfuscation>"
5012
+ },
5013
+ {
5014
+ "title": "Revealable Combobox",
5015
+ "description": "Combobox with suggestions — hide control on the field label.",
5016
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\"\n\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t<q-combobox v-model=\"city\" :label=\"args.label\" :items=\"items\">\n\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t</template>\n\t\t\t\t</q-combobox>\n\t\t\t</q-obfuscation>"
5017
+ },
5018
+ {
5019
+ "title": "Revealable Color Picker",
5020
+ "description": "Color picker — hide control on the field label.",
5021
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\"\n\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t<q-color-picker v-model=\"color\" :label=\"args.label\">\n\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t</template>\n\t\t\t\t</q-color-picker>\n\t\t\t</q-obfuscation>"
5022
+ },
5023
+ {
5024
+ "title": "Revealable Select",
5025
+ "description": "Select has no `label.append` — omit the hide action so QObfuscation keeps its own label and padlock while gating the select.",
5026
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\">\n\t\t\t\t<q-select v-model=\"classification\" :items=\"items\" />\n\t\t\t</q-obfuscation>"
5027
+ },
5028
+ {
5029
+ "title": "Revealable Date Time Picker",
5030
+ "description": "Date picker has no `label.append` — QObfuscation keeps the label and padlock.",
5031
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\">\n\t\t\t\t<q-date-time-picker\n\t\t\t\t\tv-model=\"dateOfBirth\"\n\t\t\t\t\tformat=\"dd/MM/yyyy\"\n\t\t\t\t\tplaceholder=\"Choose date\" />\n\t\t\t</q-obfuscation>"
5032
+ },
5033
+ {
5034
+ "title": "Revealable Checkbox",
5035
+ "description": "Checkbox has no `label.append` — place `qObfuscationHideAction` beside the control.",
5036
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\"\n\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t<div style=\"display: inline-flex; align-items: center; gap: 0.5rem;\">\n\t\t\t\t\t<q-checkbox v-model=\"accepted\" :label=\"args.label\" />\n\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t</div>\n\t\t\t</q-obfuscation>"
5037
+ },
5038
+ {
5039
+ "title": "Revealable Radio Group",
5040
+ "description": "Radio group has no `label.append` — place `qObfuscationHideAction` beside the group.",
5041
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\tv-model:revealed=\"revealed\"\n\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t<div style=\"display: flex; align-items: flex-start; gap: 0.5rem;\">\n\t\t\t\t\t<q-radio-group v-model=\"plan\" :label=\"args.label\">\n\t\t\t\t\t\t<q-radio-button label=\"Basic\" value=\"basic\" />\n\t\t\t\t\t\t<q-radio-button label=\"Standard\" value=\"standard\" />\n\t\t\t\t\t\t<q-radio-button label=\"Premium\" value=\"premium\" />\n\t\t\t\t\t</q-radio-group>\n\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t</div>\n\t\t\t</q-obfuscation>"
5042
+ },
5043
+ {
5044
+ "title": "Field Variants",
5045
+ "description": "Several field types together — pattern gallery.",
5046
+ "code": "<div style=\"display: flex; flex-direction: column; gap: 1.25rem; max-width: 28rem;\">\n\t\t\t\t<q-obfuscation\n\t\t\t\t\tlabel=\"Tax ID\"\n\t\t\t\t\tv-bind=\"args\"\n\t\t\t\t\tv-model:revealed=\"revealedText\"\n\t\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t\t<q-text-field v-model=\"taxId\" label=\"Tax ID\">\n\t\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t\t</template>\n\t\t\t\t\t</q-text-field>\n\t\t\t\t</q-obfuscation>\n\n\t\t\t\t<q-obfuscation\n\t\t\t\t\tlabel=\"API secret\"\n\t\t\t\t\tv-bind=\"args\"\n\t\t\t\t\tv-model:revealed=\"revealedPassword\"\n\t\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t\t<q-password-field v-model=\"secret\" label=\"API secret\">\n\t\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t\t</template>\n\t\t\t\t\t</q-password-field>\n\t\t\t\t</q-obfuscation>\n\n\t\t\t\t<q-obfuscation\n\t\t\t\t\tlabel=\"Private notes\"\n\t\t\t\t\tv-bind=\"args\"\n\t\t\t\t\tv-model:revealed=\"revealedNotes\"\n\t\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t\t<q-text-area v-model=\"notes\" label=\"Private notes\" rows=\"3\">\n\t\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t\t</template>\n\t\t\t\t\t</q-text-area>\n\t\t\t\t</q-obfuscation>\n\n\t\t\t\t<q-obfuscation\n\t\t\t\t\tlabel=\"Home city\"\n\t\t\t\t\tv-bind=\"args\"\n\t\t\t\t\tv-model:revealed=\"revealedCity\"\n\t\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t\t<q-combobox v-model=\"city\" label=\"Home city\" :items=\"comboboxItems\">\n\t\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t\t</template>\n\t\t\t\t\t</q-combobox>\n\t\t\t\t</q-obfuscation>\n\n\t\t\t\t<q-obfuscation\n\t\t\t\t\tlabel=\"Brand accent\"\n\t\t\t\t\tv-bind=\"args\"\n\t\t\t\t\tv-model:revealed=\"revealedColor\"\n\t\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t\t<q-color-picker v-model=\"color\" label=\"Brand accent\">\n\t\t\t\t\t\t<template #label.append>\n\t\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t\t</template>\n\t\t\t\t\t</q-color-picker>\n\t\t\t\t</q-obfuscation>\n\n\t\t\t\t<q-obfuscation\n\t\t\t\t\tlabel=\"Classification\"\n\t\t\t\t\tv-bind=\"args\"\n\t\t\t\t\tv-model:revealed=\"revealedSelect\">\n\t\t\t\t\t<q-select v-model=\"classification\" :items=\"selectItems\" />\n\t\t\t\t</q-obfuscation>\n\n\t\t\t\t<q-obfuscation\n\t\t\t\t\tlabel=\"Date of birth\"\n\t\t\t\t\tv-bind=\"args\"\n\t\t\t\t\tv-model:revealed=\"revealedDate\">\n\t\t\t\t\t<q-date-time-picker\n\t\t\t\t\t\tv-model=\"dateOfBirth\"\n\t\t\t\t\t\tformat=\"dd/MM/yyyy\"\n\t\t\t\t\t\tplaceholder=\"Choose date\" />\n\t\t\t\t</q-obfuscation>\n\n\t\t\t\t<q-obfuscation\n\t\t\t\t\tlabel=\"Terms accepted\"\n\t\t\t\t\tv-bind=\"args\"\n\t\t\t\t\tv-model:revealed=\"revealedCheckbox\"\n\t\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t\t<div style=\"display: inline-flex; align-items: center; gap: 0.5rem;\">\n\t\t\t\t\t\t<q-checkbox v-model=\"accepted\" label=\"Terms accepted\" />\n\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t</div>\n\t\t\t\t</q-obfuscation>\n\n\t\t\t\t<q-obfuscation\n\t\t\t\t\tlabel=\"Subscription plan\"\n\t\t\t\t\tv-bind=\"args\"\n\t\t\t\t\tv-model:revealed=\"revealedRadio\"\n\t\t\t\t\tv-slot=\"{ qObfuscationHideAction }\">\n\t\t\t\t\t<div style=\"display: flex; align-items: flex-start; gap: 0.5rem;\">\n\t\t\t\t\t\t<q-radio-group v-model=\"plan\" label=\"Subscription plan\">\n\t\t\t\t\t\t\t<q-radio-button label=\"Basic\" value=\"basic\" />\n\t\t\t\t\t\t\t<q-radio-button label=\"Standard\" value=\"standard\" />\n\t\t\t\t\t\t\t<q-radio-button label=\"Premium\" value=\"premium\" />\n\t\t\t\t\t\t</q-radio-group>\n\t\t\t\t\t\t<component :is=\"qObfuscationHideAction\" />\n\t\t\t\t\t</div>\n\t\t\t\t</q-obfuscation>\n\t\t\t</div>"
5047
+ },
5048
+ {
5049
+ "title": "Loading",
5050
+ "description": "Simulated server fetch after reveal — spinner until data is ready.",
5051
+ "code": "<q-obfuscation\n\t\t\t\tv-bind=\"args\"\n\t\t\t\t:loading=\"loading\"\n\t\t\t\tv-model:revealed=\"revealed\"\n\t\t\t\t@hide=\"onHide\">\n\t\t\t\t<template #reveal>\n\t\t\t\t\t<q-button\n\t\t\t\t\t\tvariant=\"text\"\n\t\t\t\t\t\tborderless\n\t\t\t\t\t\tblock\n\t\t\t\t\t\tclass=\"q-obfuscation__action\"\n\t\t\t\t\t\t:loading=\"loading\"\n\t\t\t\t\t\tlabel=\"Show data\"\n\t\t\t\t\t\tdata-testid=\"q-obfuscation__reveal\"\n\t\t\t\t\t\t@click=\"fetchAndReveal\">\n\t\t\t\t\t\t<q-icon icon=\"lock\" class=\"q-obfuscation__icon\" />\n\t\t\t\t\t</q-button>\n\t\t\t\t</template>\n\t\t\t\t{{ value }}\n\t\t\t</q-obfuscation>"
5052
+ },
5053
+ {
5054
+ "title": "Multiple Fields",
5055
+ "description": "PDF-style consulta grid: mixed restricted vs revealable fields.",
5056
+ "code": "<div style=\"display: grid; grid-template-columns: 10rem 1fr 10rem 1fr; gap: 0.75rem 1.5rem; max-width: 44rem; align-items: baseline;\">\n\t\t\t\t<span style=\"opacity: 0.8;\">{{ args.label }}</span>\n\t\t\t\t<q-obfuscation :revealable=\"false\" />\n\n\t\t\t\t<span style=\"opacity: 0.8;\">{{ args.label }}</span>\n\t\t\t\t<q-obfuscation\n\t\t\t\t\tv-bind=\"args\"\n\t\t\t\t\tv-model:revealed=\"revealedA\">\n\t\t\t\t\tField value revealed\n\t\t\t\t</q-obfuscation>\n\n\t\t\t\t<span style=\"opacity: 0.8;\">{{ args.label }}</span>\n\t\t\t\t<q-obfuscation :revealable=\"false\" />\n\n\t\t\t\t<span style=\"opacity: 0.8;\">{{ args.label }}</span>\n\t\t\t\t<q-obfuscation\n\t\t\t\t\t:revealable=\"true\"\n\t\t\t\t\tv-model:revealed=\"revealedB\">\n\t\t\t\t\tField value revealed\n\t\t\t\t</q-obfuscation>\n\n\t\t\t\t<span style=\"opacity: 0.8;\">{{ args.label }}</span>\n\t\t\t\t<q-obfuscation :revealable=\"false\" mask=\"bullets\" />\n\n\t\t\t\t<span style=\"opacity: 0.8;\">{{ args.label }}</span>\n\t\t\t\t<q-obfuscation :revealable=\"false\" />\n\t\t\t</div>"
5057
+ }
5058
+ ]
5059
+ },
4742
5060
  {
4743
5061
  "name": "QOverlay",
4744
5062
  "description": "A generic overlay for creating floating elements.",
@@ -6535,14 +6853,14 @@
6535
6853
  "type": "[value: string]"
6536
6854
  },
6537
6855
  {
6538
- "name": "click:item",
6856
+ "name": "resize",
6539
6857
  "description": "",
6540
- "type": "[id: string]"
6858
+ "type": "[width: number]"
6541
6859
  },
6542
6860
  {
6543
- "name": "resize",
6861
+ "name": "click:item",
6544
6862
  "description": "",
6545
- "type": "[width: number]"
6863
+ "type": "[id: string]"
6546
6864
  },
6547
6865
  {
6548
6866
  "name": "resize:start",
@@ -39,6 +39,7 @@
39
39
  "QListItem",
40
40
  "QListItemGroup",
41
41
  "QMeter",
42
+ "QObfuscation",
42
43
  "QOverlay",
43
44
  "QPasswordField",
44
45
  "QPopover",