valtech-components 2.0.821 → 2.0.823
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/esm2022/lib/components/atoms/avatar/avatar.component.mjs +94 -0
- package/esm2022/lib/components/atoms/avatar/types.mjs +2 -0
- package/esm2022/lib/components/atoms/box/box.component.mjs +88 -0
- package/esm2022/lib/components/atoms/box/types.mjs +2 -0
- package/esm2022/lib/components/atoms/button/button.component.mjs +174 -0
- package/esm2022/lib/components/atoms/button/factory.mjs +217 -0
- package/esm2022/lib/components/atoms/container/container.component.mjs +52 -0
- package/esm2022/lib/components/atoms/container/types.mjs +2 -0
- package/esm2022/lib/components/atoms/countdown/countdown.component.mjs +340 -0
- package/esm2022/lib/components/atoms/countdown/types.mjs +27 -0
- package/esm2022/lib/components/atoms/display/display.component.mjs +51 -0
- package/esm2022/lib/components/atoms/display/types.mjs +2 -0
- package/esm2022/lib/components/atoms/divider/divider.component.mjs +27 -0
- package/esm2022/lib/components/atoms/divider/types.mjs +2 -0
- package/esm2022/lib/components/atoms/fab/fab.component.mjs +190 -0
- package/esm2022/lib/components/atoms/fab/types.mjs +2 -0
- package/esm2022/lib/components/atoms/glass/glass.component.mjs +125 -0
- package/esm2022/lib/components/atoms/glass/types.mjs +2 -0
- package/esm2022/lib/components/atoms/glow/glow.component.mjs +95 -0
- package/esm2022/lib/components/atoms/glow/types.mjs +2 -0
- package/esm2022/lib/components/atoms/horizontal-scroll/horizontal-scroll.component.mjs +82 -0
- package/esm2022/lib/components/atoms/horizontal-scroll/types.mjs +2 -0
- package/esm2022/lib/components/atoms/href/href.component.mjs +62 -0
- package/esm2022/lib/components/atoms/href/types.mjs +2 -0
- package/esm2022/lib/components/atoms/icon/icon.component.mjs +29 -0
- package/esm2022/lib/components/atoms/icon/types.mjs +2 -0
- package/esm2022/lib/components/atoms/image/image.component.mjs +507 -0
- package/esm2022/lib/components/atoms/image/types.mjs +2 -0
- package/esm2022/lib/components/atoms/pattern/motifs.mjs +147 -0
- package/esm2022/lib/components/atoms/pattern/pattern.component.mjs +178 -0
- package/esm2022/lib/components/atoms/pattern/types.mjs +2 -0
- package/esm2022/lib/components/atoms/price-tag/price-tag.component.mjs +235 -0
- package/esm2022/lib/components/atoms/price-tag/types.mjs +15 -0
- package/esm2022/lib/components/atoms/progress-bar/progress-bar.component.mjs +91 -0
- package/esm2022/lib/components/atoms/progress-bar/types.mjs +2 -0
- package/esm2022/lib/components/atoms/progress-ring/progress-ring.component.mjs +149 -0
- package/esm2022/lib/components/atoms/progress-ring/types.mjs +2 -0
- package/esm2022/lib/components/atoms/qr-code/qr-code.component.mjs +394 -0
- package/esm2022/lib/components/atoms/qr-code/types.mjs +2 -0
- package/esm2022/lib/components/atoms/rights-footer/rights-footer.component.mjs +108 -0
- package/esm2022/lib/components/atoms/rights-footer/types.mjs +2 -0
- package/esm2022/lib/components/atoms/skeleton/skeleton.component.mjs +193 -0
- package/esm2022/lib/components/atoms/skeleton/types.mjs +13 -0
- package/esm2022/lib/components/atoms/text/text.component.mjs +132 -0
- package/esm2022/lib/components/atoms/text/types.mjs +2 -0
- package/esm2022/lib/components/atoms/title/title.component.mjs +68 -0
- package/esm2022/lib/components/atoms/title/types.mjs +22 -0
- package/esm2022/lib/components/atoms/user-avatar/types.mjs +2 -0
- package/esm2022/lib/components/atoms/user-avatar/user-avatar.component.mjs +209 -0
- package/esm2022/lib/components/molecules/accordion/accordion.component.mjs +120 -0
- package/esm2022/lib/components/molecules/accordion/types.mjs +2 -0
- package/esm2022/lib/components/molecules/action-card/action-card.component.mjs +273 -0
- package/esm2022/lib/components/molecules/action-card/types.mjs +11 -0
- package/esm2022/lib/components/molecules/action-header/action-header.component.mjs +55 -0
- package/esm2022/lib/components/molecules/action-header/types.mjs +2 -0
- package/esm2022/lib/components/molecules/ad-slot/ad-slot.component.mjs +274 -0
- package/esm2022/lib/components/molecules/alert-box/alert-box.component.mjs +119 -0
- package/esm2022/lib/components/molecules/alert-box/types.mjs +2 -0
- package/esm2022/lib/components/molecules/breadcrumb/breadcrumb.component.mjs +130 -0
- package/esm2022/lib/components/molecules/breadcrumb/types.mjs +2 -0
- package/esm2022/lib/components/molecules/button-group/button-group.component.mjs +63 -0
- package/esm2022/lib/components/molecules/button-group/types.mjs +2 -0
- package/esm2022/lib/components/molecules/card/card.component.mjs +450 -0
- package/esm2022/lib/components/molecules/card/types.mjs +16 -0
- package/esm2022/lib/components/molecules/check-input/check-input.component.mjs +82 -0
- package/esm2022/lib/components/molecules/checkbox-radio-input/checkbox-radio-input.component.mjs +79 -0
- package/esm2022/lib/components/molecules/chip-group/chip-group.component.mjs +166 -0
- package/esm2022/lib/components/molecules/chip-group/types.mjs +2 -0
- package/esm2022/lib/components/molecules/code-display/code-display.component.mjs +115 -0
- package/esm2022/lib/components/molecules/code-display/types.mjs +2 -0
- package/esm2022/lib/components/molecules/command-display/command-display.component.mjs +49 -0
- package/esm2022/lib/components/molecules/command-display/types.mjs +2 -0
- package/esm2022/lib/components/molecules/comment/comment.component.mjs +618 -0
- package/esm2022/lib/components/molecules/comment/types.mjs +2 -0
- package/esm2022/lib/components/molecules/comment-input/comment-input.component.mjs +41 -0
- package/esm2022/lib/components/molecules/comment-input/types.mjs +2 -0
- package/esm2022/lib/components/molecules/content-loader/content-loader.component.mjs +42 -0
- package/esm2022/lib/components/molecules/content-loader/types.mjs +2 -0
- package/esm2022/lib/components/molecules/content-reaction/content-reaction.component.mjs +210 -0
- package/esm2022/lib/components/molecules/content-reaction/types.mjs +2 -0
- package/esm2022/lib/components/molecules/currency-input/currency-input.component.mjs +347 -0
- package/esm2022/lib/components/molecules/currency-input/types.mjs +18 -0
- package/esm2022/lib/components/molecules/date-input/date-input.component.mjs +148 -0
- package/esm2022/lib/components/molecules/date-input/types.mjs +2 -0
- package/esm2022/lib/components/molecules/date-range-input/date-range-input.component.mjs +416 -0
- package/esm2022/lib/components/molecules/date-range-input/types.mjs +2 -0
- package/esm2022/lib/components/molecules/docs-api-table/docs-api-table.component.mjs +222 -0
- package/esm2022/lib/components/molecules/docs-api-table/types.mjs +11 -0
- package/esm2022/lib/components/molecules/docs-breadcrumb/docs-breadcrumb.component.mjs +144 -0
- package/esm2022/lib/components/molecules/docs-breadcrumb/types.mjs +2 -0
- package/esm2022/lib/components/molecules/docs-callout/docs-callout.component.mjs +60 -0
- package/esm2022/lib/components/molecules/docs-code-example/docs-code-example.component.mjs +249 -0
- package/esm2022/lib/components/molecules/docs-code-example/types.mjs +2 -0
- package/esm2022/lib/components/molecules/docs-nav-links/docs-nav-links.component.mjs +140 -0
- package/esm2022/lib/components/molecules/docs-nav-links/types.mjs +2 -0
- package/esm2022/lib/components/molecules/docs-search/docs-search.component.mjs +268 -0
- package/esm2022/lib/components/molecules/docs-search/types.mjs +2 -0
- package/esm2022/lib/components/molecules/docs-section/docs-section.component.mjs +85 -0
- package/esm2022/lib/components/molecules/docs-section/types.mjs +2 -0
- package/esm2022/lib/components/molecules/email-input/email-input.component.mjs +68 -0
- package/esm2022/lib/components/molecules/expandable-text/expandable-text.component.mjs +77 -0
- package/esm2022/lib/components/molecules/expandable-text/types.mjs +2 -0
- package/esm2022/lib/components/molecules/features-list/features-list.component.mjs +179 -0
- package/esm2022/lib/components/molecules/features-list/types.mjs +11 -0
- package/esm2022/lib/components/molecules/feedback-form/feedback-form.component.mjs +354 -0
- package/esm2022/lib/components/molecules/feedback-form/types.mjs +2 -0
- package/esm2022/lib/components/molecules/file-input/file-input.component.mjs +90 -0
- package/esm2022/lib/components/molecules/file-input/types.mjs +2 -0
- package/esm2022/lib/components/molecules/footer-links/footer-links.component.mjs +391 -0
- package/esm2022/lib/components/molecules/footer-links/types.mjs +2 -0
- package/esm2022/lib/components/molecules/glow-card/glow-card.component.mjs +314 -0
- package/esm2022/lib/components/molecules/glow-card/types.mjs +11 -0
- package/esm2022/lib/components/molecules/hint/hint.component.mjs +90 -0
- package/esm2022/lib/components/molecules/hour-input/hour-input.component.mjs +28 -0
- package/esm2022/lib/components/molecules/image-crop/image-crop.component.mjs +174 -0
- package/esm2022/lib/components/molecules/image-crop/index.mjs +2 -0
- package/esm2022/lib/components/molecules/info/info.component.mjs +49 -0
- package/esm2022/lib/components/molecules/info/types.mjs +2 -0
- package/esm2022/lib/components/molecules/language-selector/language-selector.component.mjs +221 -0
- package/esm2022/lib/components/molecules/language-selector/types.mjs +2 -0
- package/esm2022/lib/components/molecules/layered-card/layered-card.component.mjs +104 -0
- package/esm2022/lib/components/molecules/layered-card/types.mjs +2 -0
- package/esm2022/lib/components/molecules/link/link.component.mjs +64 -0
- package/esm2022/lib/components/molecules/link/types.mjs +2 -0
- package/esm2022/lib/components/molecules/linked-providers/linked-providers.component.mjs +236 -0
- package/esm2022/lib/components/molecules/linked-providers/types.mjs +27 -0
- package/esm2022/lib/components/molecules/links-accordion/links-accordion.component.mjs +203 -0
- package/esm2022/lib/components/molecules/links-accordion/types.mjs +2 -0
- package/esm2022/lib/components/molecules/links-cake/links-cake.component.mjs +51 -0
- package/esm2022/lib/components/molecules/links-cake/types.mjs +2 -0
- package/esm2022/lib/components/molecules/multi-select-search/multi-select-search.component.mjs +488 -0
- package/esm2022/lib/components/molecules/notes-box/notes-box.component.mjs +92 -0
- package/esm2022/lib/components/molecules/notes-box/types.mjs +2 -0
- package/esm2022/lib/components/molecules/number-from-to/number-from-to.component.mjs +143 -0
- package/esm2022/lib/components/molecules/number-from-to/types.mjs +2 -0
- package/esm2022/lib/components/molecules/number-input/number-input.component.mjs +34 -0
- package/esm2022/lib/components/molecules/number-stepper/number-stepper.component.mjs +379 -0
- package/esm2022/lib/components/molecules/number-stepper/types.mjs +2 -0
- package/esm2022/lib/components/molecules/page-links/page-links.component.mjs +150 -0
- package/esm2022/lib/components/molecules/page-links/types.mjs +2 -0
- package/esm2022/lib/components/molecules/pagination/pagination.component.mjs +253 -0
- package/esm2022/lib/components/molecules/pagination/types.mjs +2 -0
- package/esm2022/lib/components/molecules/password-input/password-input.component.mjs +93 -0
- package/esm2022/lib/components/molecules/phone-input/phone-input.component.mjs +365 -0
- package/esm2022/lib/components/molecules/phone-input/types.mjs +19 -0
- package/esm2022/lib/components/molecules/pill/pill.component.mjs +202 -0
- package/esm2022/lib/components/molecules/pill/types.mjs +2 -0
- package/esm2022/lib/components/molecules/pin-input/pin-input.component.mjs +78 -0
- package/esm2022/lib/components/molecules/pin-input/types.mjs +2 -0
- package/esm2022/lib/components/molecules/plain-code-box/plain-code-box.component.mjs +82 -0
- package/esm2022/lib/components/molecules/plain-code-box/types.mjs +2 -0
- package/esm2022/lib/components/molecules/popover-selector/popover-selector.component.mjs +188 -0
- package/esm2022/lib/components/molecules/popover-selector/types.mjs +2 -0
- package/esm2022/lib/components/molecules/progress-status/progress-status.component.mjs +105 -0
- package/esm2022/lib/components/molecules/progress-status/types.mjs +2 -0
- package/esm2022/lib/components/molecules/prompter/prompter.component.mjs +85 -0
- package/esm2022/lib/components/molecules/prompter/types.mjs +2 -0
- package/esm2022/lib/components/molecules/quote-box/quote-box.component.mjs +155 -0
- package/esm2022/lib/components/molecules/radio-input/radio-input.component.mjs +52 -0
- package/esm2022/lib/components/molecules/range-input/range-input.component.mjs +127 -0
- package/esm2022/lib/components/molecules/range-input/types.mjs +2 -0
- package/esm2022/lib/components/molecules/rating/rating.component.mjs +166 -0
- package/esm2022/lib/components/molecules/rating/types.mjs +2 -0
- package/esm2022/lib/components/molecules/refresher/refresher.component.mjs +275 -0
- package/esm2022/lib/components/molecules/refresher/types.mjs +15 -0
- package/esm2022/lib/components/molecules/searchbar/searchbar.component.mjs +127 -0
- package/esm2022/lib/components/molecules/searchbar/types.mjs +2 -0
- package/esm2022/lib/components/molecules/segment-control/segment-control.component.mjs +129 -0
- package/esm2022/lib/components/molecules/segment-control/types.mjs +2 -0
- package/esm2022/lib/components/molecules/select-input/select-input.component.mjs +148 -0
- package/esm2022/lib/components/molecules/select-search/select-search.component.mjs +434 -0
- package/esm2022/lib/components/molecules/share-buttons/share-buttons.component.mjs +274 -0
- package/esm2022/lib/components/molecules/share-buttons/types.mjs +88 -0
- package/esm2022/lib/components/molecules/stats-card/stats-card.component.mjs +211 -0
- package/esm2022/lib/components/molecules/stats-card/types.mjs +2 -0
- package/esm2022/lib/components/molecules/stepper/stepper.component.mjs +242 -0
- package/esm2022/lib/components/molecules/stepper/types.mjs +2 -0
- package/esm2022/lib/components/molecules/swipe-carousel/swipe-carousel.component.mjs +206 -0
- package/esm2022/lib/components/molecules/swipe-carousel/types.mjs +2 -0
- package/esm2022/lib/components/molecules/tabs/tabs.component.mjs +139 -0
- package/esm2022/lib/components/molecules/tabs/types.mjs +2 -0
- package/esm2022/lib/components/molecules/testimonial-card/testimonial-card.component.mjs +138 -0
- package/esm2022/lib/components/molecules/testimonial-card/types.mjs +2 -0
- package/esm2022/lib/components/molecules/text-input/text-input.component.mjs +77 -0
- package/esm2022/lib/components/molecules/textarea-input/textarea-input.component.mjs +213 -0
- package/esm2022/lib/components/molecules/textarea-input/types.mjs +2 -0
- package/esm2022/lib/components/molecules/timeline/timeline.component.mjs +140 -0
- package/esm2022/lib/components/molecules/timeline/types.mjs +2 -0
- package/esm2022/lib/components/molecules/title-block/title-block.component.mjs +102 -0
- package/esm2022/lib/components/molecules/title-block/types.mjs +2 -0
- package/esm2022/lib/components/molecules/toggle-input/toggle-input.component.mjs +93 -0
- package/esm2022/lib/components/molecules/toggle-input/types.mjs +2 -0
- package/esm2022/lib/components/molecules/update-banner/types.mjs +42 -0
- package/esm2022/lib/components/molecules/update-banner/update-banner.component.mjs +243 -0
- package/esm2022/lib/components/molecules/username-input/types.mjs +2 -0
- package/esm2022/lib/components/molecules/username-input/username-input.component.mjs +295 -0
- package/esm2022/lib/components/organisms/article/article.component.mjs +578 -0
- package/esm2022/lib/components/organisms/article/types.mjs +183 -0
- package/esm2022/lib/components/organisms/avatar-upload/avatar-upload.component.mjs +325 -0
- package/esm2022/lib/components/organisms/avatar-upload/types.mjs +15 -0
- package/esm2022/lib/components/organisms/banner/banner.component.mjs +111 -0
- package/esm2022/lib/components/organisms/banner/types.mjs +2 -0
- package/esm2022/lib/components/organisms/bottom-nav/bottom-nav.component.mjs +383 -0
- package/esm2022/lib/components/organisms/bottom-nav/types.mjs +19 -0
- package/esm2022/lib/components/organisms/cards-carousel/cards-carousel.component.mjs +108 -0
- package/esm2022/lib/components/organisms/cards-carousel/types.mjs +2 -0
- package/esm2022/lib/components/organisms/comment-section/comment-section.component.mjs +537 -0
- package/esm2022/lib/components/organisms/comment-section/types.mjs +2 -0
- package/esm2022/lib/components/organisms/company-footer/company-footer.component.mjs +76 -0
- package/esm2022/lib/components/organisms/company-footer/types.mjs +2 -0
- package/esm2022/lib/components/organisms/cookie-banner/cookie-banner.component.mjs +199 -0
- package/esm2022/lib/components/organisms/cookie-banner/types.mjs +2 -0
- package/esm2022/lib/components/organisms/data-table/data-table.component.mjs +1081 -0
- package/esm2022/lib/components/organisms/data-table/types.mjs +13 -0
- package/esm2022/lib/components/organisms/docs-sidebar/docs-sidebar.component.mjs +290 -0
- package/esm2022/lib/components/organisms/docs-sidebar/types.mjs +2 -0
- package/esm2022/lib/components/organisms/docs-toc/docs-toc.component.mjs +307 -0
- package/esm2022/lib/components/organisms/docs-toc/types.mjs +2 -0
- package/esm2022/lib/components/organisms/faq/faq.component.mjs +176 -0
- package/esm2022/lib/components/organisms/faq/types.mjs +9 -0
- package/esm2022/lib/components/organisms/footer/footer.component.mjs +73 -0
- package/esm2022/lib/components/organisms/footer/types.mjs +2 -0
- package/esm2022/lib/components/organisms/form/factory.mjs +29 -0
- package/esm2022/lib/components/organisms/form/form-footer/form-footer.component.mjs +83 -0
- package/esm2022/lib/components/organisms/form/form.component.mjs +510 -0
- package/esm2022/lib/components/organisms/fun-header/fun-header.component.mjs +225 -0
- package/esm2022/lib/components/organisms/fun-header/types.mjs +2 -0
- package/esm2022/lib/components/organisms/header/header.component.mjs +51 -0
- package/esm2022/lib/components/organisms/header/types.mjs +2 -0
- package/esm2022/lib/components/organisms/infinite-list/infinite-list.component.mjs +620 -0
- package/esm2022/lib/components/organisms/infinite-list/types.mjs +15 -0
- package/esm2022/lib/components/organisms/item-list/item-list.component.mjs +418 -0
- package/esm2022/lib/components/organisms/item-list/types.mjs +2 -0
- package/esm2022/lib/components/organisms/login/login.component.mjs +735 -0
- package/esm2022/lib/components/organisms/login/types.mjs +11 -0
- package/esm2022/lib/components/organisms/menu/menu.component.mjs +206 -0
- package/esm2022/lib/components/organisms/menu/types.mjs +2 -0
- package/esm2022/lib/components/organisms/no-content/no-content.component.mjs +66 -0
- package/esm2022/lib/components/organisms/no-content/types.mjs +2 -0
- package/esm2022/lib/components/organisms/rotating-text/rotating-text.component.mjs +180 -0
- package/esm2022/lib/components/organisms/rotating-text/types.mjs +2 -0
- package/esm2022/lib/components/organisms/skeleton-layout/skeleton-layout.component.mjs +423 -0
- package/esm2022/lib/components/organisms/skeleton-layout/types.mjs +10 -0
- package/esm2022/lib/components/organisms/tabbed-content/tabbed-content.component.mjs +170 -0
- package/esm2022/lib/components/organisms/tabbed-content/types.mjs +2 -0
- package/esm2022/lib/components/organisms/terminal-404/terminal-404.component.mjs +214 -0
- package/esm2022/lib/components/organisms/terminal-404/types.mjs +2 -0
- package/esm2022/lib/components/organisms/testimonial-carousel/testimonial-carousel.component.mjs +72 -0
- package/esm2022/lib/components/organisms/testimonial-carousel/types.mjs +2 -0
- package/esm2022/lib/components/organisms/toolbar/toolbar.component.mjs +255 -0
- package/esm2022/lib/components/organisms/toolbar/types.mjs +2 -0
- package/esm2022/lib/components/organisms/wizard/types.mjs +10 -0
- package/esm2022/lib/components/organisms/wizard/wizard-footer/wizard-footer.component.mjs +111 -0
- package/esm2022/lib/components/organisms/wizard/wizard.component.mjs +161 -0
- package/esm2022/lib/components/templates/auth-background/auth-background.component.mjs +164 -0
- package/esm2022/lib/components/templates/auth-background/types.mjs +2 -0
- package/esm2022/lib/components/templates/docs-layout/docs-layout.component.mjs +221 -0
- package/esm2022/lib/components/templates/docs-layout/types.mjs +2 -0
- package/esm2022/lib/components/templates/docs-page/docs-page.component.mjs +251 -0
- package/esm2022/lib/components/templates/docs-page/types.mjs +2 -0
- package/esm2022/lib/components/templates/docs-shell/docs-shell.component.mjs +376 -0
- package/esm2022/lib/components/templates/docs-shell/types.mjs +2 -0
- package/esm2022/lib/components/templates/maintenance-page/maintenance-page.component.mjs +153 -0
- package/esm2022/lib/components/templates/maintenance-page/types.mjs +2 -0
- package/esm2022/lib/components/templates/page-content/page-content.component.mjs +193 -0
- package/esm2022/lib/components/templates/page-content/types.mjs +2 -0
- package/esm2022/lib/components/templates/page-template/page-template.component.mjs +188 -0
- package/esm2022/lib/components/templates/page-template/types.mjs +2 -0
- package/esm2022/lib/components/templates/page-wrapper/page-wrapper.component.mjs +238 -0
- package/esm2022/lib/components/templates/page-wrapper/types.mjs +2 -0
- package/esm2022/lib/components/templates/simple/simple.component.mjs +123 -0
- package/esm2022/lib/components/templates/simple/types.mjs +2 -0
- package/esm2022/lib/components/types.mjs +60 -0
- package/esm2022/lib/config/company-footer.config.mjs +125 -0
- package/esm2022/lib/config/index.mjs +5 -0
- package/esm2022/lib/services/ads/ads-loader.service.mjs +120 -0
- package/esm2022/lib/services/ads/ads.service.mjs +236 -0
- package/esm2022/lib/services/ads/config.mjs +81 -0
- package/esm2022/lib/services/ads/index.mjs +13 -0
- package/esm2022/lib/services/ads/types.mjs +23 -0
- package/esm2022/lib/services/app-config/app-config.service.mjs +209 -0
- package/esm2022/lib/services/app-config/config.mjs +47 -0
- package/esm2022/lib/services/app-config/index.mjs +48 -0
- package/esm2022/lib/services/app-config/types.mjs +13 -0
- package/esm2022/lib/services/app-config/version.mjs +85 -0
- package/esm2022/lib/services/app-version/app-version.service.mjs +187 -0
- package/esm2022/lib/services/app-version/config.mjs +42 -0
- package/esm2022/lib/services/app-version/index.mjs +24 -0
- package/esm2022/lib/services/app-version/types.mjs +17 -0
- package/esm2022/lib/services/auth/auth-state.service.mjs +207 -0
- package/esm2022/lib/services/auth/auth.service.mjs +1142 -0
- package/esm2022/lib/services/auth/config.mjs +75 -0
- package/esm2022/lib/services/auth/device.service.mjs +135 -0
- package/esm2022/lib/services/auth/guards.mjs +199 -0
- package/esm2022/lib/services/auth/handoff.service.mjs +152 -0
- package/esm2022/lib/services/auth/index.mjs +98 -0
- package/esm2022/lib/services/auth/interceptor.mjs +122 -0
- package/esm2022/lib/services/auth/notification-action.service.mjs +117 -0
- package/esm2022/lib/services/auth/oauth-callback.component.mjs +169 -0
- package/esm2022/lib/services/auth/oauth.service.mjs +322 -0
- package/esm2022/lib/services/auth/org-switch.service.mjs +137 -0
- package/esm2022/lib/services/auth/session.service.mjs +78 -0
- package/esm2022/lib/services/auth/storage.service.mjs +152 -0
- package/esm2022/lib/services/auth/sync.service.mjs +149 -0
- package/esm2022/lib/services/auth/token.service.mjs +122 -0
- package/esm2022/lib/services/auth/types.mjs +30 -0
- package/esm2022/lib/services/confirmation-dialog/confirmation-dialog.service.mjs +189 -0
- package/esm2022/lib/services/confirmation-dialog/types.mjs +14 -0
- package/esm2022/lib/services/content/content-types/blog.mjs +275 -0
- package/esm2022/lib/services/content/content-types/documentation.mjs +303 -0
- package/esm2022/lib/services/content/content-types/news.mjs +277 -0
- package/esm2022/lib/services/content/index.mjs +51 -0
- package/esm2022/lib/services/content/transformer.mjs +265 -0
- package/esm2022/lib/services/content/types.mjs +41 -0
- package/esm2022/lib/services/docs/docs-navigation.service.mjs +91 -0
- package/esm2022/lib/services/donation/config.mjs +41 -0
- package/esm2022/lib/services/donation/donation.service.mjs +92 -0
- package/esm2022/lib/services/donation/index.mjs +25 -0
- package/esm2022/lib/services/donation/types.mjs +10 -0
- package/esm2022/lib/services/download.service.mjs +80 -0
- package/esm2022/lib/services/feedback/config.mjs +49 -0
- package/esm2022/lib/services/feedback/feedback.service.mjs +296 -0
- package/esm2022/lib/services/feedback/index.mjs +44 -0
- package/esm2022/lib/services/feedback/types.mjs +30 -0
- package/esm2022/lib/services/firebase/analytics-error-handler.mjs +141 -0
- package/esm2022/lib/services/firebase/analytics-router-tracker.mjs +99 -0
- package/esm2022/lib/services/firebase/analytics-types.mjs +7 -0
- package/esm2022/lib/services/firebase/analytics.service.mjs +620 -0
- package/esm2022/lib/services/firebase/config.mjs +131 -0
- package/esm2022/lib/services/firebase/firebase.service.mjs +506 -0
- package/esm2022/lib/services/firebase/firestore-collection.mjs +301 -0
- package/esm2022/lib/services/firebase/firestore.service.mjs +571 -0
- package/esm2022/lib/services/firebase/index.mjs +56 -0
- package/esm2022/lib/services/firebase/messaging.service.mjs +721 -0
- package/esm2022/lib/services/firebase/notifications.service.mjs +274 -0
- package/esm2022/lib/services/firebase/shared-config.mjs +147 -0
- package/esm2022/lib/services/firebase/storage.service.mjs +484 -0
- package/esm2022/lib/services/firebase/types.mjs +18 -0
- package/esm2022/lib/services/firebase/utils/path-builder.mjs +195 -0
- package/esm2022/lib/services/firebase/utils/query-builder.mjs +302 -0
- package/esm2022/lib/services/i18n/config.mjs +128 -0
- package/esm2022/lib/services/i18n/default-content.mjs +577 -0
- package/esm2022/lib/services/i18n/i18n.service.mjs +217 -0
- package/esm2022/lib/services/i18n/index.mjs +13 -0
- package/esm2022/lib/services/i18n/input-i18n.helper.mjs +97 -0
- package/esm2022/lib/services/i18n/translate.pipe.mjs +50 -0
- package/esm2022/lib/services/i18n/types.mjs +15 -0
- package/esm2022/lib/services/icons.service.mjs +83 -0
- package/esm2022/lib/services/image/image.service.mjs +244 -0
- package/esm2022/lib/services/image/index.mjs +3 -0
- package/esm2022/lib/services/image/types.mjs +13 -0
- package/esm2022/lib/services/in-app-browser.service.mjs +35 -0
- package/esm2022/lib/services/legal-link/legal-link.service.mjs +85 -0
- package/esm2022/lib/services/link-processor.service.mjs +259 -0
- package/esm2022/lib/services/local-storage.service.mjs +37 -0
- package/esm2022/lib/services/locale.service.mjs +75 -0
- package/esm2022/lib/services/markdown-article/legal-content.service.mjs +107 -0
- package/esm2022/lib/services/markdown-article/markdown-article-parser.mjs +302 -0
- package/esm2022/lib/services/markdown-article/markdown-article-parser.service.mjs +20 -0
- package/esm2022/lib/services/meta/index.mjs +3 -0
- package/esm2022/lib/services/meta/meta.service.mjs +63 -0
- package/esm2022/lib/services/meta/types.mjs +2 -0
- package/esm2022/lib/services/modal/modal.service.mjs +220 -0
- package/esm2022/lib/services/modal/simple-modal-content.component.mjs +133 -0
- package/esm2022/lib/services/modal/types.mjs +26 -0
- package/esm2022/lib/services/navigation/index.mjs +3 -0
- package/esm2022/lib/services/navigation/navigation.service.mjs +216 -0
- package/esm2022/lib/services/navigation/types.mjs +16 -0
- package/esm2022/lib/services/page-refresh/page-refresh.service.mjs +104 -0
- package/esm2022/lib/services/pagination/index.mjs +5 -0
- package/esm2022/lib/services/pagination/pagination.service.mjs +218 -0
- package/esm2022/lib/services/pagination/types.mjs +14 -0
- package/esm2022/lib/services/preferences/index.mjs +3 -0
- package/esm2022/lib/services/preferences/preferences.service.mjs +198 -0
- package/esm2022/lib/services/preferences/preferences.types.mjs +7 -0
- package/esm2022/lib/services/presets/config.mjs +46 -0
- package/esm2022/lib/services/presets/index.mjs +5 -0
- package/esm2022/lib/services/presets/preset.service.mjs +104 -0
- package/esm2022/lib/services/presets/types.mjs +2 -0
- package/esm2022/lib/services/qr-generator/qr-generator.service.mjs +341 -0
- package/esm2022/lib/services/qr-generator/types.mjs +46 -0
- package/esm2022/lib/services/refreshable-stream/index.mjs +8 -0
- package/esm2022/lib/services/refreshable-stream/refreshable-stream.mjs +112 -0
- package/esm2022/lib/services/skeleton/config.mjs +79 -0
- package/esm2022/lib/services/skeleton/directives/loading.directive.mjs +215 -0
- package/esm2022/lib/services/skeleton/index.mjs +16 -0
- package/esm2022/lib/services/skeleton/skeleton.service.mjs +198 -0
- package/esm2022/lib/services/skeleton/templates/detail-skeleton.component.mjs +223 -0
- package/esm2022/lib/services/skeleton/templates/form-skeleton.component.mjs +127 -0
- package/esm2022/lib/services/skeleton/templates/grid-skeleton.component.mjs +154 -0
- package/esm2022/lib/services/skeleton/templates/list-skeleton.component.mjs +110 -0
- package/esm2022/lib/services/skeleton/templates/profile-skeleton.component.mjs +207 -0
- package/esm2022/lib/services/skeleton/templates/table-skeleton.component.mjs +116 -0
- package/esm2022/lib/services/skeleton/types.mjs +11 -0
- package/esm2022/lib/services/theme.service.mjs +153 -0
- package/esm2022/lib/services/toast.service.mjs +53 -0
- package/esm2022/lib/services/types.mjs +5 -0
- package/esm2022/lib/shared/constants/storage.mjs +3 -0
- package/esm2022/lib/shared/pipes/process-links.pipe.mjs +69 -0
- package/esm2022/lib/shared/utils/datetime.mjs +24 -0
- package/esm2022/lib/shared/utils/dom.mjs +27 -0
- package/esm2022/lib/shared/utils/form-defaults.mjs +112 -0
- package/esm2022/lib/shared/utils/styles.mjs +37 -0
- package/esm2022/lib/shared/utils/text.mjs +12 -0
- package/esm2022/lib/version.mjs +6 -0
- package/esm2022/public-api.mjs +367 -0
- package/esm2022/valtech-components.mjs +5 -0
- package/fesm2022/valtech-components.mjs +1 -1
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/index.d.ts +5 -0
- package/lib/components/atoms/avatar/avatar.component.d.ts +36 -0
- package/lib/components/atoms/avatar/types.d.ts +15 -0
- package/lib/components/atoms/box/box.component.d.ts +26 -0
- package/lib/components/atoms/box/types.d.ts +19 -0
- package/lib/components/atoms/button/button.component.d.ts +63 -0
- package/lib/components/atoms/button/factory.d.ts +71 -0
- package/lib/components/atoms/container/container.component.d.ts +30 -0
- package/lib/components/atoms/container/types.d.ts +11 -0
- package/lib/components/atoms/countdown/countdown.component.d.ts +38 -0
- package/lib/components/atoms/countdown/types.d.ts +108 -0
- package/lib/components/atoms/display/display.component.d.ts +19 -0
- package/lib/components/atoms/display/types.d.ts +33 -0
- package/lib/components/atoms/divider/divider.component.d.ts +27 -0
- package/lib/components/atoms/divider/types.d.ts +12 -0
- package/lib/components/atoms/fab/fab.component.d.ts +36 -0
- package/lib/components/atoms/fab/types.d.ts +45 -0
- package/lib/components/atoms/glass/glass.component.d.ts +43 -0
- package/lib/components/atoms/glass/types.d.ts +70 -0
- package/lib/components/atoms/glow/glow.component.d.ts +42 -0
- package/lib/components/atoms/glow/types.d.ts +40 -0
- package/lib/components/atoms/horizontal-scroll/horizontal-scroll.component.d.ts +41 -0
- package/lib/components/atoms/horizontal-scroll/types.d.ts +13 -0
- package/lib/components/atoms/href/href.component.d.ts +25 -0
- package/lib/components/atoms/href/types.d.ts +19 -0
- package/lib/components/atoms/icon/icon.component.d.ts +18 -0
- package/lib/components/atoms/icon/types.d.ts +13 -0
- package/lib/components/atoms/image/image.component.d.ts +41 -0
- package/lib/components/atoms/image/types.d.ts +37 -0
- package/lib/components/atoms/pattern/motifs.d.ts +60 -0
- package/lib/components/atoms/pattern/pattern.component.d.ts +68 -0
- package/lib/components/atoms/pattern/types.d.ts +61 -0
- package/lib/components/atoms/price-tag/price-tag.component.d.ts +15 -0
- package/lib/components/atoms/price-tag/types.d.ts +59 -0
- package/lib/components/atoms/progress-bar/progress-bar.component.d.ts +35 -0
- package/lib/components/atoms/progress-bar/types.d.ts +19 -0
- package/lib/components/atoms/progress-ring/progress-ring.component.d.ts +20 -0
- package/lib/components/atoms/progress-ring/types.d.ts +24 -0
- package/lib/components/atoms/qr-code/qr-code.component.d.ts +33 -0
- package/lib/components/atoms/qr-code/types.d.ts +124 -0
- package/lib/components/atoms/rights-footer/rights-footer.component.d.ts +53 -0
- package/lib/components/atoms/rights-footer/types.d.ts +21 -0
- package/lib/components/atoms/skeleton/skeleton.component.d.ts +12 -0
- package/lib/components/atoms/skeleton/types.d.ts +29 -0
- package/lib/components/atoms/text/text.component.d.ts +33 -0
- package/lib/components/atoms/text/types.d.ts +42 -0
- package/lib/components/atoms/title/title.component.d.ts +21 -0
- package/lib/components/atoms/title/types.d.ts +36 -0
- package/lib/components/atoms/user-avatar/types.d.ts +74 -0
- package/lib/components/atoms/user-avatar/user-avatar.component.d.ts +55 -0
- package/lib/components/molecules/accordion/accordion.component.d.ts +18 -0
- package/lib/components/molecules/accordion/types.d.ts +47 -0
- package/lib/components/molecules/action-card/action-card.component.d.ts +90 -0
- package/lib/components/molecules/action-card/types.d.ts +83 -0
- package/lib/components/molecules/action-header/action-header.component.d.ts +27 -0
- package/lib/components/molecules/action-header/types.d.ts +27 -0
- package/lib/components/molecules/ad-slot/ad-slot.component.d.ts +69 -0
- package/lib/components/molecules/alert-box/alert-box.component.d.ts +39 -0
- package/lib/components/molecules/alert-box/types.d.ts +37 -0
- package/lib/components/molecules/breadcrumb/breadcrumb.component.d.ts +22 -0
- package/lib/components/molecules/breadcrumb/types.d.ts +45 -0
- package/lib/components/molecules/button-group/button-group.component.d.ts +23 -0
- package/lib/components/molecules/button-group/types.d.ts +13 -0
- package/lib/components/molecules/card/card.component.d.ts +49 -0
- package/lib/components/molecules/card/types.d.ts +32 -0
- package/lib/components/molecules/check-input/check-input.component.d.ts +36 -0
- package/lib/components/molecules/checkbox-radio-input/checkbox-radio-input.component.d.ts +17 -0
- package/lib/components/molecules/chip-group/chip-group.component.d.ts +22 -0
- package/lib/components/molecules/chip-group/types.d.ts +65 -0
- package/lib/components/molecules/code-display/code-display.component.d.ts +24 -0
- package/lib/components/molecules/code-display/types.d.ts +10 -0
- package/lib/components/molecules/command-display/command-display.component.d.ts +11 -0
- package/lib/components/molecules/command-display/types.d.ts +3 -0
- package/lib/components/molecules/comment/comment.component.d.ts +42 -0
- package/lib/components/molecules/comment/types.d.ts +171 -0
- package/lib/components/molecules/comment-input/comment-input.component.d.ts +16 -0
- package/lib/components/molecules/comment-input/types.d.ts +59 -0
- package/lib/components/molecules/content-loader/content-loader.component.d.ts +18 -0
- package/lib/components/molecules/content-loader/types.d.ts +15 -0
- package/lib/components/molecules/content-reaction/content-reaction.component.d.ts +58 -0
- package/lib/components/molecules/content-reaction/types.d.ts +77 -0
- package/lib/components/molecules/currency-input/currency-input.component.d.ts +40 -0
- package/lib/components/molecules/currency-input/types.d.ts +96 -0
- package/lib/components/molecules/date-input/date-input.component.d.ts +40 -0
- package/lib/components/molecules/date-input/types.d.ts +74 -0
- package/lib/components/molecules/date-range-input/date-range-input.component.d.ts +50 -0
- package/lib/components/molecules/date-range-input/types.d.ts +109 -0
- package/lib/components/molecules/docs-api-table/docs-api-table.component.d.ts +41 -0
- package/lib/components/molecules/docs-api-table/types.d.ts +62 -0
- package/lib/components/molecules/docs-breadcrumb/docs-breadcrumb.component.d.ts +31 -0
- package/lib/components/molecules/docs-breadcrumb/types.d.ts +20 -0
- package/lib/components/molecules/docs-callout/docs-callout.component.d.ts +17 -0
- package/lib/components/molecules/docs-code-example/docs-code-example.component.d.ts +45 -0
- package/lib/components/molecules/docs-code-example/types.d.ts +63 -0
- package/lib/components/molecules/docs-nav-links/docs-nav-links.component.d.ts +30 -0
- package/lib/components/molecules/docs-nav-links/types.d.ts +31 -0
- package/lib/components/molecules/docs-search/docs-search.component.d.ts +47 -0
- package/lib/components/molecules/docs-search/types.d.ts +27 -0
- package/lib/components/molecules/docs-section/docs-section.component.d.ts +29 -0
- package/lib/components/molecules/docs-section/types.d.ts +27 -0
- package/lib/components/molecules/email-input/email-input.component.d.ts +34 -0
- package/lib/components/molecules/expandable-text/expandable-text.component.d.ts +23 -0
- package/lib/components/molecules/expandable-text/types.d.ts +14 -0
- package/lib/components/molecules/features-list/features-list.component.d.ts +66 -0
- package/lib/components/molecules/features-list/types.d.ts +36 -0
- package/lib/components/molecules/feedback-form/feedback-form.component.d.ts +58 -0
- package/lib/components/molecules/feedback-form/types.d.ts +54 -0
- package/lib/components/molecules/file-input/file-input.component.d.ts +25 -0
- package/lib/components/molecules/file-input/types.d.ts +72 -0
- package/lib/components/molecules/footer-links/footer-links.component.d.ts +47 -0
- package/lib/components/molecules/footer-links/types.d.ts +50 -0
- package/lib/components/molecules/glow-card/glow-card.component.d.ts +60 -0
- package/lib/components/molecules/glow-card/types.d.ts +94 -0
- package/lib/components/molecules/hint/hint.component.d.ts +19 -0
- package/lib/components/molecules/hour-input/hour-input.component.d.ts +15 -0
- package/lib/components/molecules/image-crop/image-crop.component.d.ts +59 -0
- package/lib/components/molecules/image-crop/index.d.ts +1 -0
- package/lib/components/molecules/info/info.component.d.ts +9 -0
- package/lib/components/molecules/info/types.d.ts +10 -0
- package/lib/components/molecules/language-selector/language-selector.component.d.ts +40 -0
- package/lib/components/molecules/language-selector/types.d.ts +82 -0
- package/lib/components/molecules/layered-card/layered-card.component.d.ts +10 -0
- package/lib/components/molecules/layered-card/types.d.ts +15 -0
- package/lib/components/molecules/link/link.component.d.ts +24 -0
- package/lib/components/molecules/link/types.d.ts +19 -0
- package/lib/components/molecules/linked-providers/linked-providers.component.d.ts +30 -0
- package/lib/components/molecules/linked-providers/types.d.ts +38 -0
- package/lib/components/molecules/links-accordion/links-accordion.component.d.ts +61 -0
- package/lib/components/molecules/links-accordion/types.d.ts +39 -0
- package/lib/components/molecules/links-cake/links-cake.component.d.ts +17 -0
- package/lib/components/molecules/links-cake/types.d.ts +13 -0
- package/lib/components/molecules/multi-select-search/multi-select-search.component.d.ts +76 -0
- package/lib/components/molecules/notes-box/notes-box.component.d.ts +33 -0
- package/lib/components/molecules/notes-box/types.d.ts +35 -0
- package/lib/components/molecules/number-from-to/number-from-to.component.d.ts +27 -0
- package/lib/components/molecules/number-from-to/types.d.ts +76 -0
- package/lib/components/molecules/number-input/number-input.component.d.ts +16 -0
- package/lib/components/molecules/number-stepper/number-stepper.component.d.ts +38 -0
- package/lib/components/molecules/number-stepper/types.d.ts +88 -0
- package/lib/components/molecules/page-links/page-links.component.d.ts +29 -0
- package/lib/components/molecules/page-links/types.d.ts +38 -0
- package/lib/components/molecules/pagination/pagination.component.d.ts +15 -0
- package/lib/components/molecules/pagination/types.d.ts +41 -0
- package/lib/components/molecules/password-input/password-input.component.d.ts +37 -0
- package/lib/components/molecules/phone-input/phone-input.component.d.ts +59 -0
- package/lib/components/molecules/phone-input/types.d.ts +98 -0
- package/lib/components/molecules/pill/pill.component.d.ts +44 -0
- package/lib/components/molecules/pill/types.d.ts +63 -0
- package/lib/components/molecules/pin-input/pin-input.component.d.ts +21 -0
- package/lib/components/molecules/pin-input/types.d.ts +69 -0
- package/lib/components/molecules/plain-code-box/plain-code-box.component.d.ts +22 -0
- package/lib/components/molecules/plain-code-box/types.d.ts +10 -0
- package/lib/components/molecules/popover-selector/popover-selector.component.d.ts +42 -0
- package/lib/components/molecules/popover-selector/types.d.ts +69 -0
- package/lib/components/molecules/progress-status/progress-status.component.d.ts +23 -0
- package/lib/components/molecules/progress-status/types.d.ts +20 -0
- package/lib/components/molecules/prompter/prompter.component.d.ts +10 -0
- package/lib/components/molecules/prompter/types.d.ts +25 -0
- package/lib/components/molecules/quote-box/quote-box.component.d.ts +26 -0
- package/lib/components/molecules/radio-input/radio-input.component.d.ts +15 -0
- package/lib/components/molecules/range-input/range-input.component.d.ts +25 -0
- package/lib/components/molecules/range-input/types.d.ts +59 -0
- package/lib/components/molecules/rating/rating.component.d.ts +23 -0
- package/lib/components/molecules/rating/types.d.ts +41 -0
- package/lib/components/molecules/refresher/refresher.component.d.ts +84 -0
- package/lib/components/molecules/refresher/types.d.ts +86 -0
- package/lib/components/molecules/searchbar/searchbar.component.d.ts +43 -0
- package/lib/components/molecules/searchbar/types.d.ts +33 -0
- package/lib/components/molecules/segment-control/segment-control.component.d.ts +35 -0
- package/lib/components/molecules/segment-control/types.d.ts +46 -0
- package/lib/components/molecules/select-input/select-input.component.d.ts +57 -0
- package/lib/components/molecules/select-search/select-search.component.d.ts +78 -0
- package/lib/components/molecules/share-buttons/share-buttons.component.d.ts +22 -0
- package/lib/components/molecules/share-buttons/types.d.ts +108 -0
- package/lib/components/molecules/stats-card/stats-card.component.d.ts +20 -0
- package/lib/components/molecules/stats-card/types.d.ts +60 -0
- package/lib/components/molecules/stepper/stepper.component.d.ts +31 -0
- package/lib/components/molecules/stepper/types.d.ts +66 -0
- package/lib/components/molecules/swipe-carousel/swipe-carousel.component.d.ts +66 -0
- package/lib/components/molecules/swipe-carousel/types.d.ts +35 -0
- package/lib/components/molecules/tabs/tabs.component.d.ts +34 -0
- package/lib/components/molecules/tabs/types.d.ts +45 -0
- package/lib/components/molecules/testimonial-card/testimonial-card.component.d.ts +41 -0
- package/lib/components/molecules/testimonial-card/types.d.ts +25 -0
- package/lib/components/molecules/text-input/text-input.component.d.ts +42 -0
- package/lib/components/molecules/textarea-input/textarea-input.component.d.ts +46 -0
- package/lib/components/molecules/textarea-input/types.d.ts +74 -0
- package/lib/components/molecules/timeline/timeline.component.d.ts +14 -0
- package/lib/components/molecules/timeline/types.d.ts +39 -0
- package/lib/components/molecules/title-block/title-block.component.d.ts +12 -0
- package/lib/components/molecules/title-block/types.d.ts +15 -0
- package/lib/components/molecules/toggle-input/toggle-input.component.d.ts +39 -0
- package/lib/components/molecules/toggle-input/types.d.ts +30 -0
- package/lib/components/molecules/update-banner/types.d.ts +41 -0
- package/lib/components/molecules/update-banner/update-banner.component.d.ts +48 -0
- package/lib/components/molecules/username-input/types.d.ts +36 -0
- package/lib/components/molecules/username-input/username-input.component.d.ts +58 -0
- package/lib/components/organisms/article/article.component.d.ts +108 -0
- package/lib/components/organisms/article/types.d.ts +367 -0
- package/lib/components/organisms/avatar-upload/avatar-upload.component.d.ts +84 -0
- package/lib/components/organisms/avatar-upload/types.d.ts +62 -0
- package/lib/components/organisms/banner/banner.component.d.ts +16 -0
- package/lib/components/organisms/banner/types.d.ts +29 -0
- package/lib/components/organisms/bottom-nav/bottom-nav.component.d.ts +91 -0
- package/lib/components/organisms/bottom-nav/types.d.ts +120 -0
- package/lib/components/organisms/cards-carousel/cards-carousel.component.d.ts +36 -0
- package/lib/components/organisms/cards-carousel/types.d.ts +40 -0
- package/lib/components/organisms/comment-section/comment-section.component.d.ts +50 -0
- package/lib/components/organisms/comment-section/types.d.ts +144 -0
- package/lib/components/organisms/company-footer/company-footer.component.d.ts +37 -0
- package/lib/components/organisms/company-footer/types.d.ts +15 -0
- package/lib/components/organisms/cookie-banner/cookie-banner.component.d.ts +36 -0
- package/lib/components/organisms/cookie-banner/types.d.ts +62 -0
- package/lib/components/organisms/data-table/data-table.component.d.ts +63 -0
- package/lib/components/organisms/data-table/types.d.ts +219 -0
- package/lib/components/organisms/docs-sidebar/docs-sidebar.component.d.ts +51 -0
- package/lib/components/organisms/docs-sidebar/types.d.ts +93 -0
- package/lib/components/organisms/docs-toc/docs-toc.component.d.ts +62 -0
- package/lib/components/organisms/docs-toc/types.d.ts +62 -0
- package/lib/components/organisms/faq/faq.component.d.ts +46 -0
- package/lib/components/organisms/faq/types.d.ts +53 -0
- package/lib/components/organisms/footer/footer.component.d.ts +36 -0
- package/lib/components/organisms/footer/types.d.ts +16 -0
- package/lib/components/organisms/form/factory.d.ts +17 -0
- package/lib/components/organisms/form/form-footer/form-footer.component.d.ts +17 -0
- package/lib/components/organisms/form/form.component.d.ts +72 -0
- package/lib/components/organisms/fun-header/fun-header.component.d.ts +72 -0
- package/lib/components/organisms/fun-header/types.d.ts +28 -0
- package/lib/components/organisms/header/header.component.d.ts +22 -0
- package/lib/components/organisms/header/types.d.ts +16 -0
- package/lib/components/organisms/infinite-list/infinite-list.component.d.ts +113 -0
- package/lib/components/organisms/infinite-list/types.d.ts +197 -0
- package/lib/components/organisms/item-list/item-list.component.d.ts +43 -0
- package/lib/components/organisms/item-list/types.d.ts +126 -0
- package/lib/components/organisms/login/login.component.d.ts +79 -0
- package/lib/components/organisms/login/types.d.ts +70 -0
- package/lib/components/organisms/menu/menu.component.d.ts +44 -0
- package/lib/components/organisms/menu/types.d.ts +23 -0
- package/lib/components/organisms/no-content/no-content.component.d.ts +14 -0
- package/lib/components/organisms/no-content/types.d.ts +17 -0
- package/lib/components/organisms/rotating-text/rotating-text.component.d.ts +47 -0
- package/lib/components/organisms/rotating-text/types.d.ts +28 -0
- package/lib/components/organisms/skeleton-layout/skeleton-layout.component.d.ts +37 -0
- package/lib/components/organisms/skeleton-layout/types.d.ts +50 -0
- package/lib/components/organisms/tabbed-content/tabbed-content.component.d.ts +65 -0
- package/lib/components/organisms/tabbed-content/types.d.ts +53 -0
- package/lib/components/organisms/terminal-404/terminal-404.component.d.ts +42 -0
- package/lib/components/organisms/terminal-404/types.d.ts +22 -0
- package/lib/components/organisms/testimonial-carousel/testimonial-carousel.component.d.ts +33 -0
- package/lib/components/organisms/testimonial-carousel/types.d.ts +8 -0
- package/lib/components/organisms/toolbar/toolbar.component.d.ts +85 -0
- package/lib/components/organisms/toolbar/types.d.ts +31 -0
- package/lib/components/organisms/wizard/types.d.ts +42 -0
- package/lib/components/organisms/wizard/wizard-footer/wizard-footer.component.d.ts +23 -0
- package/lib/components/organisms/wizard/wizard.component.d.ts +27 -0
- package/lib/components/templates/auth-background/auth-background.component.d.ts +62 -0
- package/lib/components/templates/auth-background/types.d.ts +30 -0
- package/lib/components/templates/docs-layout/docs-layout.component.d.ts +42 -0
- package/lib/components/templates/docs-layout/types.d.ts +39 -0
- package/lib/components/templates/docs-page/docs-page.component.d.ts +61 -0
- package/lib/components/templates/docs-page/types.d.ts +121 -0
- package/lib/components/templates/docs-shell/docs-shell.component.d.ts +33 -0
- package/lib/components/templates/docs-shell/types.d.ts +152 -0
- package/lib/components/templates/maintenance-page/maintenance-page.component.d.ts +57 -0
- package/lib/components/templates/maintenance-page/types.d.ts +12 -0
- package/lib/components/templates/page-content/page-content.component.d.ts +107 -0
- package/lib/components/templates/page-content/types.d.ts +27 -0
- package/lib/components/templates/page-template/page-template.component.d.ts +54 -0
- package/lib/components/templates/page-template/types.d.ts +17 -0
- package/lib/components/templates/page-wrapper/page-wrapper.component.d.ts +99 -0
- package/lib/components/templates/page-wrapper/types.d.ts +26 -0
- package/lib/components/templates/simple/simple.component.d.ts +14 -0
- package/lib/components/templates/simple/types.d.ts +10 -0
- package/lib/components/types.d.ts +304 -0
- package/lib/config/company-footer.config.d.ts +118 -0
- package/lib/config/index.d.ts +4 -0
- package/lib/services/ads/ads-loader.service.d.ts +41 -0
- package/lib/services/ads/ads.service.d.ts +99 -0
- package/lib/services/ads/config.d.ts +53 -0
- package/lib/services/ads/index.d.ts +9 -0
- package/lib/services/ads/types.d.ts +106 -0
- package/lib/services/app-config/app-config.service.d.ts +115 -0
- package/lib/services/app-config/config.d.ts +31 -0
- package/lib/services/app-config/index.d.ts +47 -0
- package/lib/services/app-config/types.d.ts +54 -0
- package/lib/services/app-config/version.d.ts +64 -0
- package/lib/services/app-version/app-version.service.d.ts +64 -0
- package/lib/services/app-version/config.d.ts +35 -0
- package/lib/services/app-version/index.d.ts +23 -0
- package/lib/services/app-version/types.d.ts +35 -0
- package/lib/services/auth/auth-state.service.d.ts +106 -0
- package/lib/services/auth/auth.service.d.ts +429 -0
- package/lib/services/auth/config.d.ts +38 -0
- package/lib/services/auth/device.service.d.ts +101 -0
- package/lib/services/auth/guards.d.ts +126 -0
- package/lib/services/auth/handoff.service.d.ts +159 -0
- package/lib/services/auth/index.d.ts +89 -0
- package/lib/services/auth/interceptor.d.ts +22 -0
- package/lib/services/auth/notification-action.service.d.ts +34 -0
- package/lib/services/auth/oauth-callback.component.d.ts +34 -0
- package/lib/services/auth/oauth.service.d.ts +99 -0
- package/lib/services/auth/org-switch.service.d.ts +127 -0
- package/lib/services/auth/session.service.d.ts +60 -0
- package/lib/services/auth/storage.service.d.ts +52 -0
- package/lib/services/auth/sync.service.d.ts +49 -0
- package/lib/services/auth/token.service.d.ts +57 -0
- package/lib/services/auth/types.d.ts +862 -0
- package/lib/services/confirmation-dialog/confirmation-dialog.service.d.ts +71 -0
- package/lib/services/confirmation-dialog/types.d.ts +61 -0
- package/lib/services/content/content-types/blog.d.ts +148 -0
- package/lib/services/content/content-types/documentation.d.ts +183 -0
- package/lib/services/content/content-types/news.d.ts +162 -0
- package/lib/services/content/index.d.ts +49 -0
- package/lib/services/content/transformer.d.ts +96 -0
- package/lib/services/content/types.d.ts +220 -0
- package/lib/services/docs/docs-navigation.service.d.ts +51 -0
- package/lib/services/donation/config.d.ts +33 -0
- package/lib/services/donation/donation.service.d.ts +54 -0
- package/lib/services/donation/index.d.ts +25 -0
- package/lib/services/donation/types.d.ts +85 -0
- package/lib/services/download.service.d.ts +21 -0
- package/lib/services/feedback/config.d.ts +35 -0
- package/lib/services/feedback/feedback.service.d.ts +134 -0
- package/lib/services/feedback/index.d.ts +40 -0
- package/lib/services/feedback/types.d.ts +173 -0
- package/lib/services/firebase/analytics-error-handler.d.ts +54 -0
- package/lib/services/firebase/analytics-router-tracker.d.ts +51 -0
- package/lib/services/firebase/analytics-types.d.ts +221 -0
- package/lib/services/firebase/analytics.service.d.ts +256 -0
- package/lib/services/firebase/config.d.ts +49 -0
- package/lib/services/firebase/firebase.service.d.ts +303 -0
- package/lib/services/firebase/firestore-collection.d.ts +199 -0
- package/lib/services/firebase/firestore.service.d.ts +335 -0
- package/lib/services/firebase/index.d.ts +44 -0
- package/lib/services/firebase/messaging.service.d.ts +341 -0
- package/lib/services/firebase/notifications.service.d.ts +158 -0
- package/lib/services/firebase/shared-config.d.ts +151 -0
- package/lib/services/firebase/storage.service.d.ts +238 -0
- package/lib/services/firebase/types.d.ts +374 -0
- package/lib/services/firebase/utils/path-builder.d.ts +132 -0
- package/lib/services/firebase/utils/query-builder.d.ts +210 -0
- package/lib/services/i18n/config.d.ts +29 -0
- package/lib/services/i18n/default-content.d.ts +30 -0
- package/lib/services/i18n/i18n.service.d.ts +128 -0
- package/lib/services/i18n/index.d.ts +6 -0
- package/lib/services/i18n/input-i18n.helper.d.ts +70 -0
- package/lib/services/i18n/translate.pipe.d.ts +36 -0
- package/lib/services/i18n/types.d.ts +93 -0
- package/lib/services/icons.service.d.ts +9 -0
- package/lib/services/image/image.service.d.ts +76 -0
- package/lib/services/image/index.d.ts +2 -0
- package/lib/services/image/types.d.ts +74 -0
- package/lib/services/in-app-browser.service.d.ts +16 -0
- package/lib/services/legal-link/legal-link.service.d.ts +73 -0
- package/lib/services/link-processor.service.d.ts +104 -0
- package/lib/services/local-storage.service.d.ts +27 -0
- package/lib/services/locale.service.d.ts +52 -0
- package/lib/services/markdown-article/legal-content.service.d.ts +73 -0
- package/lib/services/markdown-article/markdown-article-parser.d.ts +38 -0
- package/lib/services/markdown-article/markdown-article-parser.service.d.ts +12 -0
- package/lib/services/meta/index.d.ts +2 -0
- package/lib/services/meta/meta.service.d.ts +23 -0
- package/lib/services/meta/types.d.ts +12 -0
- package/lib/services/modal/modal.service.d.ts +100 -0
- package/lib/services/modal/simple-modal-content.component.d.ts +19 -0
- package/lib/services/modal/types.d.ts +155 -0
- package/lib/services/navigation/index.d.ts +2 -0
- package/lib/services/navigation/navigation.service.d.ts +134 -0
- package/lib/services/navigation/types.d.ts +67 -0
- package/lib/services/page-refresh/page-refresh.service.d.ts +86 -0
- package/lib/services/pagination/index.d.ts +2 -0
- package/lib/services/pagination/pagination.service.d.ts +43 -0
- package/lib/services/pagination/types.d.ts +113 -0
- package/lib/services/preferences/index.d.ts +2 -0
- package/lib/services/preferences/preferences.service.d.ts +61 -0
- package/lib/services/preferences/preferences.types.d.ts +35 -0
- package/lib/services/presets/config.d.ts +32 -0
- package/lib/services/presets/index.d.ts +3 -0
- package/lib/services/presets/preset.service.d.ts +69 -0
- package/lib/services/presets/types.d.ts +39 -0
- package/lib/services/qr-generator/qr-generator.service.d.ts +115 -0
- package/lib/services/qr-generator/types.d.ts +141 -0
- package/lib/services/refreshable-stream/index.d.ts +7 -0
- package/lib/services/refreshable-stream/refreshable-stream.d.ts +113 -0
- package/lib/services/skeleton/config.d.ts +30 -0
- package/lib/services/skeleton/directives/loading.directive.d.ts +71 -0
- package/lib/services/skeleton/index.d.ts +10 -0
- package/lib/services/skeleton/skeleton.service.d.ts +127 -0
- package/lib/services/skeleton/templates/detail-skeleton.component.d.ts +18 -0
- package/lib/services/skeleton/templates/form-skeleton.component.d.ts +22 -0
- package/lib/services/skeleton/templates/grid-skeleton.component.d.ts +18 -0
- package/lib/services/skeleton/templates/list-skeleton.component.d.ts +17 -0
- package/lib/services/skeleton/templates/profile-skeleton.component.d.ts +20 -0
- package/lib/services/skeleton/templates/table-skeleton.component.d.ts +17 -0
- package/lib/services/skeleton/types.d.ts +111 -0
- package/lib/services/theme.service.d.ts +76 -0
- package/lib/services/toast.service.d.ts +28 -0
- package/lib/services/types.d.ts +1 -0
- package/lib/shared/constants/storage.d.ts +2 -0
- package/lib/shared/pipes/process-links.pipe.d.ts +55 -0
- package/lib/shared/utils/datetime.d.ts +21 -0
- package/lib/shared/utils/dom.d.ts +13 -0
- package/lib/shared/utils/form-defaults.d.ts +30 -0
- package/lib/shared/utils/styles.d.ts +13 -0
- package/lib/shared/utils/text.d.ts +11 -0
- package/lib/version.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +316 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { DocsCodeExampleMetadata, DocsCodeTab } from './types';
|
|
3
|
+
import 'prismjs/components/prism-typescript';
|
|
4
|
+
import 'prismjs/components/prism-javascript';
|
|
5
|
+
import 'prismjs/components/prism-css';
|
|
6
|
+
import 'prismjs/components/prism-scss';
|
|
7
|
+
import 'prismjs/components/prism-bash';
|
|
8
|
+
import 'prismjs/components/prism-json';
|
|
9
|
+
import 'prismjs/components/prism-markup';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/**
|
|
12
|
+
* val-docs-code-example
|
|
13
|
+
*
|
|
14
|
+
* A code example component with tabs, preview, and copy functionality.
|
|
15
|
+
*
|
|
16
|
+
* @example Basic usage
|
|
17
|
+
* ```html
|
|
18
|
+
* <val-docs-code-example
|
|
19
|
+
* [props]="{
|
|
20
|
+
* title: 'Basic Button',
|
|
21
|
+
* tabs: [
|
|
22
|
+
* { label: 'HTML', language: 'html', code: '<val-button>Click me</val-button>' },
|
|
23
|
+
* { label: 'TypeScript', language: 'typescript', code: 'import { ButtonComponent } from ...' }
|
|
24
|
+
* ]
|
|
25
|
+
* }"
|
|
26
|
+
* >
|
|
27
|
+
* <ng-template #preview>
|
|
28
|
+
* <val-button [props]="{ label: 'Click me' }"></val-button>
|
|
29
|
+
* </ng-template>
|
|
30
|
+
* </val-docs-code-example>
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
export declare class DocsCodeExampleComponent {
|
|
34
|
+
props: DocsCodeExampleMetadata;
|
|
35
|
+
previewTpl?: TemplateRef<any>;
|
|
36
|
+
protected activeTab: import("@angular/core").WritableSignal<number>;
|
|
37
|
+
protected copied: import("@angular/core").WritableSignal<boolean>;
|
|
38
|
+
protected currentTab(): DocsCodeTab;
|
|
39
|
+
protected highlightedCode(): string;
|
|
40
|
+
copyCode(): Promise<void>;
|
|
41
|
+
private normalizeLanguage;
|
|
42
|
+
private escapeHtml;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocsCodeExampleComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocsCodeExampleComponent, "val-docs-code-example", never, { "props": { "alias": "props"; "required": false; }; }, {}, ["previewTpl"], never, true, never>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
/**
|
|
3
|
+
* Configuration for the docs-code-example component.
|
|
4
|
+
*/
|
|
5
|
+
export interface DocsCodeExampleMetadata {
|
|
6
|
+
/**
|
|
7
|
+
* Example title.
|
|
8
|
+
*/
|
|
9
|
+
title?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Example description.
|
|
12
|
+
*/
|
|
13
|
+
description?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Code tabs to display.
|
|
16
|
+
*/
|
|
17
|
+
tabs: DocsCodeTab[];
|
|
18
|
+
/**
|
|
19
|
+
* Template for live preview.
|
|
20
|
+
* Use ng-template with #preview reference.
|
|
21
|
+
*/
|
|
22
|
+
previewTemplate?: TemplateRef<any>;
|
|
23
|
+
/**
|
|
24
|
+
* External link (e.g., StackBlitz, CodeSandbox).
|
|
25
|
+
*/
|
|
26
|
+
externalLink?: {
|
|
27
|
+
url: string;
|
|
28
|
+
label?: string;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Show copy button on code blocks.
|
|
32
|
+
* @default true
|
|
33
|
+
*/
|
|
34
|
+
showCopyButton?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Show line numbers in code.
|
|
37
|
+
* @default false
|
|
38
|
+
*/
|
|
39
|
+
showLineNumbers?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Custom CSS class.
|
|
42
|
+
*/
|
|
43
|
+
cssClass?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Default active tab index.
|
|
46
|
+
* @default 0
|
|
47
|
+
*/
|
|
48
|
+
defaultTab?: number;
|
|
49
|
+
}
|
|
50
|
+
export interface DocsCodeTab {
|
|
51
|
+
/**
|
|
52
|
+
* Tab label (e.g., "HTML", "TypeScript", "SCSS").
|
|
53
|
+
*/
|
|
54
|
+
label: string;
|
|
55
|
+
/**
|
|
56
|
+
* Code content.
|
|
57
|
+
*/
|
|
58
|
+
code: string;
|
|
59
|
+
/**
|
|
60
|
+
* Language for syntax highlighting.
|
|
61
|
+
*/
|
|
62
|
+
language: 'html' | 'typescript' | 'scss' | 'css' | 'json' | 'bash' | 'text' | 'go';
|
|
63
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { DocsNavLinksMetadata } from './types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* val-docs-nav-links
|
|
6
|
+
*
|
|
7
|
+
* Navigation links for previous/next page navigation in documentation.
|
|
8
|
+
*
|
|
9
|
+
* @example
|
|
10
|
+
* ```html
|
|
11
|
+
* <val-docs-nav-links
|
|
12
|
+
* [props]="{
|
|
13
|
+
* previous: { label: 'Previous', title: 'Getting Started', route: ['/docs', 'getting-started'] },
|
|
14
|
+
* next: { label: 'Next', title: 'Components', route: ['/docs', 'components'] }
|
|
15
|
+
* }"
|
|
16
|
+
* ></val-docs-nav-links>
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare class DocsNavLinksComponent {
|
|
20
|
+
props: DocsNavLinksMetadata;
|
|
21
|
+
navigate: EventEmitter<string[]>;
|
|
22
|
+
private docsNav;
|
|
23
|
+
private i18n;
|
|
24
|
+
previousLabel: import("@angular/core").Signal<string>;
|
|
25
|
+
nextLabel: import("@angular/core").Signal<string>;
|
|
26
|
+
getHref(route: string[]): string;
|
|
27
|
+
onNavigate(event: Event, route: string[]): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocsNavLinksComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocsNavLinksComponent, "val-docs-nav-links", never, { "props": { "alias": "props"; "required": false; }; }, { "navigate": "navigate"; }, never, never, true, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Configuration for the docs-nav-links component.
|
|
3
|
+
*/
|
|
4
|
+
export interface DocsNavLinksMetadata {
|
|
5
|
+
/**
|
|
6
|
+
* Previous page link.
|
|
7
|
+
*/
|
|
8
|
+
previous?: DocsNavLink;
|
|
9
|
+
/**
|
|
10
|
+
* Next page link.
|
|
11
|
+
*/
|
|
12
|
+
next?: DocsNavLink;
|
|
13
|
+
/**
|
|
14
|
+
* Custom CSS class.
|
|
15
|
+
*/
|
|
16
|
+
cssClass?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface DocsNavLink {
|
|
19
|
+
/**
|
|
20
|
+
* Label (small text, e.g., "Previous", "Next").
|
|
21
|
+
*/
|
|
22
|
+
label?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Title (main text, page name).
|
|
25
|
+
*/
|
|
26
|
+
title: string;
|
|
27
|
+
/**
|
|
28
|
+
* Route to navigate to.
|
|
29
|
+
*/
|
|
30
|
+
route: string[];
|
|
31
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { EventEmitter, ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { DocsSearchMetadata, DocsSearchResult } from './types';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* val-docs-search
|
|
7
|
+
*
|
|
8
|
+
* A search component for documentation with keyboard navigation support.
|
|
9
|
+
* Supports Cmd+K / Ctrl+K shortcut to open.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```html
|
|
13
|
+
* <val-docs-search
|
|
14
|
+
* [props]="{
|
|
15
|
+
* placeholder: 'Search docs...',
|
|
16
|
+
* sections: sidebarSections,
|
|
17
|
+
* showShortcut: true
|
|
18
|
+
* }"
|
|
19
|
+
* (navigate)="onNavigate($event)"
|
|
20
|
+
* ></val-docs-search>
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
export declare class DocsSearchComponent implements OnDestroy {
|
|
24
|
+
private router;
|
|
25
|
+
props: DocsSearchMetadata;
|
|
26
|
+
navigate: EventEmitter<string[]>;
|
|
27
|
+
search: EventEmitter<string>;
|
|
28
|
+
searchInputEl?: ElementRef<HTMLInputElement>;
|
|
29
|
+
protected searchQuery: import("@angular/core").WritableSignal<string>;
|
|
30
|
+
protected showResults: import("@angular/core").WritableSignal<boolean>;
|
|
31
|
+
protected selectedIndex: import("@angular/core").WritableSignal<number>;
|
|
32
|
+
private searchSubject;
|
|
33
|
+
private destroy$;
|
|
34
|
+
readonly isMac: boolean;
|
|
35
|
+
protected results: import("@angular/core").Signal<DocsSearchResult[]>;
|
|
36
|
+
constructor(router: Router);
|
|
37
|
+
ngOnDestroy(): void;
|
|
38
|
+
onGlobalKeydown(event: KeyboardEvent): void;
|
|
39
|
+
onQueryChange(query: string): void;
|
|
40
|
+
onFocus(): void;
|
|
41
|
+
onBlur(): void;
|
|
42
|
+
onInputKeydown(event: KeyboardEvent): void;
|
|
43
|
+
selectResult(result: DocsSearchResult): void;
|
|
44
|
+
clearSearch(): void;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocsSearchComponent, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocsSearchComponent, "val-docs-search", never, { "props": { "alias": "props"; "required": false; }; }, { "navigate": "navigate"; "search": "search"; }, never, never, true, never>;
|
|
47
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface DocsSearchMetadata {
|
|
2
|
+
/** Placeholder text for the search input */
|
|
3
|
+
placeholder?: string;
|
|
4
|
+
/** Sections to search through */
|
|
5
|
+
sections?: DocsSearchSection[];
|
|
6
|
+
/** Debounce time in milliseconds */
|
|
7
|
+
debounceMs?: number;
|
|
8
|
+
/** Show keyboard shortcut hint (Cmd+K / Ctrl+K) */
|
|
9
|
+
showShortcut?: boolean;
|
|
10
|
+
/** Custom CSS class */
|
|
11
|
+
cssClass?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface DocsSearchSection {
|
|
14
|
+
title: string;
|
|
15
|
+
items: DocsSearchItem[];
|
|
16
|
+
}
|
|
17
|
+
export interface DocsSearchItem {
|
|
18
|
+
label: string;
|
|
19
|
+
route: string[];
|
|
20
|
+
description?: string;
|
|
21
|
+
keywords?: string[];
|
|
22
|
+
}
|
|
23
|
+
export interface DocsSearchResult {
|
|
24
|
+
section: string;
|
|
25
|
+
item: DocsSearchItem;
|
|
26
|
+
matchType: 'label' | 'description' | 'keyword';
|
|
27
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { DocsSectionMetadata } from './types';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* val-docs-section
|
|
5
|
+
*
|
|
6
|
+
* A semantic section wrapper for documentation pages.
|
|
7
|
+
* Automatically creates headings with IDs for TOC linking.
|
|
8
|
+
*
|
|
9
|
+
* @example Basic usage
|
|
10
|
+
* ```html
|
|
11
|
+
* <val-docs-section [props]="{ id: 'installation', title: 'Installation' }">
|
|
12
|
+
* <p>Install the package using npm...</p>
|
|
13
|
+
* <val-docs-code-example [props]="codeExample"></val-docs-code-example>
|
|
14
|
+
* </val-docs-section>
|
|
15
|
+
* ```
|
|
16
|
+
*
|
|
17
|
+
* @example With level 3 heading
|
|
18
|
+
* ```html
|
|
19
|
+
* <val-docs-section [props]="{ id: 'npm', title: 'Using npm', level: 3 }">
|
|
20
|
+
* <val-docs-code-example [props]="npmExample"></val-docs-code-example>
|
|
21
|
+
* </val-docs-section>
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
export declare class DocsSectionComponent {
|
|
25
|
+
props: DocsSectionMetadata;
|
|
26
|
+
get level(): 2 | 3;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocsSectionComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocsSectionComponent, "val-docs-section", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Configuration for the docs-section component.
|
|
3
|
+
*/
|
|
4
|
+
export interface DocsSectionMetadata {
|
|
5
|
+
/**
|
|
6
|
+
* Unique ID for the section (used for TOC linking).
|
|
7
|
+
* Will be applied to the section element for anchor navigation.
|
|
8
|
+
*/
|
|
9
|
+
id: string;
|
|
10
|
+
/**
|
|
11
|
+
* Section title displayed as heading.
|
|
12
|
+
*/
|
|
13
|
+
title: string;
|
|
14
|
+
/**
|
|
15
|
+
* Heading level for the section.
|
|
16
|
+
* @default 2
|
|
17
|
+
*/
|
|
18
|
+
level?: 2 | 3;
|
|
19
|
+
/**
|
|
20
|
+
* Optional description below the title.
|
|
21
|
+
*/
|
|
22
|
+
description?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Custom CSS class.
|
|
25
|
+
*/
|
|
26
|
+
cssClass?: string;
|
|
27
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { InputMetadata } from '../../types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class EmailInputComponent implements OnInit, OnChanges {
|
|
5
|
+
private presets;
|
|
6
|
+
/**
|
|
7
|
+
* Preset name to apply. Presets define reusable input configurations
|
|
8
|
+
* that can be registered at app level via provideValtechPresets().
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* <val-email-input preset="form-field" [props]="{ control: ctrl }"></val-email-input>
|
|
12
|
+
*/
|
|
13
|
+
preset?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Input configuration object. Values here override preset values.
|
|
16
|
+
* @type {InputMetadata}
|
|
17
|
+
* @property control - The Angular FormControl for the input.
|
|
18
|
+
* @property placeholder - The placeholder text.
|
|
19
|
+
*/
|
|
20
|
+
props: Partial<InputMetadata>;
|
|
21
|
+
/**
|
|
22
|
+
* Resolved props after merging preset + explicit props.
|
|
23
|
+
*/
|
|
24
|
+
resolvedProps: InputMetadata;
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
27
|
+
/**
|
|
28
|
+
* Merge preset configuration with explicit props.
|
|
29
|
+
* Explicit props take precedence over preset values.
|
|
30
|
+
*/
|
|
31
|
+
private resolveProps;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmailInputComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmailInputComponent, "val-email-input", never, { "preset": { "alias": "preset"; "required": false; }; "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ExpandableTextInput } from './types';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ExpandableTextComponent {
|
|
4
|
+
/**
|
|
5
|
+
* Expandable text configuration object.
|
|
6
|
+
* @type {ExpandableTextInput}
|
|
7
|
+
* @property content - The text content to display.
|
|
8
|
+
* @property limit - The character limit before truncation.
|
|
9
|
+
* @property color - The color for the "see more" link.
|
|
10
|
+
* @property expandText - The text for the expand link (optional).
|
|
11
|
+
*/
|
|
12
|
+
props: ExpandableTextInput;
|
|
13
|
+
expanded: boolean;
|
|
14
|
+
defaultColor: string;
|
|
15
|
+
private i18n;
|
|
16
|
+
get truncatedText(): string;
|
|
17
|
+
get isTruncated(): boolean;
|
|
18
|
+
getExpandText(): string;
|
|
19
|
+
toggleExpand(): void;
|
|
20
|
+
color(): string;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandableTextComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandableTextComponent, "val-expandable-text", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Expandable text configuration object.
|
|
3
|
+
* @type {ExpandableTextInput}
|
|
4
|
+
* @property content - The text content to display.
|
|
5
|
+
* @property limit - The character limit before truncation.
|
|
6
|
+
* @property color - The color for the "see more" link.
|
|
7
|
+
* @property expandText - The text for the expand link (optional).
|
|
8
|
+
*/
|
|
9
|
+
export interface ExpandableTextInput {
|
|
10
|
+
limit: number;
|
|
11
|
+
content: string;
|
|
12
|
+
color?: string;
|
|
13
|
+
expandText?: string;
|
|
14
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { FeatureItem, FeaturesListMetadata } from './types';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* val-features-list
|
|
5
|
+
*
|
|
6
|
+
* A component to display a list of features with icons, titles, and descriptions.
|
|
7
|
+
* Supports i18n for all text content.
|
|
8
|
+
*
|
|
9
|
+
* @example
|
|
10
|
+
* ```html
|
|
11
|
+
* <val-features-list
|
|
12
|
+
* [props]="{
|
|
13
|
+
* features: [
|
|
14
|
+
* { icon: 'flash-outline', titleKey: 'feature1Title', descriptionKey: 'feature1Desc' },
|
|
15
|
+
* { icon: 'color-palette-outline', titleKey: 'feature2Title', descriptionKey: 'feature2Desc' }
|
|
16
|
+
* ],
|
|
17
|
+
* i18nNamespace: 'Features',
|
|
18
|
+
* iconColor: 'primary',
|
|
19
|
+
* mode: 'vertical'
|
|
20
|
+
* }"
|
|
21
|
+
* />
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* @example With custom SVG icons
|
|
25
|
+
* ```html
|
|
26
|
+
* <val-features-list
|
|
27
|
+
* [props]="{
|
|
28
|
+
* features: [
|
|
29
|
+
* {
|
|
30
|
+
* icon: 'custom',
|
|
31
|
+
* svgPath: 'M13 2L3 14h9l-1 8 10-12h-9l1-8z',
|
|
32
|
+
* titleKey: 'Fast & Secure',
|
|
33
|
+
* descriptionKey: 'Modern authentication with OAuth and MFA'
|
|
34
|
+
* }
|
|
35
|
+
* ]
|
|
36
|
+
* }"
|
|
37
|
+
* />
|
|
38
|
+
* ```
|
|
39
|
+
*/
|
|
40
|
+
export declare class FeaturesListComponent {
|
|
41
|
+
private i18n;
|
|
42
|
+
/** Component configuration */
|
|
43
|
+
readonly props: import("@angular/core").InputSignal<FeaturesListMetadata>;
|
|
44
|
+
/** Merged configuration with defaults */
|
|
45
|
+
config: import("@angular/core").Signal<{
|
|
46
|
+
features: FeatureItem[];
|
|
47
|
+
i18nNamespace?: string;
|
|
48
|
+
iconColor: string;
|
|
49
|
+
iconSize: number;
|
|
50
|
+
mode: "horizontal" | "vertical";
|
|
51
|
+
gap: "small" | "medium" | "large";
|
|
52
|
+
alignment: "center" | "start";
|
|
53
|
+
}>;
|
|
54
|
+
/** Resolved icon color (handles Ionic colors and CSS colors) */
|
|
55
|
+
iconColorStyle: import("@angular/core").Signal<string>;
|
|
56
|
+
/**
|
|
57
|
+
* Get translated title or return direct text
|
|
58
|
+
*/
|
|
59
|
+
getTitle(feature: FeatureItem): string;
|
|
60
|
+
/**
|
|
61
|
+
* Get translated description or return direct text
|
|
62
|
+
*/
|
|
63
|
+
getDescription(feature: FeatureItem): string;
|
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeaturesListComponent, never>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeaturesListComponent, "val-features-list", never, { "props": { "alias": "props"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
66
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Feature item configuration
|
|
3
|
+
*/
|
|
4
|
+
export interface FeatureItem {
|
|
5
|
+
/** Ionicon name or 'custom' for SVG path */
|
|
6
|
+
icon: string;
|
|
7
|
+
/** SVG path data (only used when icon is 'custom') */
|
|
8
|
+
svgPath?: string;
|
|
9
|
+
/** Title i18n key or direct text */
|
|
10
|
+
titleKey: string;
|
|
11
|
+
/** Description i18n key or direct text */
|
|
12
|
+
descriptionKey: string;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Features list component configuration
|
|
16
|
+
*/
|
|
17
|
+
export interface FeaturesListMetadata {
|
|
18
|
+
/** Array of features to display */
|
|
19
|
+
features: FeatureItem[];
|
|
20
|
+
/** i18n namespace for translations (if using keys) */
|
|
21
|
+
i18nNamespace?: string;
|
|
22
|
+
/** Icon color (Ionic color or CSS color) */
|
|
23
|
+
iconColor?: string;
|
|
24
|
+
/** Icon size in pixels */
|
|
25
|
+
iconSize?: number;
|
|
26
|
+
/** Layout mode: 'vertical' stacks features, 'horizontal' displays them in a row */
|
|
27
|
+
mode?: 'vertical' | 'horizontal';
|
|
28
|
+
/** Gap between features */
|
|
29
|
+
gap?: 'small' | 'medium' | 'large';
|
|
30
|
+
/** Alignment of features */
|
|
31
|
+
alignment?: 'start' | 'center';
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Default values for FeaturesListMetadata
|
|
35
|
+
*/
|
|
36
|
+
export declare const FEATURES_LIST_DEFAULTS: Required<Omit<FeaturesListMetadata, 'features' | 'i18nNamespace'>>;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { I18nService } from '../../../services/i18n';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { FeedbackFormMetadata, FeedbackSubmitEvent } from './types';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* val-feedback-form
|
|
8
|
+
*
|
|
9
|
+
* Formulario reutilizable para enviar feedback desde cualquier parte de la aplicación.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```html
|
|
13
|
+
* <!-- Feedback general -->
|
|
14
|
+
* <val-feedback-form
|
|
15
|
+
* [props]="{ defaultType: 'feedback', showTypeSelector: true }"
|
|
16
|
+
* (onSubmit)="handleSuccess($event)"
|
|
17
|
+
* (onCancel)="closeModal()"
|
|
18
|
+
* />
|
|
19
|
+
*
|
|
20
|
+
* <!-- Reportar contenido incorrecto -->
|
|
21
|
+
* <val-feedback-form
|
|
22
|
+
* [props]="{
|
|
23
|
+
* defaultType: 'poor-content',
|
|
24
|
+
* showTypeSelector: false,
|
|
25
|
+
* contentRef: { contentId: article.id, contentType: 'article' },
|
|
26
|
+
* submitButtonText: 'Reportar contenido'
|
|
27
|
+
* }"
|
|
28
|
+
* />
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
export declare class FeedbackFormComponent implements OnInit {
|
|
32
|
+
/**
|
|
33
|
+
* Configuración del formulario.
|
|
34
|
+
*/
|
|
35
|
+
props: FeedbackFormMetadata;
|
|
36
|
+
/**
|
|
37
|
+
* Evento emitido cuando el feedback se envía exitosamente.
|
|
38
|
+
*/
|
|
39
|
+
onSubmit: EventEmitter<FeedbackSubmitEvent>;
|
|
40
|
+
/**
|
|
41
|
+
* Evento emitido cuando el usuario cancela.
|
|
42
|
+
*/
|
|
43
|
+
onCancel: EventEmitter<void>;
|
|
44
|
+
private fb;
|
|
45
|
+
private feedbackService;
|
|
46
|
+
protected i18n: I18nService;
|
|
47
|
+
form: FormGroup;
|
|
48
|
+
typeOptions: import("../../../services/feedback").FeedbackTypeOption[];
|
|
49
|
+
isSubmitting: import("@angular/core").WritableSignal<boolean>;
|
|
50
|
+
isSuccess: import("@angular/core").WritableSignal<boolean>;
|
|
51
|
+
error: import("@angular/core").WritableSignal<string>;
|
|
52
|
+
constructor();
|
|
53
|
+
ngOnInit(): void;
|
|
54
|
+
handleSubmit(): Promise<void>;
|
|
55
|
+
onCancelClick(): void;
|
|
56
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackFormComponent, never>;
|
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeedbackFormComponent, "val-feedback-form", never, { "props": { "alias": "props"; "required": false; }; }, { "onSubmit": "onSubmit"; "onCancel": "onCancel"; }, never, never, true, never>;
|
|
58
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { FeedbackType, ContentRef, CreateFeedbackResponse, FeedbackTypeOption } from '../../../services/feedback/types';
|
|
2
|
+
/**
|
|
3
|
+
* Metadata para el componente FeedbackForm.
|
|
4
|
+
*/
|
|
5
|
+
export interface FeedbackFormMetadata {
|
|
6
|
+
/** Tipo de feedback preseleccionado */
|
|
7
|
+
defaultType?: FeedbackType;
|
|
8
|
+
/** Referencia a contenido (si aplica) */
|
|
9
|
+
contentRef?: ContentRef;
|
|
10
|
+
/** Mostrar selector de tipo (default: true) */
|
|
11
|
+
showTypeSelector?: boolean;
|
|
12
|
+
/** Tipos de feedback habilitados (por defecto todos) */
|
|
13
|
+
enabledTypes?: FeedbackType[];
|
|
14
|
+
/** Opciones personalizadas para tipos de feedback */
|
|
15
|
+
typeOptions?: FeedbackTypeOption[];
|
|
16
|
+
/** Placeholder para título */
|
|
17
|
+
titlePlaceholder?: string;
|
|
18
|
+
/** Placeholder para descripción */
|
|
19
|
+
descriptionPlaceholder?: string;
|
|
20
|
+
/** Label para campo de título */
|
|
21
|
+
titleLabel?: string;
|
|
22
|
+
/** Label para campo de descripción */
|
|
23
|
+
descriptionLabel?: string;
|
|
24
|
+
/** Texto del botón de envío */
|
|
25
|
+
submitButtonText?: string;
|
|
26
|
+
/** Texto del botón cancelar (si no se proporciona, no se muestra) */
|
|
27
|
+
cancelButtonText?: string;
|
|
28
|
+
/** Mostrar campo de adjuntos (default: true) */
|
|
29
|
+
showAttachments?: boolean;
|
|
30
|
+
/** Label para campo de adjuntos */
|
|
31
|
+
attachmentsLabel?: string;
|
|
32
|
+
/** Mensaje de éxito personalizado */
|
|
33
|
+
successMessage?: string;
|
|
34
|
+
/** CSS class adicional para el contenedor */
|
|
35
|
+
cssClass?: string;
|
|
36
|
+
/** Modo compacto (menos espaciado) */
|
|
37
|
+
compact?: boolean;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Evento emitido cuando el feedback se envía exitosamente.
|
|
41
|
+
*/
|
|
42
|
+
export interface FeedbackSubmitEvent {
|
|
43
|
+
response: CreateFeedbackResponse;
|
|
44
|
+
type: FeedbackType;
|
|
45
|
+
title: string;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Estado del formulario.
|
|
49
|
+
*/
|
|
50
|
+
export interface FeedbackFormState {
|
|
51
|
+
isSubmitting: boolean;
|
|
52
|
+
isSuccess: boolean;
|
|
53
|
+
error: string | null;
|
|
54
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ButtonMetadata } from '../../types';
|
|
3
|
+
import { FileInputMetadata } from './types';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FileInputComponent implements OnInit {
|
|
6
|
+
/**
|
|
7
|
+
* Input configuration object.
|
|
8
|
+
* @type {FileInputMetadata}
|
|
9
|
+
* @property control - The Angular FormControl for the file input.
|
|
10
|
+
* @property accept - Accepted file types (e.g., 'image/*', '.pdf').
|
|
11
|
+
*/
|
|
12
|
+
props: FileInputMetadata;
|
|
13
|
+
fileInput: any;
|
|
14
|
+
private i18n;
|
|
15
|
+
contrastButton: ButtonMetadata;
|
|
16
|
+
selectedFile: File;
|
|
17
|
+
constructor();
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
/** Get display text for file status */
|
|
20
|
+
getFileDisplayText(): string;
|
|
21
|
+
onFileSelected(event: any): void;
|
|
22
|
+
reset(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileInputComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileInputComponent, "val-file-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
|
|
25
|
+
}
|