@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 @@
|
|
|
1
|
+
export const empty: import("lit").CSSResult;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { css } from 'lit';
|
|
17
|
+
// language=CSS
|
|
18
|
+
export const empty = css `
|
|
19
|
+
.empty,
|
|
20
|
+
.error {
|
|
21
|
+
align-items: center;
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
color: var(--gv-theme-font-color-dark);
|
|
24
|
+
font-size: var(--gv-theme-font-size-l, 20px);
|
|
25
|
+
font-weight: bold;
|
|
26
|
+
height: 100%;
|
|
27
|
+
opacity: 0.5;
|
|
28
|
+
padding: 3rem;
|
|
29
|
+
text-align: center;
|
|
30
|
+
width: 100%;
|
|
31
|
+
justify-content: center;
|
|
32
|
+
display: flex;
|
|
33
|
+
flex-direction: column;
|
|
34
|
+
}
|
|
35
|
+
`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const input: import("lit").CSSResult;
|
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { css } from 'lit';
|
|
17
|
+
// language=CSS
|
|
18
|
+
export const input = css `
|
|
19
|
+
:host {
|
|
20
|
+
box-sizing: border-box;
|
|
21
|
+
display: inline-block;
|
|
22
|
+
margin: 0.2rem;
|
|
23
|
+
vertical-align: middle;
|
|
24
|
+
background-color: transparent;
|
|
25
|
+
--bdw: var(--gv-input--bdw, 1px);
|
|
26
|
+
--2xbdw: calc(var(--gv-input--bdw, 1px) * 2);
|
|
27
|
+
--input-small--p: 4px 4px;
|
|
28
|
+
--input-small--fz: 12px;
|
|
29
|
+
--input-small--lh: 15px;
|
|
30
|
+
--icon-small--w: calc(15px + 4px + 4px);
|
|
31
|
+
--input-small--h: calc(var(--icon-small--w) + var(--2xbdw));
|
|
32
|
+
|
|
33
|
+
--input-medium--p: 10px 5px;
|
|
34
|
+
--input-medium--fz: 14px;
|
|
35
|
+
--input-medium--lh: 17px;
|
|
36
|
+
--icon-medium--w: calc(17px + 10px + 10px);
|
|
37
|
+
--input-medium--h: calc(var(--icon-medium--w) + var(--2xbdw));
|
|
38
|
+
|
|
39
|
+
--input-large--p: 12px 8px;
|
|
40
|
+
--input-large--fz: 16px;
|
|
41
|
+
--input-large--lh: 18px;
|
|
42
|
+
--icon-large--w: calc(18px + 12px + 12px);
|
|
43
|
+
--input-large--h: calc(var(--icon-large--w) + var(--2xbdw));
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.box-icon {
|
|
47
|
+
box-sizing: border-box;
|
|
48
|
+
height: var(--input-medium--h);
|
|
49
|
+
width: calc(var(--input-medium--h) - 4px);
|
|
50
|
+
display: flex;
|
|
51
|
+
align-items: center;
|
|
52
|
+
justify-content: center;
|
|
53
|
+
position: absolute;
|
|
54
|
+
bottom: 0px;
|
|
55
|
+
right: 0px;
|
|
56
|
+
left: initial;
|
|
57
|
+
border-radius: 0 3px 3px 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.small .box-icon {
|
|
61
|
+
height: var(--input-small--h);
|
|
62
|
+
width: calc(var(--input-small--h) - 4px);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.box-icon-left {
|
|
66
|
+
right: initial;
|
|
67
|
+
left: 0px;
|
|
68
|
+
border-radius: 3px 0 0 3px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.box-icon gv-icon {
|
|
72
|
+
--gv-icon--s: 22px;
|
|
73
|
+
--gv-icon--c: var(--gv-theme-font-color-dark);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.small .box-icon gv-icon {
|
|
77
|
+
--gv-icon--s: 16px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.box-icon.box-icon-clear gv-icon,
|
|
81
|
+
:host([large]) .box-icon.box-icon-clear gv-icon {
|
|
82
|
+
width: 16px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.box-icon.box-icon-bgc {
|
|
86
|
+
background-color: var(--gv-input-icon--bgc, var(--gv-theme-neutral-color, #f5f5f5));
|
|
87
|
+
border: var(--gv-input--bdw, 1px) var(--gv-input--bds, solid) var(--gv-input--bdc, var(--gv-theme-neutral-color-dark, #d9d9d9));
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
:host([large]) .box-icon {
|
|
91
|
+
height: var(--input-large--h);
|
|
92
|
+
width: var(--input-large--h);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
:host([large]) .box-icon gv-icon {
|
|
96
|
+
width: 24px;
|
|
97
|
+
--gv-icon--s: 24px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
:host([small]) .box-icon {
|
|
101
|
+
height: var(--input-small--h);
|
|
102
|
+
width: var(--input-small--h);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
:host([small]) .box-icon gv-icon {
|
|
106
|
+
width: 18px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
:host([small]) .box-icon-clear gv-icon {
|
|
110
|
+
width: 14px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.box-input {
|
|
114
|
+
position: relative;
|
|
115
|
+
line-height: 0;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/* BASE */
|
|
119
|
+
input,
|
|
120
|
+
::slotted(input),
|
|
121
|
+
::slotted(.input),
|
|
122
|
+
.input {
|
|
123
|
+
border: var(--gv-input--bdw, 1px) var(--gv-input--bds, solid) var(--gv-input--bdc, var(--gv-theme-neutral-color-dark, #d9d9d9));
|
|
124
|
+
transition: border 10ms ease-in-out;
|
|
125
|
+
box-sizing: border-box;
|
|
126
|
+
border-radius: 4px;
|
|
127
|
+
font-style: normal;
|
|
128
|
+
font-weight: normal;
|
|
129
|
+
outline: none;
|
|
130
|
+
width: 100%;
|
|
131
|
+
height: 100%;
|
|
132
|
+
-webkit-appearance: none;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
input::-webkit-search-decoration,
|
|
136
|
+
::slotted(input::-webkit-search-decoration) {
|
|
137
|
+
-webkit-appearance: none;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/* SIZE */
|
|
141
|
+
.large input,
|
|
142
|
+
.large ::slotted(input),
|
|
143
|
+
.large ::slotted(.input),
|
|
144
|
+
.large .input {
|
|
145
|
+
padding: var(--input-large--p);
|
|
146
|
+
font-size: var(--input-large--fz);
|
|
147
|
+
line-height: var(--input-large--lh);
|
|
148
|
+
height: var(--input-large--h);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.medium input,
|
|
152
|
+
.medium ::slotted(input),
|
|
153
|
+
.medium ::slotted(.input),
|
|
154
|
+
.medium .input {
|
|
155
|
+
padding: var(--input-medium--p);
|
|
156
|
+
font-size: var(--input-medium--fz);
|
|
157
|
+
line-height: var(--input-medium--lh);
|
|
158
|
+
height: var(--input-medium--h);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.small input,
|
|
162
|
+
.small ::slotted(input),
|
|
163
|
+
.small ::slotted(.input),
|
|
164
|
+
.small .input {
|
|
165
|
+
padding: var(--input-small--p);
|
|
166
|
+
font-size: var(--input-small--fz);
|
|
167
|
+
line-height: var(--input-small--lh);
|
|
168
|
+
height: var(--input-small--h);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.large.icon input,
|
|
172
|
+
.large.icon ::slotted(input) {
|
|
173
|
+
padding-right: 45px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.large.clearable input,
|
|
177
|
+
.large.clearable ::slotted(input) {
|
|
178
|
+
padding-right: 50px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.medium.icon input,
|
|
182
|
+
.medium.icon ::slotted(input) {
|
|
183
|
+
padding-right: 36px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.medium.clearable input,
|
|
187
|
+
.medium.clearable ::slotted(input) {
|
|
188
|
+
padding-right: 32px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.small.icon input,
|
|
192
|
+
.small ::slotted(input) {
|
|
193
|
+
padding-right: 26px;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.small.clearable inpu,
|
|
197
|
+
.small.clearable ::slotted(input) {
|
|
198
|
+
padding-right: 22px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.large.icon-left input,
|
|
202
|
+
.large.icon-left ::slotted(input) {
|
|
203
|
+
padding-left: 45px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.large.clearable input,
|
|
207
|
+
.large.clearable ::slotted(input) {
|
|
208
|
+
padding-right: 40px;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.medium.icon-left input,
|
|
212
|
+
.medium.icon-left ::slotted(input) {
|
|
213
|
+
padding-left: 36px;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.small.icon-left input,
|
|
217
|
+
.small.icon-left ::slotted(input) {
|
|
218
|
+
padding-left: 26px;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
::-webkit-search-cancel-button {
|
|
222
|
+
-webkit-appearance: none;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
/* STATES */
|
|
226
|
+
:host([disabled]) {
|
|
227
|
+
--gv-icon--c: var(--gv-theme-neutral-color-darker, #d9d9d9);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
:host([disabled]) .box-icon-bgc {
|
|
231
|
+
background-color: transparent;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
:host([disabled]) input,
|
|
235
|
+
:host([disabled]) .input,
|
|
236
|
+
:host([disabled]) ::slotted(input) {
|
|
237
|
+
cursor: default;
|
|
238
|
+
opacity: 0.5;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
input:required,
|
|
242
|
+
.input:required,
|
|
243
|
+
::slotted(input:required),
|
|
244
|
+
::slotted(.input:required),
|
|
245
|
+
input:invalid,
|
|
246
|
+
.input:invalid,
|
|
247
|
+
::slotted(input:invalid),
|
|
248
|
+
::slotted(.input:invalid) {
|
|
249
|
+
box-shadow: none;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
label {
|
|
253
|
+
display: block;
|
|
254
|
+
line-height: 15px;
|
|
255
|
+
padding: 0 0 0.2rem 0;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.description {
|
|
259
|
+
opacity: 0.6;
|
|
260
|
+
font-size: var(--gv-theme-font-size-s, 12px);
|
|
261
|
+
}
|
|
262
|
+
`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const link: import("lit").CSSResult;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { css } from 'lit';
|
|
17
|
+
// language=CSS
|
|
18
|
+
export const link = css `
|
|
19
|
+
.link,
|
|
20
|
+
.link:visited {
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
opacity: 1;
|
|
23
|
+
transition: opacity 0.15s ease-in;
|
|
24
|
+
text-decoration: none;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.link:hover {
|
|
28
|
+
opacity: 0.7;
|
|
29
|
+
transition: opacity 0.15s ease-in;
|
|
30
|
+
}
|
|
31
|
+
`;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export const shapeClipboard = 'general:clipboard';
|
|
17
|
+
export const shapeCopied = 'communication:clipboard-check';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const skeleton: import("lit").CSSResult;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { css } from 'lit';
|
|
17
|
+
// language=CSS
|
|
18
|
+
export const skeleton = css `
|
|
19
|
+
@keyframes skeleton-pulse {
|
|
20
|
+
from {
|
|
21
|
+
opacity: 0.85;
|
|
22
|
+
}
|
|
23
|
+
to {
|
|
24
|
+
opacity: 0.45;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
.skeleton,
|
|
28
|
+
:host([skeleton]) {
|
|
29
|
+
animation-direction: alternate;
|
|
30
|
+
animation-duration: 500ms;
|
|
31
|
+
animation-iteration-count: infinite;
|
|
32
|
+
animation-name: skeleton-pulse;
|
|
33
|
+
color: transparent;
|
|
34
|
+
cursor: progress !important;
|
|
35
|
+
-moz-user-select: none;
|
|
36
|
+
-webkit-user-select: none;
|
|
37
|
+
-ms-user-select: none;
|
|
38
|
+
user-select: none;
|
|
39
|
+
background-color: var(--gv-theme-skeleton-color, #bfbfbf) !important;
|
|
40
|
+
border-color: var(--gv-theme-skeleton-color, #bfbfbf);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.skeleton svg,
|
|
44
|
+
:host([skeleton]) svg,
|
|
45
|
+
:host([skeleton]) gv-icon,
|
|
46
|
+
.skeleton gv-icon,
|
|
47
|
+
.skeleton > *,
|
|
48
|
+
.skeleton ::slotted(*),
|
|
49
|
+
:host([skeleton]) ::slotted(*) {
|
|
50
|
+
visibility: hidden;
|
|
51
|
+
}
|
|
52
|
+
`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const zoom: import("lit").CSSResult;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { css } from 'lit';
|
|
17
|
+
// language=CSS
|
|
18
|
+
export const zoom = css `
|
|
19
|
+
@keyframes zoomIn {
|
|
20
|
+
0% {
|
|
21
|
+
transform: scale(0.8);
|
|
22
|
+
opacity: 0;
|
|
23
|
+
}
|
|
24
|
+
100% {
|
|
25
|
+
transform: scale(1);
|
|
26
|
+
opacity: 1;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@keyframes zoomOut {
|
|
31
|
+
0% {
|
|
32
|
+
transform: scale(1);
|
|
33
|
+
}
|
|
34
|
+
100% {
|
|
35
|
+
transform: scale(0.8);
|
|
36
|
+
opacity: 0;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
`;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Our components use css variables to expose customizable properties.
|
|
3
|
+
*
|
|
4
|
+
* We did a work of inheritance and factorization of properties in order to define a general theme for our components.
|
|
5
|
+
*
|
|
6
|
+
* So we offer within our portal a customization tool.
|
|
7
|
+
*
|
|
8
|
+
* @cssprop {Color} [--gv-theme-color-darker=#383E3F] - Primary darker color
|
|
9
|
+
* @cssprop {Color} [--gv-theme-color-dark=#28444F] - Primary dark color
|
|
10
|
+
* @cssprop {Color} [--gv-theme-color=#5A7684] - Primary color
|
|
11
|
+
* @cssprop {Color} [--gv-theme-color-light=#86c3d0] - Primary light color
|
|
12
|
+
* @cssprop {Color} [--gv-theme-color-danger=#FF5722] - Primary danger color
|
|
13
|
+
*
|
|
14
|
+
* @cssprop {Color} [--gv-theme-color-error-dark=#d32f2f] - Error dark color
|
|
15
|
+
* @cssprop {Color} [--gv-theme-color-error=#f44336] - Error color
|
|
16
|
+
* @cssprop {Color} [--gv-theme-color-error-light=#e57373] - Error light color
|
|
17
|
+
* @cssprop {Color} [--gv-theme-color-info-dark=#1976d2] - Info dark color
|
|
18
|
+
* @cssprop {Color} [--gv-theme-color-info=#2196f3] - Info color
|
|
19
|
+
* @cssprop {Color} [--gv-theme-color-info-light=#64b5f6] - Info light color
|
|
20
|
+
* @cssprop {Color} [--gv-theme-color-success-dark=#388e3c] - Success dark color
|
|
21
|
+
* @cssprop {Color} [--gv-theme-color-success=#4caf50] - Success color
|
|
22
|
+
* @cssprop {Color} [--gv-theme-color-success-light=#81c784] - Success light color
|
|
23
|
+
* @cssprop {Color} [--gv-theme-color-warning-dark=#f57c00] - Warning dark color
|
|
24
|
+
* @cssprop {Color} [--gv-theme-color-warning=#ff9800] - Warning color
|
|
25
|
+
* @cssprop {Color} [--gv-theme-color-warning-light=#ffb74d] - Warning light color
|
|
26
|
+
*
|
|
27
|
+
* @cssprop {Color} [--gv-theme-neutral-color-darkest=#000000] - Neutral darkest color
|
|
28
|
+
* @cssprop {Color} [--gv-theme-neutral-color-darker=#BFBFBF] - Neutral darker color
|
|
29
|
+
* @cssprop {Color} [--gv-theme-neutral-color-dark=#D9D9D9] - Neutral dark color
|
|
30
|
+
* @cssprop {Color} [--gv-theme-neutral-color=#F5F5F5] - Neutral color
|
|
31
|
+
* @cssprop {Color} [--gv-theme-neutral-color-light=#EFEFEF] - Neutral light color
|
|
32
|
+
* @cssprop {Color} [--gv-theme-neutral-color-lighter=#FAFAFA] - Neutral light color
|
|
33
|
+
* @cssprop {Color} [--gv-theme-neutral-color-lightest=#FFFFFF] - Neutral lightest color
|
|
34
|
+
|
|
35
|
+
* @cssprop {Color} [--gv-theme-font-color-dark=#262626] - Dark font color
|
|
36
|
+
* @cssprop {Color} [--gv-theme-font-color-light=#FFFFFF] - Light Font color
|
|
37
|
+
* @cssprop {String} [--gv-theme-font-family='IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif] - Family
|
|
38
|
+
* @cssprop {Length} [--gv-theme-font-size-xs=10px] - Extra small
|
|
39
|
+
* @cssprop {Length} [--gv-theme-font-size-s=12px] - Small
|
|
40
|
+
* @cssprop {Length} [--gv-theme-font-size-m=14px] - Medium (Default)
|
|
41
|
+
* @cssprop {Length} [--gv-theme-font-size-l=16px] - Large
|
|
42
|
+
* @cssprop {Length} [--gv-theme-font-size-xl=26px] - Extra large
|
|
43
|
+
* @cssprop {Length} [--gv-theme-font-size-xxl=30px] - Extra extra large
|
|
44
|
+
* @cssprop {Length} [--gv-theme-homepage-background-height=400px] - Homepage background height
|
|
45
|
+
*
|
|
46
|
+
* @cssprop {Color} [--gv-theme-skeleton-color=#BFBFBF] - Primary skeleton color
|
|
47
|
+
* @cssprop {Color} [--gv-theme-homepage-background-color=#5A7684] - Homepage background color
|
|
48
|
+
*
|
|
49
|
+
* @cssprop {Image} [--gv-theme-homepage-background-image=none] - Background image
|
|
50
|
+
* @cssprop {Image} [--gv-theme-logo=url('/images/gravitee-logo-cyan.svg')] - Logo
|
|
51
|
+
* @cssprop {Image} [--gv-theme-optional-logo=url('/images/gravitee-logo-white.svg')] - Optional logo
|
|
52
|
+
* @cssprop {Image} [--gv-theme-favicon='/images/gravitee-favicon.png'] - Favicon
|
|
53
|
+
*
|
|
54
|
+
*/
|
|
55
|
+
export class GvTheme extends LitElement {
|
|
56
|
+
static get properties(): {
|
|
57
|
+
_theme: {
|
|
58
|
+
type: ObjectConstructor;
|
|
59
|
+
attribute: boolean;
|
|
60
|
+
};
|
|
61
|
+
_lastDate: {
|
|
62
|
+
type: NumberConstructor;
|
|
63
|
+
attribute: boolean;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
static get styles(): import("lit").CSSResult[];
|
|
67
|
+
_lastDate: number;
|
|
68
|
+
handleEvent(event: any): void;
|
|
69
|
+
source: any;
|
|
70
|
+
origin: any;
|
|
71
|
+
isDetached: any;
|
|
72
|
+
_theme: any;
|
|
73
|
+
getData(): {
|
|
74
|
+
type: string;
|
|
75
|
+
href: string;
|
|
76
|
+
date: number;
|
|
77
|
+
};
|
|
78
|
+
sendMessage(data?: {}, timeout?: number): void;
|
|
79
|
+
intervalID: NodeJS.Timeout | undefined;
|
|
80
|
+
}
|
|
81
|
+
import { LitElement } from "lit-element/lit-element";
|