@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.
- package/package.json +3 -4
- package/src/atoms/gv-autocomplete.d.ts +104 -0
- package/src/atoms/gv-button.d.ts +109 -0
- package/src/atoms/gv-checkbox.d.ts +114 -0
- package/src/atoms/gv-date-picker-calendar.d.ts +190 -0
- package/src/atoms/gv-date-picker-cell.d.ts +80 -0
- package/src/atoms/gv-date-picker.d.ts +194 -0
- package/src/atoms/gv-file-upload.d.ts +64 -0
- package/src/atoms/gv-icon.d.ts +26 -0
- package/src/atoms/gv-image.d.ts +45 -0
- package/src/atoms/gv-input-message.d.ts +20 -0
- package/src/atoms/gv-input.d.ts +246 -0
- package/src/atoms/gv-link.d.ts +67 -0
- package/src/atoms/gv-message.d.ts +23 -0
- package/src/atoms/gv-message.js +1 -1
- package/src/atoms/gv-metric.d.ts +32 -0
- package/src/atoms/gv-relative-time.d.ts +45 -0
- package/src/atoms/gv-select-native.d.ts +174 -0
- package/src/atoms/gv-select.d.ts +71 -0
- package/src/atoms/gv-spinner.d.ts +10 -0
- package/src/atoms/gv-state.d.ts +50 -0
- package/src/atoms/gv-switch.d.ts +60 -0
- package/src/atoms/gv-tag.d.ts +69 -0
- package/src/atoms/gv-text.d.ts +110 -0
- package/src/charts/gv-chart-bar.d.ts +50 -0
- package/src/charts/gv-chart-gauge.d.ts +58 -0
- package/src/charts/gv-chart-histogram.d.ts +48 -0
- package/src/charts/gv-chart-line.d.ts +52 -0
- package/src/charts/gv-chart-map.d.ts +50 -0
- package/src/charts/gv-chart-pie.d.ts +50 -0
- package/src/index.d.ts +77 -0
- package/src/lib/cron-expression.d.ts +1 -0
- package/src/lib/date.d.ts +1 -0
- package/src/lib/events.d.ts +1 -0
- package/src/lib/http-client-schema-form.d.ts +68 -0
- package/src/lib/http.d.ts +222 -0
- package/src/lib/i18n.d.ts +30 -0
- package/src/lib/item.d.ts +12 -0
- package/src/lib/properties.d.ts +42 -0
- package/src/lib/schema-form.d.ts +5 -0
- package/src/lib/studio.d.ts +2 -0
- package/src/lib/style.d.ts +6 -0
- package/src/lib/text-format.d.ts +6 -0
- package/src/lib/theme.d.ts +4 -0
- package/src/lib/utils.d.ts +9 -0
- package/src/mixins/chart-element.d.ts +39 -0
- package/src/mixins/input-element.d.ts +64 -0
- package/src/mixins/item-resource.d.ts +56 -0
- package/src/mixins/keyboard-element.d.ts +25 -0
- package/src/mixins/update-after-browser.d.ts +11 -0
- package/src/mixins/with-resize-observer.d.ts +12 -0
- package/src/mixins/with-skeleton-attribute.d.ts +35 -0
- package/src/molecules/gv-card-full.d.ts +78 -0
- package/src/molecules/gv-card-list.d.ts +33 -0
- package/src/molecules/gv-card.d.ts +65 -0
- package/src/molecules/gv-category-list.d.ts +17 -0
- package/src/molecules/gv-category.d.ts +64 -0
- package/src/molecules/gv-code.d.ts +192 -0
- package/src/molecules/gv-confirm.d.ts +60 -0
- package/src/molecules/gv-cron-editor.d.ts +115 -0
- package/src/molecules/gv-dropdown-menu.d.ts +28 -0
- package/src/molecules/gv-expandable.d.ts +37 -0
- package/src/molecules/gv-expression-language.d.ts +150 -0
- package/src/molecules/gv-identity-picture.d.ts +44 -0
- package/src/molecules/gv-list.d.ts +123 -0
- package/src/molecules/gv-metrics.d.ts +65 -0
- package/src/molecules/gv-modal.d.ts +64 -0
- package/src/molecules/gv-nav.d.ts +41 -0
- package/src/molecules/gv-option.d.ts +65 -0
- package/src/molecules/gv-plans.d.ts +73 -0
- package/src/molecules/gv-popover.d.ts +91 -0
- package/src/molecules/gv-promote.d.ts +108 -0
- package/src/molecules/gv-rating-list.d.ts +77 -0
- package/src/molecules/gv-rating.d.ts +55 -0
- package/src/molecules/gv-row-expandable.d.ts +8 -0
- package/src/molecules/gv-row.d.ts +37 -0
- package/src/molecules/gv-stats.d.ts +53 -0
- package/src/molecules/gv-stepper.d.ts +46 -0
- package/src/molecules/gv-table.d.ts +159 -0
- package/src/molecules/gv-tree.d.ts +44 -0
- package/src/organisms/gv-documentation.d.ts +52 -0
- package/src/organisms/gv-header.d.ts +60 -0
- package/src/organisms/gv-http-client.d.ts +57 -0
- package/src/organisms/gv-menu.d.ts +74 -0
- package/src/organisms/gv-newsletter-subscription.d.ts +82 -0
- package/src/organisms/gv-pagination.d.ts +63 -0
- package/src/organisms/gv-properties.d.ts +229 -0
- package/src/organisms/gv-resizable-views.d.ts +33 -0
- package/src/organisms/gv-resources.d.ts +125 -0
- package/src/organisms/gv-schema-form-array.d.ts +55 -0
- package/src/organisms/gv-schema-form-control-object.d.ts +64 -0
- package/src/organisms/gv-schema-form-control.d.ts +90 -0
- package/src/organisms/gv-schema-form.d.ts +156 -0
- package/src/organisms/gv-tabs.d.ts +56 -0
- package/src/organisms/gv-user-menu.d.ts +56 -0
- package/src/organisms/gv-vertical-menu.d.ts +28 -0
- package/src/policy-studio/gv-flow-step.d.ts +142 -0
- package/src/policy-studio/gv-flow.d.ts +89 -0
- package/src/policy-studio/gv-policy-studio-menu.d.ts +94 -0
- package/src/policy-studio/gv-policy-studio.d.ts +464 -0
- package/src/styles/empty.d.ts +1 -0
- package/src/styles/input.d.ts +1 -0
- package/src/styles/link.d.ts +1 -0
- package/src/styles/shapes.d.ts +2 -0
- package/src/styles/skeleton.d.ts +1 -0
- package/src/styles/zoom.d.ts +1 -0
- package/src/theme/gv-theme.d.ts +81 -0
- package/wc/gv-autocomplete.d.ts +1 -0
- package/wc/gv-button.d.ts +1 -0
- package/wc/gv-card-full.d.ts +1 -0
- package/wc/gv-card-list.d.ts +1 -0
- package/wc/gv-card.d.ts +1 -0
- package/wc/gv-category-list.d.ts +1 -0
- package/wc/gv-category.d.ts +1 -0
- package/wc/gv-chart-bar.d.ts +1 -0
- package/wc/gv-chart-gauge.d.ts +1 -0
- package/wc/gv-chart-histogram.d.ts +1 -0
- package/wc/gv-chart-line.d.ts +1 -0
- package/wc/gv-chart-map.d.ts +1 -0
- package/wc/gv-chart-pie.d.ts +1 -0
- package/wc/gv-checkbox.d.ts +1 -0
- package/wc/gv-code.d.ts +1 -0
- package/wc/gv-confirm.d.ts +1 -0
- package/wc/gv-cron-editor.d.ts +1 -0
- package/wc/gv-date-picker-calendar.d.ts +1 -0
- package/wc/gv-date-picker-cell.d.ts +1 -0
- package/wc/gv-date-picker.d.ts +1 -0
- package/wc/gv-documentation.d.ts +1 -0
- package/wc/gv-dropdown-menu.d.ts +1 -0
- package/wc/gv-expandable.d.ts +1 -0
- package/wc/gv-expression-language.d.ts +1 -0
- package/wc/gv-file-upload.d.ts +1 -0
- package/wc/gv-flow-step.d.ts +1 -0
- package/wc/gv-flow.d.ts +1 -0
- package/wc/gv-header.d.ts +1 -0
- package/wc/gv-http-client.d.ts +1 -0
- package/wc/gv-icon.d.ts +1 -0
- package/wc/gv-identity-picture.d.ts +1 -0
- package/wc/gv-image.d.ts +1 -0
- package/wc/gv-input-message.d.ts +1 -0
- package/wc/gv-input.d.ts +1 -0
- package/wc/gv-link.d.ts +1 -0
- package/wc/gv-list.d.ts +1 -0
- package/wc/gv-menu.d.ts +1 -0
- package/wc/gv-message.d.ts +1 -0
- package/wc/gv-metric.d.ts +1 -0
- package/wc/gv-metrics.d.ts +1 -0
- package/wc/gv-modal.d.ts +1 -0
- package/wc/gv-nav.d.ts +1 -0
- package/wc/gv-newsletter-subscription.d.ts +1 -0
- package/wc/gv-option.d.ts +1 -0
- package/wc/gv-pagination.d.ts +1 -0
- package/wc/gv-plans.d.ts +1 -0
- package/wc/gv-policy-studio-menu.d.ts +1 -0
- package/wc/gv-policy-studio.d.ts +1 -0
- package/wc/gv-popover.d.ts +1 -0
- package/wc/gv-promote.d.ts +1 -0
- package/wc/gv-properties.d.ts +1 -0
- package/wc/gv-rating-list.d.ts +1 -0
- package/wc/gv-rating.d.ts +1 -0
- package/wc/gv-relative-time.d.ts +1 -0
- package/wc/gv-resizable-views.d.ts +1 -0
- package/wc/gv-resources.d.ts +1 -0
- package/wc/gv-row-expandable.d.ts +1 -0
- package/wc/gv-row.d.ts +1 -0
- package/wc/gv-schema-form-array.d.ts +1 -0
- package/wc/gv-schema-form-control-object.d.ts +1 -0
- package/wc/gv-schema-form-control.d.ts +1 -0
- package/wc/gv-schema-form.d.ts +1 -0
- package/wc/gv-select-native.d.ts +1 -0
- package/wc/gv-select.d.ts +1 -0
- package/wc/gv-spinner.d.ts +1 -0
- package/wc/gv-state.d.ts +1 -0
- package/wc/gv-stats.d.ts +1 -0
- package/wc/gv-stepper.d.ts +1 -0
- package/wc/gv-switch.d.ts +1 -0
- package/wc/gv-table.d.ts +1 -0
- package/wc/gv-tabs.d.ts +1 -0
- package/wc/gv-tag.d.ts +1 -0
- package/wc/gv-text.d.ts +1 -0
- package/wc/gv-theme.d.ts +1 -0
- package/wc/gv-tree.d.ts +1 -0
- package/wc/gv-user-menu.d.ts +1 -0
- package/wc/gv-vertical-menu.d.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-code.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 {};
|
package/wc/gv-flow.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-icon.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-image.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-input.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-link.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-list.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-menu.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-modal.d.ts
ADDED
|
@@ -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 {};
|
package/wc/gv-plans.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 {};
|
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 {};
|
package/wc/gv-state.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-stats.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-table.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-tabs.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-tag.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-text.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-theme.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/wc/gv-tree.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|