@gravitee/ui-components 3.25.3-typescript-9a4271f → 3.25.3-typescript-50960c3

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 (184) hide show
  1. package/package.json +3 -4
  2. package/src/atoms/gv-autocomplete.d.ts +104 -0
  3. package/src/atoms/gv-button.d.ts +109 -0
  4. package/src/atoms/gv-checkbox.d.ts +114 -0
  5. package/src/atoms/gv-date-picker-calendar.d.ts +190 -0
  6. package/src/atoms/gv-date-picker-cell.d.ts +80 -0
  7. package/src/atoms/gv-date-picker.d.ts +194 -0
  8. package/src/atoms/gv-file-upload.d.ts +64 -0
  9. package/src/atoms/gv-icon.d.ts +26 -0
  10. package/src/atoms/gv-image.d.ts +45 -0
  11. package/src/atoms/gv-input-message.d.ts +20 -0
  12. package/src/atoms/gv-input.d.ts +246 -0
  13. package/src/atoms/gv-link.d.ts +67 -0
  14. package/src/atoms/gv-message.d.ts +23 -0
  15. package/src/atoms/gv-message.js +1 -1
  16. package/src/atoms/gv-metric.d.ts +32 -0
  17. package/src/atoms/gv-relative-time.d.ts +45 -0
  18. package/src/atoms/gv-select-native.d.ts +174 -0
  19. package/src/atoms/gv-select.d.ts +71 -0
  20. package/src/atoms/gv-spinner.d.ts +10 -0
  21. package/src/atoms/gv-state.d.ts +50 -0
  22. package/src/atoms/gv-switch.d.ts +60 -0
  23. package/src/atoms/gv-tag.d.ts +69 -0
  24. package/src/atoms/gv-text.d.ts +110 -0
  25. package/src/charts/gv-chart-bar.d.ts +50 -0
  26. package/src/charts/gv-chart-gauge.d.ts +58 -0
  27. package/src/charts/gv-chart-histogram.d.ts +48 -0
  28. package/src/charts/gv-chart-line.d.ts +52 -0
  29. package/src/charts/gv-chart-map.d.ts +50 -0
  30. package/src/charts/gv-chart-pie.d.ts +50 -0
  31. package/src/index.d.ts +77 -0
  32. package/src/lib/cron-expression.d.ts +1 -0
  33. package/src/lib/date.d.ts +1 -0
  34. package/src/lib/events.d.ts +1 -0
  35. package/src/lib/http-client-schema-form.d.ts +68 -0
  36. package/src/lib/http.d.ts +222 -0
  37. package/src/lib/i18n.d.ts +30 -0
  38. package/src/lib/item.d.ts +12 -0
  39. package/src/lib/properties.d.ts +42 -0
  40. package/src/lib/schema-form.d.ts +5 -0
  41. package/src/lib/studio.d.ts +2 -0
  42. package/src/lib/style.d.ts +6 -0
  43. package/src/lib/text-format.d.ts +6 -0
  44. package/src/lib/theme.d.ts +4 -0
  45. package/src/lib/utils.d.ts +9 -0
  46. package/src/mixins/chart-element.d.ts +39 -0
  47. package/src/mixins/input-element.d.ts +64 -0
  48. package/src/mixins/item-resource.d.ts +56 -0
  49. package/src/mixins/keyboard-element.d.ts +25 -0
  50. package/src/mixins/update-after-browser.d.ts +11 -0
  51. package/src/mixins/with-resize-observer.d.ts +12 -0
  52. package/src/mixins/with-skeleton-attribute.d.ts +35 -0
  53. package/src/molecules/gv-card-full.d.ts +78 -0
  54. package/src/molecules/gv-card-list.d.ts +33 -0
  55. package/src/molecules/gv-card.d.ts +65 -0
  56. package/src/molecules/gv-category-list.d.ts +17 -0
  57. package/src/molecules/gv-category.d.ts +64 -0
  58. package/src/molecules/gv-code.d.ts +192 -0
  59. package/src/molecules/gv-confirm.d.ts +60 -0
  60. package/src/molecules/gv-cron-editor.d.ts +115 -0
  61. package/src/molecules/gv-dropdown-menu.d.ts +28 -0
  62. package/src/molecules/gv-expandable.d.ts +37 -0
  63. package/src/molecules/gv-expression-language.d.ts +150 -0
  64. package/src/molecules/gv-identity-picture.d.ts +44 -0
  65. package/src/molecules/gv-list.d.ts +123 -0
  66. package/src/molecules/gv-metrics.d.ts +65 -0
  67. package/src/molecules/gv-modal.d.ts +64 -0
  68. package/src/molecules/gv-nav.d.ts +41 -0
  69. package/src/molecules/gv-option.d.ts +65 -0
  70. package/src/molecules/gv-plans.d.ts +73 -0
  71. package/src/molecules/gv-popover.d.ts +91 -0
  72. package/src/molecules/gv-promote.d.ts +108 -0
  73. package/src/molecules/gv-rating-list.d.ts +77 -0
  74. package/src/molecules/gv-rating.d.ts +55 -0
  75. package/src/molecules/gv-row-expandable.d.ts +8 -0
  76. package/src/molecules/gv-row.d.ts +37 -0
  77. package/src/molecules/gv-stats.d.ts +53 -0
  78. package/src/molecules/gv-stepper.d.ts +46 -0
  79. package/src/molecules/gv-table.d.ts +159 -0
  80. package/src/molecules/gv-tree.d.ts +44 -0
  81. package/src/organisms/gv-documentation.d.ts +52 -0
  82. package/src/organisms/gv-header.d.ts +60 -0
  83. package/src/organisms/gv-http-client.d.ts +57 -0
  84. package/src/organisms/gv-menu.d.ts +74 -0
  85. package/src/organisms/gv-newsletter-subscription.d.ts +82 -0
  86. package/src/organisms/gv-pagination.d.ts +63 -0
  87. package/src/organisms/gv-properties.d.ts +229 -0
  88. package/src/organisms/gv-resizable-views.d.ts +33 -0
  89. package/src/organisms/gv-resources.d.ts +125 -0
  90. package/src/organisms/gv-schema-form-array.d.ts +55 -0
  91. package/src/organisms/gv-schema-form-control-object.d.ts +64 -0
  92. package/src/organisms/gv-schema-form-control.d.ts +90 -0
  93. package/src/organisms/gv-schema-form.d.ts +156 -0
  94. package/src/organisms/gv-tabs.d.ts +56 -0
  95. package/src/organisms/gv-user-menu.d.ts +56 -0
  96. package/src/organisms/gv-vertical-menu.d.ts +28 -0
  97. package/src/policy-studio/gv-flow-step.d.ts +142 -0
  98. package/src/policy-studio/gv-flow.d.ts +89 -0
  99. package/src/policy-studio/gv-policy-studio-menu.d.ts +94 -0
  100. package/src/policy-studio/gv-policy-studio.d.ts +464 -0
  101. package/src/styles/empty.d.ts +1 -0
  102. package/src/styles/input.d.ts +1 -0
  103. package/src/styles/link.d.ts +1 -0
  104. package/src/styles/shapes.d.ts +2 -0
  105. package/src/styles/skeleton.d.ts +1 -0
  106. package/src/styles/zoom.d.ts +1 -0
  107. package/src/theme/gv-theme.d.ts +81 -0
  108. package/wc/gv-autocomplete.d.ts +1 -0
  109. package/wc/gv-button.d.ts +1 -0
  110. package/wc/gv-card-full.d.ts +1 -0
  111. package/wc/gv-card-list.d.ts +1 -0
  112. package/wc/gv-card.d.ts +1 -0
  113. package/wc/gv-category-list.d.ts +1 -0
  114. package/wc/gv-category.d.ts +1 -0
  115. package/wc/gv-chart-bar.d.ts +1 -0
  116. package/wc/gv-chart-gauge.d.ts +1 -0
  117. package/wc/gv-chart-histogram.d.ts +1 -0
  118. package/wc/gv-chart-line.d.ts +1 -0
  119. package/wc/gv-chart-map.d.ts +1 -0
  120. package/wc/gv-chart-pie.d.ts +1 -0
  121. package/wc/gv-checkbox.d.ts +1 -0
  122. package/wc/gv-code.d.ts +1 -0
  123. package/wc/gv-confirm.d.ts +1 -0
  124. package/wc/gv-cron-editor.d.ts +1 -0
  125. package/wc/gv-date-picker-calendar.d.ts +1 -0
  126. package/wc/gv-date-picker-cell.d.ts +1 -0
  127. package/wc/gv-date-picker.d.ts +1 -0
  128. package/wc/gv-documentation.d.ts +1 -0
  129. package/wc/gv-dropdown-menu.d.ts +1 -0
  130. package/wc/gv-expandable.d.ts +1 -0
  131. package/wc/gv-expression-language.d.ts +1 -0
  132. package/wc/gv-file-upload.d.ts +1 -0
  133. package/wc/gv-flow-step.d.ts +1 -0
  134. package/wc/gv-flow.d.ts +1 -0
  135. package/wc/gv-header.d.ts +1 -0
  136. package/wc/gv-http-client.d.ts +1 -0
  137. package/wc/gv-icon.d.ts +1 -0
  138. package/wc/gv-identity-picture.d.ts +1 -0
  139. package/wc/gv-image.d.ts +1 -0
  140. package/wc/gv-input-message.d.ts +1 -0
  141. package/wc/gv-input.d.ts +1 -0
  142. package/wc/gv-link.d.ts +1 -0
  143. package/wc/gv-list.d.ts +1 -0
  144. package/wc/gv-menu.d.ts +1 -0
  145. package/wc/gv-message.d.ts +1 -0
  146. package/wc/gv-metric.d.ts +1 -0
  147. package/wc/gv-metrics.d.ts +1 -0
  148. package/wc/gv-modal.d.ts +1 -0
  149. package/wc/gv-nav.d.ts +1 -0
  150. package/wc/gv-newsletter-subscription.d.ts +1 -0
  151. package/wc/gv-option.d.ts +1 -0
  152. package/wc/gv-pagination.d.ts +1 -0
  153. package/wc/gv-plans.d.ts +1 -0
  154. package/wc/gv-policy-studio-menu.d.ts +1 -0
  155. package/wc/gv-policy-studio.d.ts +1 -0
  156. package/wc/gv-popover.d.ts +1 -0
  157. package/wc/gv-promote.d.ts +1 -0
  158. package/wc/gv-properties.d.ts +1 -0
  159. package/wc/gv-rating-list.d.ts +1 -0
  160. package/wc/gv-rating.d.ts +1 -0
  161. package/wc/gv-relative-time.d.ts +1 -0
  162. package/wc/gv-resizable-views.d.ts +1 -0
  163. package/wc/gv-resources.d.ts +1 -0
  164. package/wc/gv-row-expandable.d.ts +1 -0
  165. package/wc/gv-row.d.ts +1 -0
  166. package/wc/gv-schema-form-array.d.ts +1 -0
  167. package/wc/gv-schema-form-control-object.d.ts +1 -0
  168. package/wc/gv-schema-form-control.d.ts +1 -0
  169. package/wc/gv-schema-form.d.ts +1 -0
  170. package/wc/gv-select-native.d.ts +1 -0
  171. package/wc/gv-select.d.ts +1 -0
  172. package/wc/gv-spinner.d.ts +1 -0
  173. package/wc/gv-state.d.ts +1 -0
  174. package/wc/gv-stats.d.ts +1 -0
  175. package/wc/gv-stepper.d.ts +1 -0
  176. package/wc/gv-switch.d.ts +1 -0
  177. package/wc/gv-table.d.ts +1 -0
  178. package/wc/gv-tabs.d.ts +1 -0
  179. package/wc/gv-tag.d.ts +1 -0
  180. package/wc/gv-text.d.ts +1 -0
  181. package/wc/gv-theme.d.ts +1 -0
  182. package/wc/gv-tree.d.ts +1 -0
  183. package/wc/gv-user-menu.d.ts +1 -0
  184. package/wc/gv-vertical-menu.d.ts +1 -0
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
package/wc/gv-nav.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
package/wc/gv-row.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
package/wc/gv-tag.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};