@gravitee/ui-components 3.25.3-typescript-bfd8f67 → 3.25.3-typescript-94e8113
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/CHANGELOG.md +1292 -0
- package/LICENSE.txt +202 -0
- package/README.md +195 -0
- package/dist/src/atoms/gv-autocomplete.d.ts +104 -0
- package/dist/src/atoms/gv-autocomplete.js +422 -0
- package/dist/src/atoms/gv-button.d.ts +109 -0
- package/dist/src/atoms/gv-button.js +397 -0
- package/dist/src/atoms/gv-checkbox.d.ts +114 -0
- package/dist/src/atoms/gv-checkbox.js +178 -0
- package/dist/src/atoms/gv-date-picker-calendar.d.ts +190 -0
- package/dist/src/atoms/gv-date-picker-calendar.js +812 -0
- package/dist/src/atoms/gv-date-picker-cell.d.ts +80 -0
- package/dist/src/atoms/gv-date-picker-cell.js +174 -0
- package/dist/src/atoms/gv-date-picker.d.ts +194 -0
- package/dist/src/atoms/gv-date-picker.js +638 -0
- package/dist/src/atoms/gv-file-upload.d.ts +64 -0
- package/dist/src/atoms/gv-file-upload.js +348 -0
- package/dist/src/atoms/gv-icon.d.ts +26 -0
- package/dist/src/atoms/gv-icon.js +93 -0
- package/dist/src/atoms/gv-image.d.ts +45 -0
- package/dist/src/atoms/gv-image.js +135 -0
- package/dist/src/atoms/gv-input-message.d.ts +20 -0
- package/dist/src/atoms/gv-input-message.js +78 -0
- package/dist/src/atoms/gv-input.d.ts +246 -0
- package/dist/src/atoms/gv-input.js +508 -0
- package/dist/src/atoms/gv-link.d.ts +67 -0
- package/dist/src/atoms/gv-link.js +204 -0
- package/dist/src/atoms/gv-message.d.ts +23 -0
- package/dist/src/atoms/gv-message.js +133 -0
- package/dist/src/atoms/gv-metric.d.ts +32 -0
- package/dist/src/atoms/gv-metric.js +112 -0
- package/dist/src/atoms/gv-relative-time.d.ts +45 -0
- package/dist/src/atoms/gv-relative-time.js +143 -0
- package/dist/src/atoms/gv-select-native.d.ts +174 -0
- package/dist/src/atoms/gv-select-native.js +363 -0
- package/dist/src/atoms/gv-select.d.ts +71 -0
- package/dist/src/atoms/gv-select.js +413 -0
- package/dist/src/atoms/gv-spinner.d.ts +10 -0
- package/dist/src/atoms/gv-spinner.js +54 -0
- package/dist/src/atoms/gv-state.d.ts +50 -0
- package/dist/src/atoms/gv-state.js +125 -0
- package/dist/src/atoms/gv-switch.d.ts +60 -0
- package/dist/src/atoms/gv-switch.js +235 -0
- package/dist/src/atoms/gv-tag.d.ts +69 -0
- package/dist/src/atoms/gv-tag.js +162 -0
- package/dist/src/atoms/gv-text.d.ts +110 -0
- package/dist/src/atoms/gv-text.js +160 -0
- package/dist/src/charts/gv-chart-bar.d.ts +50 -0
- package/dist/src/charts/gv-chart-bar.js +101 -0
- package/dist/src/charts/gv-chart-gauge.d.ts +58 -0
- package/dist/src/charts/gv-chart-gauge.js +92 -0
- package/dist/src/charts/gv-chart-histogram.d.ts +48 -0
- package/dist/src/charts/gv-chart-histogram.js +78 -0
- package/dist/src/charts/gv-chart-line.d.ts +52 -0
- package/dist/src/charts/gv-chart-line.js +218 -0
- package/dist/src/charts/gv-chart-map.d.ts +50 -0
- package/dist/src/charts/gv-chart-map.js +111 -0
- package/dist/src/charts/gv-chart-pie.d.ts +50 -0
- package/dist/src/charts/gv-chart-pie.js +89 -0
- package/dist/src/index.d.ts +77 -0
- package/dist/src/index.js +77 -0
- package/dist/src/lib/cron-expression.d.ts +1 -0
- package/dist/src/lib/cron-expression.js +176 -0
- package/dist/src/lib/date.d.ts +1 -0
- package/dist/src/lib/date.js +43 -0
- package/dist/src/lib/events.d.ts +1 -0
- package/dist/src/lib/events.js +26 -0
- package/dist/src/lib/http-client-schema-form.d.ts +68 -0
- package/dist/src/lib/http-client-schema-form.js +67 -0
- package/dist/src/lib/http.d.ts +222 -0
- package/dist/src/lib/http.js +237 -0
- package/dist/src/lib/i18n.d.ts +30 -0
- package/dist/src/lib/i18n.js +93 -0
- package/dist/src/lib/item.d.ts +12 -0
- package/dist/src/lib/item.js +110 -0
- package/dist/src/lib/properties.d.ts +42 -0
- package/dist/src/lib/properties.js +171 -0
- package/dist/src/lib/schema-form.d.ts +5 -0
- package/dist/src/lib/schema-form.js +39 -0
- package/dist/src/lib/studio.d.ts +2 -0
- package/dist/src/lib/studio.js +144 -0
- package/dist/src/lib/style.d.ts +6 -0
- package/dist/src/lib/style.js +39 -0
- package/dist/src/lib/text-format.d.ts +6 -0
- package/dist/src/lib/text-format.js +65 -0
- package/dist/src/lib/theme.d.ts +4 -0
- package/dist/src/lib/theme.js +60 -0
- package/dist/src/lib/utils.d.ts +9 -0
- package/dist/src/lib/utils.js +106 -0
- package/dist/src/mixins/chart-element.d.ts +39 -0
- package/dist/src/mixins/chart-element.js +153 -0
- package/dist/src/mixins/input-element.d.ts +64 -0
- package/dist/src/mixins/input-element.js +136 -0
- package/dist/src/mixins/item-resource.d.ts +56 -0
- package/dist/src/mixins/item-resource.js +102 -0
- package/dist/src/mixins/keyboard-element.d.ts +25 -0
- package/dist/src/mixins/keyboard-element.js +62 -0
- package/dist/src/mixins/update-after-browser.d.ts +11 -0
- package/dist/src/mixins/update-after-browser.js +30 -0
- package/dist/src/mixins/with-resize-observer.d.ts +12 -0
- package/dist/src/mixins/with-resize-observer.js +62 -0
- package/dist/src/mixins/with-skeleton-attribute.d.ts +35 -0
- package/dist/src/mixins/with-skeleton-attribute.js +109 -0
- package/dist/src/molecules/gv-card-full.d.ts +78 -0
- package/dist/src/molecules/gv-card-full.js +209 -0
- package/dist/src/molecules/gv-card-list.d.ts +33 -0
- package/dist/src/molecules/gv-card-list.js +101 -0
- package/dist/src/molecules/gv-card.d.ts +65 -0
- package/dist/src/molecules/gv-card.js +130 -0
- package/dist/src/molecules/gv-category-list.d.ts +17 -0
- package/dist/src/molecules/gv-category-list.js +56 -0
- package/dist/src/molecules/gv-category.d.ts +64 -0
- package/dist/src/molecules/gv-category.js +163 -0
- package/dist/src/molecules/gv-code.d.ts +192 -0
- package/dist/src/molecules/gv-code.js +334 -0
- package/dist/src/molecules/gv-confirm.d.ts +60 -0
- package/dist/src/molecules/gv-confirm.js +175 -0
- package/dist/src/molecules/gv-cron-editor.d.ts +115 -0
- package/dist/src/molecules/gv-cron-editor.js +685 -0
- package/dist/src/molecules/gv-dropdown-menu.d.ts +28 -0
- package/dist/src/molecules/gv-dropdown-menu.js +108 -0
- package/dist/src/molecules/gv-expandable.d.ts +37 -0
- package/dist/src/molecules/gv-expandable.js +116 -0
- package/dist/src/molecules/gv-expression-language.d.ts +150 -0
- package/dist/src/molecules/gv-expression-language.js +263 -0
- package/dist/src/molecules/gv-identity-picture.d.ts +44 -0
- package/dist/src/molecules/gv-identity-picture.js +139 -0
- package/dist/src/molecules/gv-list.d.ts +123 -0
- package/dist/src/molecules/gv-list.js +214 -0
- package/dist/src/molecules/gv-metrics.d.ts +65 -0
- package/dist/src/molecules/gv-metrics.js +147 -0
- package/dist/src/molecules/gv-modal.d.ts +64 -0
- package/dist/src/molecules/gv-modal.js +203 -0
- package/dist/src/molecules/gv-nav.d.ts +41 -0
- package/dist/src/molecules/gv-nav.js +180 -0
- package/dist/src/molecules/gv-option.d.ts +65 -0
- package/dist/src/molecules/gv-option.js +230 -0
- package/dist/src/molecules/gv-plans.d.ts +73 -0
- package/dist/src/molecules/gv-plans.js +400 -0
- package/dist/src/molecules/gv-popover.d.ts +91 -0
- package/dist/src/molecules/gv-popover.js +323 -0
- package/dist/src/molecules/gv-promote.d.ts +108 -0
- package/dist/src/molecules/gv-promote.js +203 -0
- package/dist/src/molecules/gv-rating-list.d.ts +77 -0
- package/dist/src/molecules/gv-rating-list.js +341 -0
- package/dist/src/molecules/gv-rating.d.ts +55 -0
- package/dist/src/molecules/gv-rating.js +234 -0
- package/dist/src/molecules/gv-row-expandable.d.ts +8 -0
- package/dist/src/molecules/gv-row-expandable.js +42 -0
- package/dist/src/molecules/gv-row.d.ts +37 -0
- package/dist/src/molecules/gv-row.js +205 -0
- package/dist/src/molecules/gv-stats.d.ts +53 -0
- package/dist/src/molecules/gv-stats.js +110 -0
- package/dist/src/molecules/gv-stepper.d.ts +46 -0
- package/dist/src/molecules/gv-stepper.js +274 -0
- package/dist/src/molecules/gv-table.d.ts +159 -0
- package/dist/src/molecules/gv-table.js +644 -0
- package/dist/src/molecules/gv-tree.d.ts +44 -0
- package/dist/src/molecules/gv-tree.js +238 -0
- package/dist/src/organisms/gv-documentation.d.ts +52 -0
- package/dist/src/organisms/gv-documentation.js +205 -0
- package/dist/src/organisms/gv-header.d.ts +60 -0
- package/dist/src/organisms/gv-header.js +276 -0
- package/dist/src/organisms/gv-http-client.d.ts +57 -0
- package/dist/src/organisms/gv-http-client.js +258 -0
- package/dist/src/organisms/gv-menu.d.ts +74 -0
- package/dist/src/organisms/gv-menu.js +258 -0
- package/dist/src/organisms/gv-newsletter-subscription.d.ts +82 -0
- package/dist/src/organisms/gv-newsletter-subscription.js +258 -0
- package/dist/src/organisms/gv-pagination.d.ts +63 -0
- package/dist/src/organisms/gv-pagination.js +179 -0
- package/dist/src/organisms/gv-properties.d.ts +229 -0
- package/dist/src/organisms/gv-properties.js +860 -0
- package/dist/src/organisms/gv-resizable-views.d.ts +33 -0
- package/dist/src/organisms/gv-resizable-views.js +371 -0
- package/dist/src/organisms/gv-resources.d.ts +125 -0
- package/dist/src/organisms/gv-resources.js +496 -0
- package/dist/src/organisms/gv-schema-form-array.d.ts +55 -0
- package/dist/src/organisms/gv-schema-form-array.js +237 -0
- package/dist/src/organisms/gv-schema-form-control-object.d.ts +64 -0
- package/dist/src/organisms/gv-schema-form-control-object.js +141 -0
- package/dist/src/organisms/gv-schema-form-control.d.ts +90 -0
- package/dist/src/organisms/gv-schema-form-control.js +419 -0
- package/dist/src/organisms/gv-schema-form.d.ts +156 -0
- package/dist/src/organisms/gv-schema-form.js +700 -0
- package/dist/src/organisms/gv-tabs.d.ts +56 -0
- package/dist/src/organisms/gv-tabs.js +201 -0
- package/dist/src/organisms/gv-user-menu.d.ts +56 -0
- package/dist/src/organisms/gv-user-menu.js +298 -0
- package/dist/src/organisms/gv-vertical-menu.d.ts +28 -0
- package/dist/src/organisms/gv-vertical-menu.js +119 -0
- package/dist/src/policy-studio/gv-flow-step.d.ts +142 -0
- package/dist/src/policy-studio/gv-flow-step.js +443 -0
- package/dist/src/policy-studio/gv-flow.d.ts +89 -0
- package/dist/src/policy-studio/gv-flow.js +595 -0
- package/dist/src/policy-studio/gv-policy-studio-menu.d.ts +94 -0
- package/dist/src/policy-studio/gv-policy-studio-menu.js +689 -0
- package/dist/src/policy-studio/gv-policy-studio.d.ts +464 -0
- package/dist/src/policy-studio/gv-policy-studio.js +1712 -0
- package/dist/src/styles/empty.d.ts +1 -0
- package/dist/src/styles/empty.js +35 -0
- package/dist/src/styles/input.d.ts +1 -0
- package/dist/src/styles/input.js +262 -0
- package/dist/src/styles/link.d.ts +1 -0
- package/dist/src/styles/link.js +31 -0
- package/dist/src/styles/shapes.d.ts +2 -0
- package/dist/src/styles/shapes.js +17 -0
- package/dist/src/styles/skeleton.d.ts +1 -0
- package/dist/src/styles/skeleton.js +52 -0
- package/dist/src/styles/zoom.d.ts +1 -0
- package/dist/src/styles/zoom.js +39 -0
- package/dist/src/theme/gv-theme.d.ts +81 -0
- package/dist/src/theme/gv-theme.js +197 -0
- package/dist/wc/gv-autocomplete.d.ts +1 -0
- package/dist/wc/gv-autocomplete.js +1 -0
- package/dist/wc/gv-button.d.ts +1 -0
- package/dist/wc/gv-button.js +1 -0
- package/dist/wc/gv-card-full.d.ts +1 -0
- package/dist/wc/gv-card-full.js +1 -0
- package/dist/wc/gv-card-list.d.ts +1 -0
- package/dist/wc/gv-card-list.js +1 -0
- package/dist/wc/gv-card.d.ts +1 -0
- package/dist/wc/gv-card.js +1 -0
- package/dist/wc/gv-category-list.d.ts +1 -0
- package/dist/wc/gv-category-list.js +1 -0
- package/dist/wc/gv-category.d.ts +1 -0
- package/dist/wc/gv-category.js +1 -0
- package/dist/wc/gv-chart-bar.d.ts +1 -0
- package/dist/wc/gv-chart-bar.js +1 -0
- package/dist/wc/gv-chart-gauge.d.ts +1 -0
- package/dist/wc/gv-chart-gauge.js +1 -0
- package/dist/wc/gv-chart-histogram.d.ts +1 -0
- package/dist/wc/gv-chart-histogram.js +1 -0
- package/dist/wc/gv-chart-line.d.ts +1 -0
- package/dist/wc/gv-chart-line.js +1 -0
- package/dist/wc/gv-chart-map.d.ts +1 -0
- package/dist/wc/gv-chart-map.js +1 -0
- package/dist/wc/gv-chart-pie.d.ts +1 -0
- package/dist/wc/gv-chart-pie.js +1 -0
- package/dist/wc/gv-checkbox.d.ts +1 -0
- package/dist/wc/gv-checkbox.js +1 -0
- package/dist/wc/gv-code.d.ts +1 -0
- package/dist/wc/gv-code.js +1 -0
- package/dist/wc/gv-confirm.d.ts +1 -0
- package/dist/wc/gv-confirm.js +1 -0
- package/dist/wc/gv-cron-editor.d.ts +1 -0
- package/dist/wc/gv-cron-editor.js +1 -0
- package/dist/wc/gv-date-picker-calendar.d.ts +1 -0
- package/dist/wc/gv-date-picker-calendar.js +1 -0
- package/dist/wc/gv-date-picker-cell.d.ts +1 -0
- package/dist/wc/gv-date-picker-cell.js +1 -0
- package/dist/wc/gv-date-picker.d.ts +1 -0
- package/dist/wc/gv-date-picker.js +1 -0
- package/dist/wc/gv-documentation.d.ts +1 -0
- package/dist/wc/gv-documentation.js +1 -0
- package/dist/wc/gv-dropdown-menu.d.ts +1 -0
- package/dist/wc/gv-dropdown-menu.js +1 -0
- package/dist/wc/gv-expandable.d.ts +1 -0
- package/dist/wc/gv-expandable.js +1 -0
- package/dist/wc/gv-expression-language.d.ts +1 -0
- package/dist/wc/gv-expression-language.js +1 -0
- package/dist/wc/gv-file-upload.d.ts +1 -0
- package/dist/wc/gv-file-upload.js +1 -0
- package/dist/wc/gv-flow-step.d.ts +1 -0
- package/dist/wc/gv-flow-step.js +1 -0
- package/dist/wc/gv-flow.d.ts +1 -0
- package/dist/wc/gv-flow.js +1 -0
- package/dist/wc/gv-header.d.ts +1 -0
- package/dist/wc/gv-header.js +1 -0
- package/dist/wc/gv-http-client.d.ts +1 -0
- package/dist/wc/gv-http-client.js +1 -0
- package/dist/wc/gv-icon.d.ts +1 -0
- package/dist/wc/gv-icon.js +1 -0
- package/dist/wc/gv-identity-picture.d.ts +1 -0
- package/dist/wc/gv-identity-picture.js +1 -0
- package/dist/wc/gv-image.d.ts +1 -0
- package/dist/wc/gv-image.js +1 -0
- package/dist/wc/gv-input-message.d.ts +1 -0
- package/dist/wc/gv-input-message.js +1 -0
- package/dist/wc/gv-input.d.ts +1 -0
- package/dist/wc/gv-input.js +1 -0
- package/dist/wc/gv-link.d.ts +1 -0
- package/dist/wc/gv-link.js +1 -0
- package/dist/wc/gv-list.d.ts +1 -0
- package/dist/wc/gv-list.js +1 -0
- package/dist/wc/gv-menu.d.ts +1 -0
- package/dist/wc/gv-menu.js +1 -0
- package/dist/wc/gv-message.d.ts +1 -0
- package/dist/wc/gv-message.js +1 -0
- package/dist/wc/gv-metric.d.ts +1 -0
- package/dist/wc/gv-metric.js +1 -0
- package/dist/wc/gv-metrics.d.ts +1 -0
- package/dist/wc/gv-metrics.js +1 -0
- package/dist/wc/gv-modal.d.ts +1 -0
- package/dist/wc/gv-modal.js +1 -0
- package/dist/wc/gv-nav.d.ts +1 -0
- package/dist/wc/gv-nav.js +1 -0
- package/dist/wc/gv-newsletter-subscription.d.ts +1 -0
- package/dist/wc/gv-newsletter-subscription.js +1 -0
- package/dist/wc/gv-option.d.ts +1 -0
- package/dist/wc/gv-option.js +1 -0
- package/dist/wc/gv-pagination.d.ts +1 -0
- package/dist/wc/gv-pagination.js +1 -0
- package/dist/wc/gv-plans.d.ts +1 -0
- package/dist/wc/gv-plans.js +1 -0
- package/dist/wc/gv-policy-studio-menu.d.ts +1 -0
- package/dist/wc/gv-policy-studio-menu.js +1 -0
- package/dist/wc/gv-policy-studio.d.ts +1 -0
- package/dist/wc/gv-policy-studio.js +1 -0
- package/dist/wc/gv-popover.d.ts +1 -0
- package/dist/wc/gv-popover.js +1 -0
- package/dist/wc/gv-promote.d.ts +1 -0
- package/dist/wc/gv-promote.js +1 -0
- package/dist/wc/gv-properties.d.ts +1 -0
- package/dist/wc/gv-properties.js +1 -0
- package/dist/wc/gv-rating-list.d.ts +1 -0
- package/dist/wc/gv-rating-list.js +1 -0
- package/dist/wc/gv-rating.d.ts +1 -0
- package/dist/wc/gv-rating.js +1 -0
- package/dist/wc/gv-relative-time.d.ts +1 -0
- package/dist/wc/gv-relative-time.js +1 -0
- package/dist/wc/gv-resizable-views.d.ts +1 -0
- package/dist/wc/gv-resizable-views.js +1 -0
- package/dist/wc/gv-resources.d.ts +1 -0
- package/dist/wc/gv-resources.js +1 -0
- package/dist/wc/gv-row-expandable.d.ts +1 -0
- package/dist/wc/gv-row-expandable.js +1 -0
- package/dist/wc/gv-row.d.ts +1 -0
- package/dist/wc/gv-row.js +1 -0
- package/dist/wc/gv-schema-form-array.d.ts +1 -0
- package/dist/wc/gv-schema-form-array.js +1 -0
- package/dist/wc/gv-schema-form-control-object.d.ts +1 -0
- package/dist/wc/gv-schema-form-control-object.js +1 -0
- package/dist/wc/gv-schema-form-control.d.ts +1 -0
- package/dist/wc/gv-schema-form-control.js +1 -0
- package/dist/wc/gv-schema-form.d.ts +1 -0
- package/dist/wc/gv-schema-form.js +1 -0
- package/dist/wc/gv-select-native.d.ts +1 -0
- package/dist/wc/gv-select-native.js +1 -0
- package/dist/wc/gv-select.d.ts +1 -0
- package/dist/wc/gv-select.js +1 -0
- package/dist/wc/gv-spinner.d.ts +1 -0
- package/dist/wc/gv-spinner.js +1 -0
- package/dist/wc/gv-state.d.ts +1 -0
- package/dist/wc/gv-state.js +1 -0
- package/dist/wc/gv-stats.d.ts +1 -0
- package/dist/wc/gv-stats.js +1 -0
- package/dist/wc/gv-stepper.d.ts +1 -0
- package/dist/wc/gv-stepper.js +1 -0
- package/dist/wc/gv-switch.d.ts +1 -0
- package/dist/wc/gv-switch.js +1 -0
- package/dist/wc/gv-table.d.ts +1 -0
- package/dist/wc/gv-table.js +1 -0
- package/dist/wc/gv-tabs.d.ts +1 -0
- package/dist/wc/gv-tabs.js +1 -0
- package/dist/wc/gv-tag.d.ts +1 -0
- package/dist/wc/gv-tag.js +1 -0
- package/dist/wc/gv-text.d.ts +1 -0
- package/dist/wc/gv-text.js +1 -0
- package/dist/wc/gv-theme.d.ts +1 -0
- package/dist/wc/gv-theme.js +1 -0
- package/dist/wc/gv-tree.d.ts +1 -0
- package/dist/wc/gv-tree.js +1 -0
- package/dist/wc/gv-user-menu.d.ts +1 -0
- package/dist/wc/gv-user-menu.js +1 -0
- package/dist/wc/gv-vertical-menu.d.ts +1 -0
- package/dist/wc/gv-vertical-menu.js +1 -0
- package/package.json +8 -16
- package/src/atoms/gv-autocomplete.js +0 -1
- package/src/atoms/gv-button.js +0 -1
- package/src/atoms/gv-checkbox.js +0 -1
- package/src/atoms/gv-date-picker-calendar.js +0 -1
- package/src/atoms/gv-date-picker-cell.js +0 -1
- package/src/atoms/gv-date-picker.js +0 -1
- package/src/atoms/gv-file-upload.js +0 -1
- package/src/atoms/gv-icon.js +0 -1
- package/src/atoms/gv-image.js +0 -1
- package/src/atoms/gv-input-message.js +0 -1
- package/src/atoms/gv-input.js +0 -1
- package/src/atoms/gv-link.js +0 -1
- package/src/atoms/gv-message.js +0 -1
- package/src/atoms/gv-metric.js +0 -1
- package/src/atoms/gv-relative-time.js +0 -1
- package/src/atoms/gv-select-native.js +0 -1
- package/src/atoms/gv-select.js +0 -1
- package/src/atoms/gv-spinner.js +0 -1
- package/src/atoms/gv-state.js +0 -1
- package/src/atoms/gv-switch.js +0 -1
- package/src/atoms/gv-tag.js +0 -1
- package/src/atoms/gv-text.js +0 -1
- package/src/charts/gv-chart-bar.js +0 -1
- package/src/charts/gv-chart-gauge.js +0 -1
- package/src/charts/gv-chart-histogram.js +0 -1
- package/src/charts/gv-chart-line.js +0 -1
- package/src/charts/gv-chart-map.js +0 -1
- package/src/charts/gv-chart-pie.js +0 -1
- package/src/index.js +0 -1
- package/src/lib/cron-expression.js +0 -1
- package/src/lib/date.js +0 -1
- package/src/lib/events.js +0 -1
- package/src/lib/http-client-schema-form.js +0 -1
- package/src/lib/http.js +0 -1
- package/src/lib/i18n.js +0 -1
- package/src/lib/item.js +0 -1
- package/src/lib/properties.js +0 -1
- package/src/lib/schema-form.js +0 -1
- package/src/lib/studio.js +0 -1
- package/src/lib/style.js +0 -1
- package/src/lib/text-format.js +0 -1
- package/src/lib/theme.js +0 -1
- package/src/lib/utils.js +0 -1
- package/src/mixins/chart-element.js +0 -1
- package/src/mixins/input-element.js +0 -1
- package/src/mixins/item-resource.js +0 -1
- package/src/mixins/keyboard-element.js +0 -1
- package/src/mixins/update-after-browser.js +0 -1
- package/src/mixins/with-resize-observer.js +0 -1
- package/src/mixins/with-skeleton-attribute.js +0 -1
- package/src/molecules/gv-card-full.js +0 -1
- package/src/molecules/gv-card-list.js +0 -1
- package/src/molecules/gv-card.js +0 -1
- package/src/molecules/gv-category-list.js +0 -1
- package/src/molecules/gv-category.js +0 -1
- package/src/molecules/gv-code.js +0 -1
- package/src/molecules/gv-confirm.js +0 -1
- package/src/molecules/gv-cron-editor.js +0 -1
- package/src/molecules/gv-dropdown-menu.js +0 -1
- package/src/molecules/gv-expandable.js +0 -1
- package/src/molecules/gv-expression-language.js +0 -1
- package/src/molecules/gv-identity-picture.js +0 -1
- package/src/molecules/gv-list.js +0 -1
- package/src/molecules/gv-metrics.js +0 -1
- package/src/molecules/gv-modal.js +0 -1
- package/src/molecules/gv-nav.js +0 -1
- package/src/molecules/gv-option.js +0 -1
- package/src/molecules/gv-plans.js +0 -1
- package/src/molecules/gv-popover.js +0 -1
- package/src/molecules/gv-promote.js +0 -1
- package/src/molecules/gv-rating-list.js +0 -1
- package/src/molecules/gv-rating.js +0 -1
- package/src/molecules/gv-row-expandable.js +0 -1
- package/src/molecules/gv-row.js +0 -1
- package/src/molecules/gv-stats.js +0 -1
- package/src/molecules/gv-stepper.js +0 -1
- package/src/molecules/gv-table.js +0 -1
- package/src/molecules/gv-tree.js +0 -1
- package/src/organisms/gv-documentation.js +0 -1
- package/src/organisms/gv-header.js +0 -1
- package/src/organisms/gv-http-client.js +0 -1
- package/src/organisms/gv-menu.js +0 -1
- package/src/organisms/gv-newsletter-subscription.js +0 -1
- package/src/organisms/gv-pagination.js +0 -1
- package/src/organisms/gv-properties.js +0 -1
- package/src/organisms/gv-resizable-views.js +0 -1
- package/src/organisms/gv-resources.js +0 -1
- package/src/organisms/gv-schema-form-array.js +0 -1
- package/src/organisms/gv-schema-form-control-object.js +0 -1
- package/src/organisms/gv-schema-form-control.js +0 -1
- package/src/organisms/gv-schema-form.js +0 -1
- package/src/organisms/gv-tabs.js +0 -1
- package/src/organisms/gv-user-menu.js +0 -1
- package/src/organisms/gv-vertical-menu.js +0 -1
- package/src/policy-studio/gv-flow-step.js +0 -1
- package/src/policy-studio/gv-flow.js +0 -1
- package/src/policy-studio/gv-policy-studio-menu.js +0 -1
- package/src/policy-studio/gv-policy-studio.js +0 -1
- package/src/styles/empty.js +0 -1
- package/src/styles/input.js +0 -1
- package/src/styles/link.js +0 -1
- package/src/styles/shapes.js +0 -1
- package/src/styles/skeleton.js +0 -1
- package/src/styles/zoom.js +0 -1
- package/src/theme/gv-theme.js +0 -1
- package/wc/gv-autocomplete.js +0 -1
- package/wc/gv-button.js +0 -1
- package/wc/gv-card-full.js +0 -1
- package/wc/gv-card-list.js +0 -1
- package/wc/gv-card.js +0 -1
- package/wc/gv-category-list.js +0 -1
- package/wc/gv-category.js +0 -1
- package/wc/gv-chart-bar.js +0 -1
- package/wc/gv-chart-gauge.js +0 -1
- package/wc/gv-chart-histogram.js +0 -1
- package/wc/gv-chart-line.js +0 -1
- package/wc/gv-chart-map.js +0 -1
- package/wc/gv-chart-pie.js +0 -1
- package/wc/gv-checkbox.js +0 -1
- package/wc/gv-code.js +0 -1
- package/wc/gv-confirm.js +0 -1
- package/wc/gv-cron-editor.js +0 -1
- package/wc/gv-date-picker-calendar.js +0 -1
- package/wc/gv-date-picker-cell.js +0 -1
- package/wc/gv-date-picker.js +0 -1
- package/wc/gv-documentation.js +0 -1
- package/wc/gv-dropdown-menu.js +0 -1
- package/wc/gv-expandable.js +0 -1
- package/wc/gv-expression-language.js +0 -1
- package/wc/gv-file-upload.js +0 -1
- package/wc/gv-flow-step.js +0 -1
- package/wc/gv-flow.js +0 -1
- package/wc/gv-header.js +0 -1
- package/wc/gv-http-client.js +0 -1
- package/wc/gv-icon.js +0 -1
- package/wc/gv-identity-picture.js +0 -1
- package/wc/gv-image.js +0 -1
- package/wc/gv-input-message.js +0 -1
- package/wc/gv-input.js +0 -1
- package/wc/gv-link.js +0 -1
- package/wc/gv-list.js +0 -1
- package/wc/gv-menu.js +0 -1
- package/wc/gv-message.js +0 -1
- package/wc/gv-metric.js +0 -1
- package/wc/gv-metrics.js +0 -1
- package/wc/gv-modal.js +0 -1
- package/wc/gv-nav.js +0 -1
- package/wc/gv-newsletter-subscription.js +0 -1
- package/wc/gv-option.js +0 -1
- package/wc/gv-pagination.js +0 -1
- package/wc/gv-plans.js +0 -1
- package/wc/gv-policy-studio-menu.js +0 -1
- package/wc/gv-policy-studio.js +0 -1
- package/wc/gv-popover.js +0 -1
- package/wc/gv-promote.js +0 -1
- package/wc/gv-properties.js +0 -1
- package/wc/gv-rating-list.js +0 -1
- package/wc/gv-rating.js +0 -1
- package/wc/gv-relative-time.js +0 -1
- package/wc/gv-resizable-views.js +0 -1
- package/wc/gv-resources.js +0 -1
- package/wc/gv-row-expandable.js +0 -1
- package/wc/gv-row.js +0 -1
- package/wc/gv-schema-form-array.js +0 -1
- package/wc/gv-schema-form-control-object.js +0 -1
- package/wc/gv-schema-form-control.js +0 -1
- package/wc/gv-schema-form.js +0 -1
- package/wc/gv-select-native.js +0 -1
- package/wc/gv-select.js +0 -1
- package/wc/gv-spinner.js +0 -1
- package/wc/gv-state.js +0 -1
- package/wc/gv-stats.js +0 -1
- package/wc/gv-stepper.js +0 -1
- package/wc/gv-switch.js +0 -1
- package/wc/gv-table.js +0 -1
- package/wc/gv-tabs.js +0 -1
- package/wc/gv-tag.js +0 -1
- package/wc/gv-text.js +0 -1
- package/wc/gv-theme.js +0 -1
- package/wc/gv-tree.js +0 -1
- package/wc/gv-user-menu.js +0 -1
- package/wc/gv-vertical-menu.js +0 -1
|
@@ -0,0 +1,464 @@
|
|
|
1
|
+
declare const GvPolicyStudio_base: {
|
|
2
|
+
new (): {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
_controller: {};
|
|
5
|
+
_handleKeyDown: (e: any) => void;
|
|
6
|
+
_handleKeyUp: (e: any) => void;
|
|
7
|
+
connectedCallback(): void;
|
|
8
|
+
disconnectedCallback(): void;
|
|
9
|
+
_onKeyDown(e: any): void;
|
|
10
|
+
_onKeyUp(e: any): void;
|
|
11
|
+
isPressed(...keys: any[]): boolean;
|
|
12
|
+
onKeyboard(controller: any): void;
|
|
13
|
+
};
|
|
14
|
+
[x: string]: any;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Studio Policy component
|
|
18
|
+
*
|
|
19
|
+
* ⚠️ This component is based on `asciidoctor`, `highlight.js` and `asciidoctor-highlight.js`.
|
|
20
|
+
* To use this component in your project be sure the dependencies are installed or
|
|
21
|
+
* install them with: `npm install asciidoctor highlight.js asciidoctor-highlight.js --save`
|
|
22
|
+
*
|
|
23
|
+
* @fires gv-policy-studio:select-policy - Select policy event
|
|
24
|
+
* @fires gv-policy-studio:save - Event sent when "Save" button is clicked, it contains the whole definition of the API
|
|
25
|
+
* @fires gv-policy-studio:debug - Event sent when validation button of the 'Try it' tab is clicked, it contains the whole definition of the API and the information about the try it request.
|
|
26
|
+
*
|
|
27
|
+
* @attr {Array} policies - Policies available
|
|
28
|
+
* @attr {Array} services - Services available
|
|
29
|
+
* @attr {Array} resourceTypes - Resources types available
|
|
30
|
+
* @attr {Array} propertyProviders - Providers of properties
|
|
31
|
+
* @attr {Array} dynamicPropertySchema - Schema for the dynamic property form
|
|
32
|
+
* @attr {String} tabId - Current tabId to display (design, settings, properties or resources)
|
|
33
|
+
* @attr {Object} definition - The definition of flows
|
|
34
|
+
* @attr {Object} documentation - The documentation to display
|
|
35
|
+
* @attr {Object} flowSchema - The flow form configuration to display in gv-schema-form component
|
|
36
|
+
* @attr {Object} configurationSchema - The form configuration to display in gv-schema-form component
|
|
37
|
+
* @attr {Object} configurationInformation - The information related to api configuration tab
|
|
38
|
+
* @attr {Boolean} isDirty - true if component is dirty
|
|
39
|
+
* @attr {Array} selectedFlowsId - The selected flows id
|
|
40
|
+
* @attr {Boolean} sortable - true if flows are sortable
|
|
41
|
+
* @attr {Boolean} readonly - true if readonly
|
|
42
|
+
* @attr {Boolean} readonly-plans - true if plans' flows can't be modified
|
|
43
|
+
* @attr {Boolean} can-add - true if user can add flow
|
|
44
|
+
* @attr {String} flowsTitle - flows menu title
|
|
45
|
+
* @attr {Boolean} has-policy-filter - true if policies have onRequest/onResponse properties
|
|
46
|
+
* @attr {Boolean} can-debug - true if debug tab should be displayed
|
|
47
|
+
* @attr {Object} debugResponse - true if debug tab should be displayed
|
|
48
|
+
* @attr {Boolean} has-conditional-steps - true if steps can be conditioned
|
|
49
|
+
*/
|
|
50
|
+
export class GvPolicyStudio extends GvPolicyStudio_base {
|
|
51
|
+
static get properties(): {
|
|
52
|
+
policies: {
|
|
53
|
+
type: ArrayConstructor;
|
|
54
|
+
};
|
|
55
|
+
services: {
|
|
56
|
+
type: ObjectConstructor;
|
|
57
|
+
};
|
|
58
|
+
resourceTypes: {
|
|
59
|
+
type: ArrayConstructor;
|
|
60
|
+
attribute: string;
|
|
61
|
+
};
|
|
62
|
+
propertyProviders: {
|
|
63
|
+
type: ArrayConstructor;
|
|
64
|
+
attribute: string;
|
|
65
|
+
};
|
|
66
|
+
dynamicPropertySchema: {
|
|
67
|
+
type: ObjectConstructor;
|
|
68
|
+
attribute: string;
|
|
69
|
+
};
|
|
70
|
+
tabId: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
attribute: string;
|
|
73
|
+
};
|
|
74
|
+
_tabId: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
attribute: boolean;
|
|
77
|
+
};
|
|
78
|
+
definition: {
|
|
79
|
+
type: ObjectConstructor;
|
|
80
|
+
};
|
|
81
|
+
_definition: {
|
|
82
|
+
type: ObjectConstructor;
|
|
83
|
+
attribute: boolean;
|
|
84
|
+
};
|
|
85
|
+
documentation: {
|
|
86
|
+
type: ObjectConstructor;
|
|
87
|
+
};
|
|
88
|
+
flowSchema: {
|
|
89
|
+
type: ObjectConstructor;
|
|
90
|
+
attribute: string;
|
|
91
|
+
};
|
|
92
|
+
configurationSchema: {
|
|
93
|
+
type: ObjectConstructor;
|
|
94
|
+
attribute: string;
|
|
95
|
+
};
|
|
96
|
+
_configurationSchema: {
|
|
97
|
+
type: ObjectConstructor;
|
|
98
|
+
attribute: boolean;
|
|
99
|
+
};
|
|
100
|
+
configurationInformation: {
|
|
101
|
+
type: StringConstructor;
|
|
102
|
+
attribute: string;
|
|
103
|
+
};
|
|
104
|
+
isDirty: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
attribute: string;
|
|
107
|
+
reflect: boolean;
|
|
108
|
+
};
|
|
109
|
+
_dragPolicy: {
|
|
110
|
+
type: ObjectConstructor;
|
|
111
|
+
attribute: boolean;
|
|
112
|
+
};
|
|
113
|
+
_dropPolicy: {
|
|
114
|
+
type: ObjectConstructor;
|
|
115
|
+
attribute: boolean;
|
|
116
|
+
};
|
|
117
|
+
selectedFlowsId: {
|
|
118
|
+
type: ArrayConstructor;
|
|
119
|
+
attribute: string;
|
|
120
|
+
};
|
|
121
|
+
_selectedFlowsId: {
|
|
122
|
+
type: ArrayConstructor;
|
|
123
|
+
attribute: boolean;
|
|
124
|
+
};
|
|
125
|
+
_currentPolicyId: {
|
|
126
|
+
type: StringConstructor;
|
|
127
|
+
attribute: boolean;
|
|
128
|
+
};
|
|
129
|
+
_searchPolicyQuery: {
|
|
130
|
+
type: StringConstructor;
|
|
131
|
+
attribute: boolean;
|
|
132
|
+
};
|
|
133
|
+
_searchFlowQuery: {
|
|
134
|
+
type: StringConstructor;
|
|
135
|
+
attribute: boolean;
|
|
136
|
+
};
|
|
137
|
+
_flowStepSchema: {
|
|
138
|
+
type: ObjectConstructor;
|
|
139
|
+
attribute: boolean;
|
|
140
|
+
};
|
|
141
|
+
_currentFlowStep: {
|
|
142
|
+
type: ObjectConstructor;
|
|
143
|
+
attribute: boolean;
|
|
144
|
+
};
|
|
145
|
+
_policyFilter: {
|
|
146
|
+
type: ArrayConstructor;
|
|
147
|
+
attribute: boolean;
|
|
148
|
+
};
|
|
149
|
+
_flowFilter: {
|
|
150
|
+
type: ArrayConstructor;
|
|
151
|
+
attribute: boolean;
|
|
152
|
+
};
|
|
153
|
+
_currentAskConfirmation: {
|
|
154
|
+
type: BooleanConstructor;
|
|
155
|
+
attribute: boolean;
|
|
156
|
+
};
|
|
157
|
+
hasProperties: {
|
|
158
|
+
type: BooleanConstructor;
|
|
159
|
+
attribute: string;
|
|
160
|
+
};
|
|
161
|
+
_hasProperties: {
|
|
162
|
+
type: BooleanConstructor;
|
|
163
|
+
attribute: boolean;
|
|
164
|
+
};
|
|
165
|
+
hasResources: {
|
|
166
|
+
type: BooleanConstructor;
|
|
167
|
+
attribute: string;
|
|
168
|
+
};
|
|
169
|
+
hasPolicyFilter: {
|
|
170
|
+
type: BooleanConstructor;
|
|
171
|
+
attribute: string;
|
|
172
|
+
};
|
|
173
|
+
flowsTitle: {
|
|
174
|
+
type: StringConstructor;
|
|
175
|
+
attribute: string;
|
|
176
|
+
};
|
|
177
|
+
sortable: {
|
|
178
|
+
type: BooleanConstructor;
|
|
179
|
+
};
|
|
180
|
+
canAdd: {
|
|
181
|
+
type: BooleanConstructor;
|
|
182
|
+
attribute: string;
|
|
183
|
+
};
|
|
184
|
+
readonly: {
|
|
185
|
+
type: BooleanConstructor;
|
|
186
|
+
};
|
|
187
|
+
readonlyPlans: {
|
|
188
|
+
type: BooleanConstructor;
|
|
189
|
+
attribute: string;
|
|
190
|
+
};
|
|
191
|
+
canDebug: {
|
|
192
|
+
type: BooleanConstructor;
|
|
193
|
+
attribute: string;
|
|
194
|
+
};
|
|
195
|
+
_canDebug: {
|
|
196
|
+
type: BooleanConstructor;
|
|
197
|
+
attribute: boolean;
|
|
198
|
+
};
|
|
199
|
+
debugResponse: {
|
|
200
|
+
type: ObjectConstructor;
|
|
201
|
+
attribute: string;
|
|
202
|
+
};
|
|
203
|
+
hasConditionalSteps: {
|
|
204
|
+
type: BooleanConstructor;
|
|
205
|
+
attribute: string;
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
static get styles(): import("lit").CSSResult[];
|
|
209
|
+
isDirty: boolean;
|
|
210
|
+
policies: any[];
|
|
211
|
+
resourceTypes: any[];
|
|
212
|
+
set tabId(arg: any);
|
|
213
|
+
get tabId(): any;
|
|
214
|
+
set selectedFlowsId(arg: any);
|
|
215
|
+
get selectedFlowsId(): any;
|
|
216
|
+
flowsTitle: string;
|
|
217
|
+
sortable: boolean;
|
|
218
|
+
services: {};
|
|
219
|
+
_definition: {
|
|
220
|
+
flows: never[];
|
|
221
|
+
};
|
|
222
|
+
_tabs: {
|
|
223
|
+
id: string;
|
|
224
|
+
title: string;
|
|
225
|
+
icon: string;
|
|
226
|
+
}[];
|
|
227
|
+
_policyFilter: any[];
|
|
228
|
+
_flowFilter: any[];
|
|
229
|
+
set hasProperties(arg: any);
|
|
230
|
+
get hasProperties(): any;
|
|
231
|
+
_hasProperties: any;
|
|
232
|
+
set hasResources(arg: any);
|
|
233
|
+
set canDebug(arg: any);
|
|
234
|
+
get _flowFilterOptions(): {
|
|
235
|
+
id: string;
|
|
236
|
+
title: string;
|
|
237
|
+
icon: string;
|
|
238
|
+
}[] | undefined;
|
|
239
|
+
set hasPolicyFilter(arg: any);
|
|
240
|
+
_policyFilterOptions: {
|
|
241
|
+
id: string;
|
|
242
|
+
title: string;
|
|
243
|
+
icon: string;
|
|
244
|
+
}[] | undefined;
|
|
245
|
+
set configurationSchema(arg: any);
|
|
246
|
+
get configurationSchema(): any;
|
|
247
|
+
_configurationSchema: any;
|
|
248
|
+
_tabId: any;
|
|
249
|
+
set definition(arg: {
|
|
250
|
+
flows: never[];
|
|
251
|
+
});
|
|
252
|
+
get definition(): {
|
|
253
|
+
flows: never[];
|
|
254
|
+
};
|
|
255
|
+
_initialDefinition: any;
|
|
256
|
+
_selectedFlowsId: any;
|
|
257
|
+
_updateSelectedFlows(selectedFlowsId: any): void;
|
|
258
|
+
_selectFirstFlow(dispatch?: boolean): void;
|
|
259
|
+
_getFlowElement(flowId: any): any;
|
|
260
|
+
_onDragEndPolicy(): void;
|
|
261
|
+
_onDropPolicy({ detail }: {
|
|
262
|
+
detail: any;
|
|
263
|
+
}): Promise<void>;
|
|
264
|
+
_dragPolicy: any;
|
|
265
|
+
_dropPolicy: any;
|
|
266
|
+
_currentAskConfirmation: boolean | null | undefined;
|
|
267
|
+
_onDeletePolicy({ detail }: {
|
|
268
|
+
detail: any;
|
|
269
|
+
}): void;
|
|
270
|
+
_onDesign(): void;
|
|
271
|
+
buildSchema({ schema }: {
|
|
272
|
+
schema: any;
|
|
273
|
+
}): any;
|
|
274
|
+
_editFlowStep({ step, flow, policy, group }: {
|
|
275
|
+
step: any;
|
|
276
|
+
flow: any;
|
|
277
|
+
policy: any;
|
|
278
|
+
group: any;
|
|
279
|
+
}): Promise<void>;
|
|
280
|
+
_currentPolicyId: any;
|
|
281
|
+
_onEditFlowStep({ detail: { step, flow, policy, group } }: {
|
|
282
|
+
detail: {
|
|
283
|
+
step: any;
|
|
284
|
+
flow: any;
|
|
285
|
+
policy: any;
|
|
286
|
+
group: any;
|
|
287
|
+
};
|
|
288
|
+
}): Promise<void>;
|
|
289
|
+
_getResizableViews(): any;
|
|
290
|
+
_maximizeTopView(): void;
|
|
291
|
+
_maximizeBottomView(): void;
|
|
292
|
+
_splitMainViews(): void;
|
|
293
|
+
_onChangeFlowStepState({ detail }: {
|
|
294
|
+
detail: any;
|
|
295
|
+
}): void;
|
|
296
|
+
_onCloseFlowStepForm(): Promise<void>;
|
|
297
|
+
_closeFlowStepForm(force?: boolean): Promise<void>;
|
|
298
|
+
_askToValidateForms(): Promise<any>;
|
|
299
|
+
_setCurrentFlowStep(currentFlowStep: any, flowStepSchema: any, force?: boolean): Promise<void>;
|
|
300
|
+
_currentFlowStep: any;
|
|
301
|
+
_flowStepSchema: any;
|
|
302
|
+
_refresh(closeStepForm?: boolean): void;
|
|
303
|
+
_onSelectFlows({ detail }: {
|
|
304
|
+
detail: any;
|
|
305
|
+
}): Promise<void>;
|
|
306
|
+
_onOpenDocumentationFromMenu({ detail: { policy } }: {
|
|
307
|
+
detail: {
|
|
308
|
+
policy: any;
|
|
309
|
+
};
|
|
310
|
+
}): Promise<void>;
|
|
311
|
+
_fetchDocumentation(policy: any): void;
|
|
312
|
+
_onOpenDocumentation(): void;
|
|
313
|
+
_onOpenDocumentationFromForm(): void;
|
|
314
|
+
_findFlowCollection(flowId: any): {
|
|
315
|
+
plan: any;
|
|
316
|
+
flows: any;
|
|
317
|
+
};
|
|
318
|
+
_findFlowById(flowId: any): undefined;
|
|
319
|
+
getSelectedFlow(index?: number): undefined;
|
|
320
|
+
_onTargetPolicy({ detail }: {
|
|
321
|
+
detail: any;
|
|
322
|
+
}): void;
|
|
323
|
+
_onChangeFlowStep({ detail }: {
|
|
324
|
+
detail: any;
|
|
325
|
+
}): void;
|
|
326
|
+
_writeFlowStep(values: any): void;
|
|
327
|
+
_onSubmitFlowStep({ detail }: {
|
|
328
|
+
detail: any;
|
|
329
|
+
}): Promise<void>;
|
|
330
|
+
_onCancelFlow(): void;
|
|
331
|
+
_onSubmitFlow({ detail: { values } }: {
|
|
332
|
+
detail: {
|
|
333
|
+
values: any;
|
|
334
|
+
};
|
|
335
|
+
}): void;
|
|
336
|
+
_onCancelFlowMode(): void;
|
|
337
|
+
_onSubmitFlowMode({ detail: { values } }: {
|
|
338
|
+
detail: {
|
|
339
|
+
values: any;
|
|
340
|
+
};
|
|
341
|
+
}): void;
|
|
342
|
+
_onChangeTab({ detail }: {
|
|
343
|
+
detail: any;
|
|
344
|
+
}): void;
|
|
345
|
+
_changeTabValidator({ from, to }: {
|
|
346
|
+
from: any;
|
|
347
|
+
to: any;
|
|
348
|
+
}): Promise<any>;
|
|
349
|
+
_changeTab(tabId: any): void;
|
|
350
|
+
_onDragStartFlowStep(flow: any, { detail }: {
|
|
351
|
+
detail: any;
|
|
352
|
+
}): void;
|
|
353
|
+
_renderFlowEmptyState(readonlyMode: any): import("lit-html").TemplateResult<1>;
|
|
354
|
+
_renderFlow(index: number | undefined, hasEmptyState: boolean | undefined, readonlyMode: any): import("lit-html").TemplateResult<1>;
|
|
355
|
+
_onFetchResources(event: any): void;
|
|
356
|
+
_renderPolicy(readonlyMode: any): import("lit-html").TemplateResult<1>;
|
|
357
|
+
_getFlowStepForm(): any;
|
|
358
|
+
_onResetFlowStep(): void;
|
|
359
|
+
_generateFlowsId(list: any, force?: boolean): any;
|
|
360
|
+
_generatePlanFlowsId(plan: any, force?: boolean): any;
|
|
361
|
+
_generateFlowStepId(flowId: any, flowKey: any, position: any): string;
|
|
362
|
+
_generateId(prefix: any, list: any, force?: boolean, isFlow?: boolean): any;
|
|
363
|
+
getChildren(): any[];
|
|
364
|
+
getUpdateComplete(): Promise<void>;
|
|
365
|
+
shouldUpdate(changedProperties: any): any;
|
|
366
|
+
updated(props: any): void;
|
|
367
|
+
_renderFlowStepForm(readonlyMode: any): import("lit-html").TemplateResult<1>;
|
|
368
|
+
_onCloseDocumentation(): void;
|
|
369
|
+
documentation: any;
|
|
370
|
+
_onDeleteFlow({ detail }: {
|
|
371
|
+
detail: any;
|
|
372
|
+
}): void;
|
|
373
|
+
get definedFlows(): never[];
|
|
374
|
+
get definedPlans(): any;
|
|
375
|
+
get definedResources(): any;
|
|
376
|
+
get definedProperties(): any;
|
|
377
|
+
_onDuplicateFlow({ detail }: {
|
|
378
|
+
detail: any;
|
|
379
|
+
}): Promise<void>;
|
|
380
|
+
_onChangeFlowState({ detail }: {
|
|
381
|
+
detail: any;
|
|
382
|
+
}): void;
|
|
383
|
+
_onAddFlowPlan({ detail }: {
|
|
384
|
+
detail: any;
|
|
385
|
+
}): Promise<void>;
|
|
386
|
+
_onAddFlow(): Promise<void>;
|
|
387
|
+
_addFlow(collection: any, duplicate?: null): any;
|
|
388
|
+
_createFlowFromSchema(): {};
|
|
389
|
+
_instantiate(propertiesDefinition: any, initiator?: {}): {};
|
|
390
|
+
_deleteFlow(collection: any, flow: any): void;
|
|
391
|
+
_findFlowIndex(list: any, id: any): null;
|
|
392
|
+
_onReorderFlows({ detail: { plan } }: {
|
|
393
|
+
detail: {
|
|
394
|
+
plan: any;
|
|
395
|
+
};
|
|
396
|
+
}): Promise<void>;
|
|
397
|
+
_onSearchPolicy({ detail }: {
|
|
398
|
+
detail: any;
|
|
399
|
+
}): void;
|
|
400
|
+
_searchPolicyQuery: any;
|
|
401
|
+
_onClearPolicy(): void;
|
|
402
|
+
_onSearchFlows({ detail }: {
|
|
403
|
+
detail: any;
|
|
404
|
+
}): void;
|
|
405
|
+
_searchFlowQuery: any;
|
|
406
|
+
_onClearFlows(): void;
|
|
407
|
+
_onResetAll(): Promise<void>;
|
|
408
|
+
_filterNotValidStep(step: any): boolean;
|
|
409
|
+
_removePrivateProperties(o: any): any;
|
|
410
|
+
_submitOrConfirmForms(): any[];
|
|
411
|
+
getPropertiesElement(): any;
|
|
412
|
+
_checkCurrentFlowStep(): Promise<void | any[]>;
|
|
413
|
+
saved(): void;
|
|
414
|
+
_definitionSaved: {
|
|
415
|
+
flows: any[];
|
|
416
|
+
} | null | undefined;
|
|
417
|
+
_buildDefinitionToSave(): {
|
|
418
|
+
flows: any[];
|
|
419
|
+
};
|
|
420
|
+
_buildDefinitionToSend(definitionToSave: any): {
|
|
421
|
+
flows: any;
|
|
422
|
+
};
|
|
423
|
+
_onSaveAll(): void;
|
|
424
|
+
_onDebug(requestEvent: any): void;
|
|
425
|
+
get filteredFlows(): never[] | null;
|
|
426
|
+
get filteredPlans(): any;
|
|
427
|
+
_onFilterFlows({ detail }: {
|
|
428
|
+
detail: any;
|
|
429
|
+
}): void;
|
|
430
|
+
_getFilteredPolicies(): any[];
|
|
431
|
+
_onFilterPolicies({ detail }: {
|
|
432
|
+
detail: any;
|
|
433
|
+
}): void;
|
|
434
|
+
_renderDesign(readonlyMode: any): import("lit-html").TemplateResult<1>;
|
|
435
|
+
_renderDebug(): import("lit-html").TemplateResult<1>;
|
|
436
|
+
_renderConfigurationForm(readonlyMode: any): import("lit-html").TemplateResult<1>;
|
|
437
|
+
_renderFlowForm(readonlyMode: any): import("lit-html").TemplateResult<1> | undefined;
|
|
438
|
+
_onResourcesChange({ detail }: {
|
|
439
|
+
detail: any;
|
|
440
|
+
}): void;
|
|
441
|
+
_onPropertiesChange({ detail }: {
|
|
442
|
+
detail: any;
|
|
443
|
+
}): void;
|
|
444
|
+
_onSaveProvider({ detail }: {
|
|
445
|
+
detail: any;
|
|
446
|
+
}): void;
|
|
447
|
+
_onSwitchEncryptedProperty({ detail }: {
|
|
448
|
+
detail: any;
|
|
449
|
+
}): void;
|
|
450
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
451
|
+
/**
|
|
452
|
+
* Determine if the design view should be in readonly mode or not
|
|
453
|
+
* It is in readonly mode if:
|
|
454
|
+
* the readonly attribute is set to true
|
|
455
|
+
* OR
|
|
456
|
+
* the main selected flow belongs to a plan and the readonly-plans attribute is set to true
|
|
457
|
+
* OR
|
|
458
|
+
* the second flow for comparison belongs to a plan and the readonly-plans attribute is set to true
|
|
459
|
+
* @returns {boolean|*|{type: BooleanConstructor}|{attribute: string, type: BooleanConstructor}|{type: *}|{attribute: string, type: *}}
|
|
460
|
+
* @private
|
|
461
|
+
*/
|
|
462
|
+
private _getReadonlyModeForDesign;
|
|
463
|
+
}
|
|
464
|
+
export {};
|