@quidgest/ui 0.16.52 → 0.16.54

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 (36) hide show
  1. package/dist/json/api.json +35 -32
  2. package/dist/ui.esm.js +5125 -5134
  3. package/dist/ui.js +8 -8
  4. package/dist/ui.min.js +32 -32
  5. package/dist/ui.scss +2 -2
  6. package/esm/components/QBadgeIndicator/QBadgeIndicator.d.ts +1 -0
  7. package/esm/components/QBadgeIndicator/QBadgeIndicator.d.ts.map +1 -1
  8. package/esm/components/QBadgeIndicator/QBadgeIndicator.vue.js +24 -22
  9. package/esm/components/QBadgeIndicator/index.d.ts +3 -0
  10. package/esm/components/QBadgeIndicator/index.d.ts.map +1 -1
  11. package/esm/components/QBadgeIndicator/types.d.ts +7 -0
  12. package/esm/components/QBadgeIndicator/types.d.ts.map +1 -1
  13. package/esm/components/QDialog/QDialog.d.ts +4 -13
  14. package/esm/components/QDialog/QDialog.d.ts.map +1 -1
  15. package/esm/components/QDialog/QDialog.vue.js +71 -78
  16. package/esm/components/QDialog/QDialogProvider.d.ts.map +1 -1
  17. package/esm/components/QDialog/QDialogProvider.vue.js +16 -17
  18. package/esm/components/QDialog/index.d.ts +10 -85
  19. package/esm/components/QDialog/index.d.ts.map +1 -1
  20. package/esm/components/QDialog/types.d.ts +6 -0
  21. package/esm/components/QDialog/types.d.ts.map +1 -1
  22. package/esm/components/QIcon/InlineSvg.js +8 -8
  23. package/esm/components/QOverlay/QOverlay.d.ts +4 -9
  24. package/esm/components/QOverlay/QOverlay.d.ts.map +1 -1
  25. package/esm/components/QOverlay/QOverlay.vue.js +156 -158
  26. package/esm/components/QOverlay/index.d.ts +10 -93
  27. package/esm/components/QOverlay/index.d.ts.map +1 -1
  28. package/esm/components/QOverlay/types.d.ts +6 -0
  29. package/esm/components/QOverlay/types.d.ts.map +1 -1
  30. package/esm/components/QPasswordField/QPasswordFieldMeterOverlay.vue.js +14 -13
  31. package/esm/components/QSelect/QSelect.d.ts.map +1 -1
  32. package/esm/components/QSelect/QSelect.vue.js +44 -46
  33. package/esm/composables/useDialog/index.d.ts +1 -0
  34. package/esm/composables/useDialog/index.d.ts.map +1 -1
  35. package/esm/composables/useDialog/index.js +11 -11
  36. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.16.52",
2
+ "version": "0.16.54",
3
3
  "components": [
4
4
  {
5
5
  "name": "QAccordion",
@@ -491,6 +491,17 @@
491
491
  "default": "top-right",
492
492
  "required": false,
493
493
  "category": "Presentation"
494
+ },
495
+ {
496
+ "name": "enabled",
497
+ "type": {
498
+ "kind": "primitive",
499
+ "name": "boolean"
500
+ },
501
+ "description": "Whether to display the indicator.\nUsed in situations where the indicator can be shown or hidden depending on system state.",
502
+ "default": "true",
503
+ "required": false,
504
+ "category": "Content"
494
505
  }
495
506
  ],
496
507
  "events": [],
@@ -2553,23 +2564,24 @@
2553
2564
  "meta": {
2554
2565
  "props": [
2555
2566
  {
2556
- "name": "modelValue",
2567
+ "name": "id",
2557
2568
  "type": {
2558
2569
  "kind": "primitive",
2559
- "name": "boolean"
2570
+ "name": "string"
2560
2571
  },
2561
- "description": "",
2562
- "required": false
2572
+ "description": "The component unique identifier.",
2573
+ "required": false,
2574
+ "category": "Identification"
2563
2575
  },
2564
2576
  {
2565
- "name": "id",
2577
+ "name": "modelValue",
2566
2578
  "type": {
2567
2579
  "kind": "primitive",
2568
- "name": "string"
2580
+ "name": "boolean"
2569
2581
  },
2570
- "description": "The component unique identifier.",
2582
+ "description": "The value of the selected item.",
2571
2583
  "required": false,
2572
- "category": "Identification"
2584
+ "category": "Content"
2573
2585
  },
2574
2586
  {
2575
2587
  "name": "title",
@@ -2794,17 +2806,7 @@
2794
2806
  {
2795
2807
  "name": "update:modelValue",
2796
2808
  "description": "",
2797
- "type": "[value: boolean]"
2798
- },
2799
- {
2800
- "name": "enter",
2801
- "description": "",
2802
- "type": "[]"
2803
- },
2804
- {
2805
- "name": "leave",
2806
- "description": "",
2807
- "type": "[]"
2809
+ "type": "[val: boolean]"
2808
2810
  }
2809
2811
  ],
2810
2812
  "slots": [
@@ -2842,7 +2844,7 @@
2842
2844
  {
2843
2845
  "title": "Default",
2844
2846
  "description": "Default behaviour of the dialog.",
2845
- "code": "<q-button label=\"Click me\" @click=\"modelValue = true\" />\n\t\t\t<q-dialog v-model=\"modelValue\" v-bind=\"args\" />"
2847
+ "code": "<q-button label=\"Click me\" @click=\"args.modelValue = true\" />\n\t\t\t<q-dialog v-model=\"args.modelValue\" v-bind=\"args\" />"
2846
2848
  },
2847
2849
  {
2848
2850
  "title": "Dismissible",
@@ -2902,7 +2904,7 @@
2902
2904
  {
2903
2905
  "title": "Popup Form",
2904
2906
  "description": "An example of a popup form.",
2905
- "code": "<q-button label=\"Click me\" @click=\"modelValue = true\" />\n\t\t\t<q-dialog v-model=\"modelValue\" v-bind=\"args\">\n\t\t\t\t<template #header>\n\t\t\t\t\t<h2 style=\"font-size: 1.05rem; text-transform: uppercase; margin: 0;\">\n\t\t\t\t\t\tContact\n\t\t\t\t\t</h2>\n\t\t\t\t</template>\n\t\t\t\t<template #body>\n\t\t\t\t\t<hr style=\" height: 1px; background-color: var(--q-theme-neutral-light); margin: 0\" />\n\t\t\t\t\t<div style=\"display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem\">\n\t\t\t\t\t\t<q-text-field size=\"block\" label=\"Name\"/>\n\t\t\t\t\t\t<q-text-field size=\"block\" label=\"E-mail\"/>\n\t\t\t\t\t\t<q-text-field size=\"block\" label=\"Telephone\"/>\n\t\t\t\t\t\t<q-text-area size=\"block\" label=\"Description\"/>\n\t\t\t\t\t\t<q-date-time-picker size=\"medium\" label=\"Date\"/>\n\t\t\t\t\t\t<q-text-field size=\"block\" label=\"Title\"/>\n\t\t\t\t\t</div>\n\t\t\t\t\t<hr style=\"height: 1px; background-color: var(--q-theme-neutral-light); margin: 0\" />\n\t\t\t\t</template>\n\t\t\t\t<template #footer>\n\t\t\t\t\t<div style=\"display: flex; gap: 0.5rem;\">\n\t\t\t\t\t\t<q-button label=\"Save\" variant=\"bold\" @click=\"modelValue = false\">\n\t\t\t\t\t\t\t<q-icon icon=\"floppy\" />\n\t\t\t\t\t\t</q-button>\n\t\t\t\t\t\t<q-button label=\"Cancel\" @click=\"modelValue = false\">\n\t\t\t\t\t\t\t<q-icon icon=\"cancel\" />\n\t\t\t\t\t\t</q-button>\n\t\t\t\t\t</div>\n\t\t\t\t</template>\n\t\t\t</q-dialog>"
2907
+ "code": "<q-button label=\"Click me\" @click=\"modelValue = true\" />\n\t\t\t<q-dialog v-model=\"modelValue\" v-bind=\"args\">\n\t\t\t\t<template #header>\n\t\t\t\t\t<h2 style=\"font-size: 1.05rem; text-transform: uppercase; margin: 0;\">\n\t\t\t\t\t\tContact\n\t\t\t\t\t</h2>\n\t\t\t\t</template>\n\t\t\t\t<template #body>\n\t\t\t\t\t<hr style=\" height: 1px; background-color: var(--q-theme-neutral-light); margin: 0\" />\n\t\t\t\t\t<div style=\"display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem\">\n\t\t\t\t\t\t<q-text-field size=\"block\" label=\"Name\"/>\n\t\t\t\t\t\t<q-text-field size=\"block\" label=\"E-mail\"/>\n\t\t\t\t\t\t<q-text-field size=\"block\" label=\"Telephone\"/>\n\t\t\t\t\t\t<q-text-area size=\"block\" label=\"Description\"/>\n\t\t\t\t\t\t<q-date-time-picker size=\"medium\" label=\"Date\"/>\n\t\t\t\t\t\t<q-select :items=\"items\" label=\"Select\" />\n\t\t\t\t\t\t<q-text-field size=\"block\" label=\"Title\"/>\n\t\t\t\t\t</div>\n\t\t\t\t\t<hr style=\"height: 1px; background-color: var(--q-theme-neutral-light); margin: 0\" />\n\t\t\t\t</template>\n\t\t\t\t<template #footer>\n\t\t\t\t\t<div style=\"display: flex; gap: 0.5rem;\">\n\t\t\t\t\t\t<q-button label=\"Save\" variant=\"bold\" @click=\"modelValue = false\">\n\t\t\t\t\t\t\t<q-icon icon=\"floppy\" />\n\t\t\t\t\t\t</q-button>\n\t\t\t\t\t\t<q-button label=\"Cancel\" @click=\"modelValue = false\">\n\t\t\t\t\t\t\t<q-icon icon=\"cancel\" />\n\t\t\t\t\t\t</q-button>\n\t\t\t\t\t</div>\n\t\t\t\t</template>\n\t\t\t</q-dialog>"
2906
2908
  },
2907
2909
  {
2908
2910
  "title": "Overflown",
@@ -4592,23 +4594,24 @@
4592
4594
  "meta": {
4593
4595
  "props": [
4594
4596
  {
4595
- "name": "modelValue",
4597
+ "name": "id",
4596
4598
  "type": {
4597
4599
  "kind": "primitive",
4598
- "name": "boolean"
4600
+ "name": "string"
4599
4601
  },
4600
- "description": "",
4601
- "required": false
4602
+ "description": "The component unique identifier.",
4603
+ "required": false,
4604
+ "category": "Identification"
4602
4605
  },
4603
4606
  {
4604
- "name": "id",
4607
+ "name": "modelValue",
4605
4608
  "type": {
4606
4609
  "kind": "primitive",
4607
- "name": "string"
4610
+ "name": "boolean"
4608
4611
  },
4609
- "description": "The component unique identifier.",
4612
+ "description": "The value of the selected item.",
4610
4613
  "required": false,
4611
- "category": "Identification"
4614
+ "category": "Content"
4612
4615
  },
4613
4616
  {
4614
4617
  "name": "anchor",
@@ -4932,7 +4935,7 @@
4932
4935
  {
4933
4936
  "name": "update:modelValue",
4934
4937
  "description": "",
4935
- "type": "[value: boolean]"
4938
+ "type": "[val: boolean]"
4936
4939
  },
4937
4940
  {
4938
4941
  "name": "enter",
@@ -4956,7 +4959,7 @@
4956
4959
  {
4957
4960
  "title": "Anchored",
4958
4961
  "description": "Anchored overlays dynamically position themselves in relation to a specified anchor point, providing contextual information or actions without obstructing the overall user experience.",
4959
- "code": "<q-button ref=\"anchor\" label=\"Click me\" />\n\t\t\t<q-overlay v-bind=\"args\" :anchor=\"anchor?.$el\">\n\t\t\t\t<div style=\"display: flex; align-items: center; justify-content: center; padding: 0.5rem\">\n\t\t\t\t\tCustom anchored overlay\n\t\t\t\t</div>\n\t\t\t</q-overlay>"
4962
+ "code": "<q-button ref=\"anchor\" label=\"Click me\" @click=\"args.modelValue = !args.modelValue\" />\n\t\t\t<q-overlay v-model=\"args.modelValue\" v-bind=\"args\" :anchor=\"anchor?.$el\">\n\t\t\t\t<div style=\"display: flex; align-items: center; justify-content: center; padding: 0.5rem\">\n\t\t\t\t\tCustom anchored overlay\n\t\t\t\t</div>\n\t\t\t</q-overlay>"
4960
4963
  },
4961
4964
  {
4962
4965
  "title": "Independent",