@dropi/ui-components 1.0.0
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/.gitignore +13 -0
- package/CONTRIBUTING.md +188 -0
- package/MIGRATION_STEPS.md +39 -0
- package/PUBLISH_CHECKLIST.md +97 -0
- package/QUICK_START.md +108 -0
- package/README.md +146 -0
- package/jest.config.ts +21 -0
- package/ng-package.json +8 -0
- package/package.json +66 -0
- package/project.json +48 -0
- package/publish.sh +113 -0
- package/src/components-source/accordion/accordion-item/accordion-item.component.html +12 -0
- package/src/components-source/accordion/accordion-item/accordion-item.component.scss +47 -0
- package/src/components-source/accordion/accordion-item/accordion-item.component.spec.ts +122 -0
- package/src/components-source/accordion/accordion-item/accordion-item.component.ts +42 -0
- package/src/components-source/accordion/accordion.component.html +3 -0
- package/src/components-source/accordion/accordion.component.scss +5 -0
- package/src/components-source/accordion/accordion.component.spec.ts +243 -0
- package/src/components-source/accordion/accordion.component.stories.ts +111 -0
- package/src/components-source/accordion/accordion.component.ts +43 -0
- package/src/components-source/alert/alert.component.html +28 -0
- package/src/components-source/alert/alert.component.scss +154 -0
- package/src/components-source/alert/alert.component.spec.ts +185 -0
- package/src/components-source/alert/alert.component.stories.ts +310 -0
- package/src/components-source/alert/alert.component.ts +203 -0
- package/src/components-source/alert-legacy/alert.component.html +21 -0
- package/src/components-source/alert-legacy/alert.component.scss +42 -0
- package/src/components-source/alert-legacy/alert.component.spec.ts +159 -0
- package/src/components-source/alert-legacy/alert.component.ts +33 -0
- package/src/components-source/alert-modal/alert-modal.component.html +124 -0
- package/src/components-source/alert-modal/alert-modal.component.scss +203 -0
- package/src/components-source/alert-modal/alert-modal.component.spec.ts +557 -0
- package/src/components-source/alert-modal/alert-modal.component.stories.ts +295 -0
- package/src/components-source/alert-modal/alert-modal.component.ts +294 -0
- package/src/components-source/alert-modal/services/template-alert-modal.service.ts +75 -0
- package/src/components-source/badge/badge.component.html +49 -0
- package/src/components-source/badge/badge.component.scss +57 -0
- package/src/components-source/badge/badge.component.spec.ts +181 -0
- package/src/components-source/badge/badge.component.ts +21 -0
- package/src/components-source/breadcrumb/breadcrumb.component.html +5 -0
- package/src/components-source/breadcrumb/breadcrumb.component.scss +46 -0
- package/src/components-source/breadcrumb/breadcrumb.component.spec.ts +279 -0
- package/src/components-source/breadcrumb/breadcrumb.component.ts +24 -0
- package/src/components-source/card-product/card-product.component.html +173 -0
- package/src/components-source/card-product/card-product.component.spec.ts +601 -0
- package/src/components-source/card-product/card-product.component.stories.ts +322 -0
- package/src/components-source/card-product/card-product.component.ts +1101 -0
- package/src/components-source/card-section/card-section.component.html +22 -0
- package/src/components-source/card-section/card-section.component.scss +14 -0
- package/src/components-source/card-section/card-section.component.spec.ts +333 -0
- package/src/components-source/card-section/card-section.component.stories.ts +141 -0
- package/src/components-source/card-section/card-section.component.ts +35 -0
- package/src/components-source/checkbox-selection-list/checkbox-selection-list.component.html +38 -0
- package/src/components-source/checkbox-selection-list/checkbox-selection-list.component.scss +147 -0
- package/src/components-source/checkbox-selection-list/checkbox-selection-list.component.spec.ts +555 -0
- package/src/components-source/checkbox-selection-list/checkbox-selection-list.component.stories.ts +157 -0
- package/src/components-source/checkbox-selection-list/checkbox-selection-list.component.ts +219 -0
- package/src/components-source/city-selector/city-selector.component.html +22 -0
- package/src/components-source/city-selector/city-selector.component.scss +1 -0
- package/src/components-source/city-selector/city-selector.component.spec.ts +278 -0
- package/src/components-source/city-selector/city-selector.component.stories.ts +200 -0
- package/src/components-source/city-selector/city-selector.component.ts +151 -0
- package/src/components-source/color-picker/color-picker.component.html +54 -0
- package/src/components-source/color-picker/color-picker.component.scss +203 -0
- package/src/components-source/color-picker/color-picker.component.spec.ts +148 -0
- package/src/components-source/color-picker/color-picker.component.stories.ts +70 -0
- package/src/components-source/color-picker/color-picker.component.ts +353 -0
- package/src/components-source/country-flags/country-flags.component.html +10 -0
- package/src/components-source/country-flags/country-flags.component.scss +34 -0
- package/src/components-source/country-flags/country-flags.component.spec.ts +78 -0
- package/src/components-source/country-flags/country-flags.component.ts +18 -0
- package/src/components-source/date-picker/date-picker.component.html +35 -0
- package/src/components-source/date-picker/date-picker.component.scss +388 -0
- package/src/components-source/date-picker/date-picker.component.spec.ts +510 -0
- package/src/components-source/date-picker/date-picker.component.stories.ts +444 -0
- package/src/components-source/date-picker/date-picker.component.ts +313 -0
- package/src/components-source/date-picker/date-picker.stories.spec.ts +150 -0
- package/src/components-source/date-picker-range/date-picker-range.component.html +45 -0
- package/src/components-source/date-picker-range/date-picker-range.component.scss +229 -0
- package/src/components-source/date-picker-range/date-picker-range.component.spec.ts +555 -0
- package/src/components-source/date-picker-range/date-picker-range.component.ts +254 -0
- package/src/components-source/dropi-avatars/dropi-avatars.component.html +17 -0
- package/src/components-source/dropi-avatars/dropi-avatars.component.scss +58 -0
- package/src/components-source/dropi-avatars/dropi-avatars.component.spec.ts +403 -0
- package/src/components-source/dropi-avatars/dropi-avatars.component.ts +24 -0
- package/src/components-source/dropi-badge/dropi-badge.component.html +12 -0
- package/src/components-source/dropi-badge/dropi-badge.component.scss +50 -0
- package/src/components-source/dropi-badge/dropi-badge.component.spec.ts +108 -0
- package/src/components-source/dropi-badge/dropi-badge.component.stories.ts +140 -0
- package/src/components-source/dropi-badge/dropi-badge.component.ts +39 -0
- package/src/components-source/dropi-banner-external/dropi-banner-external.component.html +67 -0
- package/src/components-source/dropi-banner-external/dropi-banner-external.component.scss +46 -0
- package/src/components-source/dropi-banner-external/dropi-banner-external.component.spec.ts +170 -0
- package/src/components-source/dropi-banner-external/dropi-banner-external.component.stories.ts +203 -0
- package/src/components-source/dropi-banner-external/dropi-banner-external.component.ts +204 -0
- package/src/components-source/dropi-breadcrumb/dropi-breadcrumb.component.html +65 -0
- package/src/components-source/dropi-breadcrumb/dropi-breadcrumb.component.scss +65 -0
- package/src/components-source/dropi-breadcrumb/dropi-breadcrumb.component.spec.ts +125 -0
- package/src/components-source/dropi-breadcrumb/dropi-breadcrumb.component.ts +38 -0
- package/src/components-source/dropi-breadcrumb/dropi-breadcrumb.stories.ts +133 -0
- package/src/components-source/dropi-button/dropi-button.component.html +37 -0
- package/src/components-source/dropi-button/dropi-button.component.scss +266 -0
- package/src/components-source/dropi-button/dropi-button.component.spec.ts +264 -0
- package/src/components-source/dropi-button/dropi-button.component.stories.ts +221 -0
- package/src/components-source/dropi-button/dropi-button.component.ts +82 -0
- package/src/components-source/dropi-card-checkbox/dropi-card-checkbox.component.html +24 -0
- package/src/components-source/dropi-card-checkbox/dropi-card-checkbox.component.scss +85 -0
- package/src/components-source/dropi-card-checkbox/dropi-card-checkbox.component.spec.ts +157 -0
- package/src/components-source/dropi-card-checkbox/dropi-card-checkbox.component.stories.ts +209 -0
- package/src/components-source/dropi-card-checkbox/dropi-card-checkbox.component.ts +41 -0
- package/src/components-source/dropi-carousel/dropi-carousel.component.html +57 -0
- package/src/components-source/dropi-carousel/dropi-carousel.component.scss +156 -0
- package/src/components-source/dropi-carousel/dropi-carousel.component.spec.ts +224 -0
- package/src/components-source/dropi-carousel/dropi-carousel.component.ts +266 -0
- package/src/components-source/dropi-carousel/dropi-carousel.stories.ts +365 -0
- package/src/components-source/dropi-checkbox/dropi-checkbox.component.css +39 -0
- package/src/components-source/dropi-checkbox/dropi-checkbox.component.html +18 -0
- package/src/components-source/dropi-checkbox/dropi-checkbox.component.spec.ts +155 -0
- package/src/components-source/dropi-checkbox/dropi-checkbox.component.stories.ts +101 -0
- package/src/components-source/dropi-checkbox/dropi-checkbox.component.ts +25 -0
- package/src/components-source/dropi-chips/dropi-chips.component.html +10 -0
- package/src/components-source/dropi-chips/dropi-chips.component.scss +54 -0
- package/src/components-source/dropi-chips/dropi-chips.component.spec.ts +356 -0
- package/src/components-source/dropi-chips/dropi-chips.component.stories.ts +275 -0
- package/src/components-source/dropi-chips/dropi-chips.component.ts +100 -0
- package/src/components-source/dropi-country-selector/countries.data.ts +239 -0
- package/src/components-source/dropi-country-selector/dropi-country-selector.component.html +59 -0
- package/src/components-source/dropi-country-selector/dropi-country-selector.component.scss +126 -0
- package/src/components-source/dropi-country-selector/dropi-country-selector.component.spec.ts +244 -0
- package/src/components-source/dropi-country-selector/dropi-country-selector.component.stories.ts +117 -0
- package/src/components-source/dropi-country-selector/dropi-country-selector.component.ts +179 -0
- package/src/components-source/dropi-drawer/dropi-drawer.component.html +23 -0
- package/src/components-source/dropi-drawer/dropi-drawer.component.scss +88 -0
- package/src/components-source/dropi-drawer/dropi-drawer.component.spec.ts +84 -0
- package/src/components-source/dropi-drawer/dropi-drawer.component.ts +90 -0
- package/src/components-source/dropi-dropdown/dropi-dropdown.component.html +30 -0
- package/src/components-source/dropi-dropdown/dropi-dropdown.component.scss +58 -0
- package/src/components-source/dropi-dropdown/dropi-dropdown.component.spec.ts +213 -0
- package/src/components-source/dropi-dropdown/dropi-dropdown.component.stories.ts +143 -0
- package/src/components-source/dropi-dropdown/dropi-dropdown.component.ts +53 -0
- package/src/components-source/dropi-favorite-button/dropi-favorite-button.component.html +23 -0
- package/src/components-source/dropi-favorite-button/dropi-favorite-button.component.scss +21 -0
- package/src/components-source/dropi-favorite-button/dropi-favorite-button.component.spec.ts +240 -0
- package/src/components-source/dropi-favorite-button/dropi-favorite-button.component.ts +31 -0
- package/src/components-source/dropi-file-upload/card-view/card-view.component.html +154 -0
- package/src/components-source/dropi-file-upload/card-view/card-view.component.scss +118 -0
- package/src/components-source/dropi-file-upload/card-view/card-view.component.ts +72 -0
- package/src/components-source/dropi-file-upload/drop-zone/drop-zone.coment.stories.ts +179 -0
- package/src/components-source/dropi-file-upload/drop-zone/drop-zone.component.html +111 -0
- package/src/components-source/dropi-file-upload/drop-zone/drop-zone.component.scss +90 -0
- package/src/components-source/dropi-file-upload/drop-zone/drop-zone.component.ts +172 -0
- package/src/components-source/dropi-file-upload/dropi-file-upload.component.html +42 -0
- package/src/components-source/dropi-file-upload/dropi-file-upload.component.scss +31 -0
- package/src/components-source/dropi-file-upload/dropi-file-upload.component.spec.ts +398 -0
- package/src/components-source/dropi-file-upload/dropi-file-upload.component.stories.ts +139 -0
- package/src/components-source/dropi-file-upload/dropi-file-upload.component.ts +329 -0
- package/src/components-source/dropi-file-upload/file-list/file-list.component.html +51 -0
- package/src/components-source/dropi-file-upload/file-list/file-list.component.scss +60 -0
- package/src/components-source/dropi-file-upload/file-list/file-list.component.ts +84 -0
- package/src/components-source/dropi-file-upload/grid-view/grid-view.component.html +77 -0
- package/src/components-source/dropi-file-upload/grid-view/grid-view.component.scss +85 -0
- package/src/components-source/dropi-file-upload/grid-view/grid-view.component.ts +35 -0
- package/src/components-source/dropi-ilustration-icon/dropi-ilustration-icon.component.html +38 -0
- package/src/components-source/dropi-ilustration-icon/dropi-ilustration-icon.component.scss +59 -0
- package/src/components-source/dropi-ilustration-icon/dropi-ilustration-icon.component.spec.ts +214 -0
- package/src/components-source/dropi-ilustration-icon/dropi-ilustration-icon.component.ts +65 -0
- package/src/components-source/dropi-image-overlay/dropi-image-overlay.component.html +54 -0
- package/src/components-source/dropi-image-overlay/dropi-image-overlay.component.scss +210 -0
- package/src/components-source/dropi-image-overlay/dropi-image-overlay.component.spec.ts +145 -0
- package/src/components-source/dropi-image-overlay/dropi-image-overlay.component.ts +76 -0
- package/src/components-source/dropi-image-overlay/dropi-image-overlay.stories.ts +267 -0
- package/src/components-source/dropi-languages-selector/dropi-languages-selector.component.html +17 -0
- package/src/components-source/dropi-languages-selector/dropi-languages-selector.component.scss +82 -0
- package/src/components-source/dropi-languages-selector/dropi-languages-selector.component.spec.ts +152 -0
- package/src/components-source/dropi-languages-selector/dropi-languages-selector.component.ts +41 -0
- package/src/components-source/dropi-logo/dropi-logo.component.html +3 -0
- package/src/components-source/dropi-logo/dropi-logo.component.scss +20 -0
- package/src/components-source/dropi-logo/dropi-logo.component.spec.ts +274 -0
- package/src/components-source/dropi-logo/dropi-logo.component.ts +24 -0
- package/src/components-source/dropi-modal/dropi-modal-stack.service.ts +75 -0
- package/src/components-source/dropi-modal/dropi-modal.component.html +55 -0
- package/src/components-source/dropi-modal/dropi-modal.component.scss +274 -0
- package/src/components-source/dropi-modal/dropi-modal.component.spec.ts +46 -0
- package/src/components-source/dropi-modal/dropi-modal.component.stories.ts +392 -0
- package/src/components-source/dropi-modal/dropi-modal.component.ts +392 -0
- package/src/components-source/dropi-modal/p-template.directive.ts +11 -0
- package/src/components-source/dropi-navbar/dropi-navbar.component.html +41 -0
- package/src/components-source/dropi-navbar/dropi-navbar.component.scss +227 -0
- package/src/components-source/dropi-navbar/dropi-navbar.component.spec.ts +110 -0
- package/src/components-source/dropi-navbar/dropi-navbar.component.ts +52 -0
- package/src/components-source/dropi-paginator/dropi-paginator.component.html +64 -0
- package/src/components-source/dropi-paginator/dropi-paginator.component.scss +43 -0
- package/src/components-source/dropi-paginator/dropi-paginator.component.spec.ts +285 -0
- package/src/components-source/dropi-paginator/dropi-paginator.component.stories.ts +345 -0
- package/src/components-source/dropi-paginator/dropi-paginator.component.ts +85 -0
- package/src/components-source/dropi-phone-input/dropi-phone-input.component.html +93 -0
- package/src/components-source/dropi-phone-input/dropi-phone-input.component.scss +224 -0
- package/src/components-source/dropi-phone-input/dropi-phone-input.component.spec.ts +376 -0
- package/src/components-source/dropi-phone-input/dropi-phone-input.component.ts +203 -0
- package/src/components-source/dropi-phone-input/numeric-input.directive.ts +17 -0
- package/src/components-source/dropi-radio-button/dropi-radio-button.component.html +8 -0
- package/src/components-source/dropi-radio-button/dropi-radio-button.component.scss +33 -0
- package/src/components-source/dropi-radio-button/dropi-radio-button.component.spec.ts +225 -0
- package/src/components-source/dropi-radio-button/dropi-radio-button.component.ts +48 -0
- package/src/components-source/dropi-search/dropi-search.component.html +124 -0
- package/src/components-source/dropi-search/dropi-search.component.scss +116 -0
- package/src/components-source/dropi-search/dropi-search.component.spec.ts +483 -0
- package/src/components-source/dropi-search/dropi-search.component.stories.ts +267 -0
- package/src/components-source/dropi-search/dropi-search.component.ts +230 -0
- package/src/components-source/dropi-select/dropi-select.component.html +158 -0
- package/src/components-source/dropi-select/dropi-select.component.scss +275 -0
- package/src/components-source/dropi-select/dropi-select.component.spec.ts +386 -0
- package/src/components-source/dropi-select/dropi-select.component.stories.ts +686 -0
- package/src/components-source/dropi-select/dropi-select.component.ts +465 -0
- package/src/components-source/dropi-skeleton/dropi-skeleton.component.html +10 -0
- package/src/components-source/dropi-skeleton/dropi-skeleton.component.scss +28 -0
- package/src/components-source/dropi-skeleton/dropi-skeleton.component.spec.ts +273 -0
- package/src/components-source/dropi-skeleton/dropi-skeleton.component.stories.ts +145 -0
- package/src/components-source/dropi-skeleton/dropi-skeleton.component.ts +30 -0
- package/src/components-source/dropi-steps/dropi-steps.component.html +29 -0
- package/src/components-source/dropi-steps/dropi-steps.component.scss +110 -0
- package/src/components-source/dropi-steps/dropi-steps.component.spec.ts +228 -0
- package/src/components-source/dropi-steps/dropi-steps.component.stories.ts +231 -0
- package/src/components-source/dropi-steps/dropi-steps.component.ts +98 -0
- package/src/components-source/dropi-switch/dropi-switch.component.html +4 -0
- package/src/components-source/dropi-switch/dropi-switch.component.scss +50 -0
- package/src/components-source/dropi-switch/dropi-switch.component.spec.ts +105 -0
- package/src/components-source/dropi-switch/dropi-switch.component.stories.ts +106 -0
- package/src/components-source/dropi-switch/dropi-switch.component.ts +22 -0
- package/src/components-source/dropi-table/dropi-table.component.html +395 -0
- package/src/components-source/dropi-table/dropi-table.component.scss +506 -0
- package/src/components-source/dropi-table/dropi-table.component.spec.ts +578 -0
- package/src/components-source/dropi-table/dropi-table.component.stories.ts +313 -0
- package/src/components-source/dropi-table/dropi-table.component.ts +580 -0
- package/src/components-source/dropi-tag/dropi-tag.component.html +17 -0
- package/src/components-source/dropi-tag/dropi-tag.component.scss +50 -0
- package/src/components-source/dropi-tag/dropi-tag.component.spec.ts +267 -0
- package/src/components-source/dropi-tag/dropi-tag.component.stories.ts +290 -0
- package/src/components-source/dropi-tag/dropi-tag.component.ts +92 -0
- package/src/components-source/dropi-text-area/droip-text-area.component.stories.ts +138 -0
- package/src/components-source/dropi-text-area/dropi-text-area.component.html +63 -0
- package/src/components-source/dropi-text-area/dropi-text-area.component.scss +106 -0
- package/src/components-source/dropi-text-area/dropi-text-area.component.spec.ts +507 -0
- package/src/components-source/dropi-text-area/dropi-text-area.component.ts +80 -0
- package/src/components-source/dropi-tooltip/dropi-tooltip.component.html +70 -0
- package/src/components-source/dropi-tooltip/dropi-tooltip.component.scss +250 -0
- package/src/components-source/dropi-tooltip/dropi-tooltip.component.spec.ts +423 -0
- package/src/components-source/dropi-tooltip/dropi-tooltip.component.ts +153 -0
- package/src/components-source/dropi-youtube-lazy-video/dropi-youtube-lazy-video.component.html +20 -0
- package/src/components-source/dropi-youtube-lazy-video/dropi-youtube-lazy-video.component.scss +63 -0
- package/src/components-source/dropi-youtube-lazy-video/dropi-youtube-lazy-video.component.spec.ts +121 -0
- package/src/components-source/dropi-youtube-lazy-video/dropi-youtube-lazy-video.component.ts +43 -0
- package/src/components-source/dropi-youtube-lazy-video/dropi-youtube-lazy-video.stories.ts +125 -0
- package/src/components-source/empty-state/empty-state.component.html +30 -0
- package/src/components-source/empty-state/empty-state.component.scss +76 -0
- package/src/components-source/empty-state/empty-state.component.spec.ts +244 -0
- package/src/components-source/empty-state/empty-state.component.stories.ts +198 -0
- package/src/components-source/empty-state/empty-state.component.ts +34 -0
- package/src/components-source/file-upload-progress-bar/file-upload-progress-bar.component.html +81 -0
- package/src/components-source/file-upload-progress-bar/file-upload-progress-bar.component.scss +86 -0
- package/src/components-source/file-upload-progress-bar/file-upload-progress-bar.component.spec.ts +27 -0
- package/src/components-source/file-upload-progress-bar/file-upload-progress-bar.component.stories.ts +149 -0
- package/src/components-source/file-upload-progress-bar/file-upload-progress-bar.component.ts +89 -0
- package/src/components-source/foundations/dropi-border-radius-demo/dropi-border-radius-demo.component.scss +32 -0
- package/src/components-source/foundations/dropi-border-radius-demo/dropi-border-radius-demo.component.ts +17 -0
- package/src/components-source/foundations/foundations.component.html +183 -0
- package/src/components-source/foundations/foundations.component.scss +31 -0
- package/src/components-source/foundations/foundations.component.ts +26 -0
- package/src/components-source/icon/icon-names.const.ts +270 -0
- package/src/components-source/icon/icon.component.html +3 -0
- package/src/components-source/icon/icon.component.scss +4 -0
- package/src/components-source/icon/icon.component.spec.ts +304 -0
- package/src/components-source/icon/icon.component.ts +53 -0
- package/src/components-source/index.ts +89 -0
- package/src/components-source/input/input.component.html +97 -0
- package/src/components-source/input/input.component.scss +149 -0
- package/src/components-source/input/input.component.spec.ts +243 -0
- package/src/components-source/input/input.component.stories.ts +269 -0
- package/src/components-source/input/input.component.ts +119 -0
- package/src/components-source/lottie-loader/lottie-loader.component.html +16 -0
- package/src/components-source/lottie-loader/lottie-loader.component.scss +32 -0
- package/src/components-source/lottie-loader/lottie-loader.component.spec.ts +103 -0
- package/src/components-source/lottie-loader/lottie-loader.component.ts +20 -0
- package/src/components-source/otp-send-code/mock-otp-services.ts +214 -0
- package/src/components-source/otp-send-code/otp-send-code.component.html +151 -0
- package/src/components-source/otp-send-code/otp-send-code.component.scss +156 -0
- package/src/components-source/otp-send-code/otp-send-code.component.spec.ts +419 -0
- package/src/components-source/otp-send-code/otp-send-code.component.stories.ts +190 -0
- package/src/components-source/otp-send-code/otp-send-code.component.ts +659 -0
- package/src/components-source/radio-selection-list/radio-selection-list.component.html +107 -0
- package/src/components-source/radio-selection-list/radio-selection-list.component.scss +280 -0
- package/src/components-source/radio-selection-list/radio-selection-list.component.spec.ts +243 -0
- package/src/components-source/radio-selection-list/radio-selection-list.component.stories.ts +313 -0
- package/src/components-source/radio-selection-list/radio-selection-list.component.ts +143 -0
- package/src/components-source/read-more/read-more.component.html +14 -0
- package/src/components-source/read-more/read-more.component.scss +16 -0
- package/src/components-source/read-more/read-more.component.spec.ts +272 -0
- package/src/components-source/read-more/read-more.component.stories.ts +131 -0
- package/src/components-source/read-more/read-more.component.ts +88 -0
- package/src/components-source/sidebar/sidebar.component.html +42 -0
- package/src/components-source/sidebar/sidebar.component.scss +70 -0
- package/src/components-source/sidebar/sidebar.component.spec.ts +354 -0
- package/src/components-source/sidebar/sidebar.component.stories.ts +145 -0
- package/src/components-source/sidebar/sidebar.component.ts +105 -0
- package/src/components-source/simple-stepper/simple-stepper.component.html +17 -0
- package/src/components-source/simple-stepper/simple-stepper.component.scss +117 -0
- package/src/components-source/simple-stepper/simple-stepper.component.spec.ts +348 -0
- package/src/components-source/simple-stepper/simple-stepper.component.stories.ts +104 -0
- package/src/components-source/simple-stepper/simple-stepper.component.ts +69 -0
- package/src/components-source/storybook-doc-components/avatars-storybook/avatars-storybook.component.html +192 -0
- package/src/components-source/storybook-doc-components/avatars-storybook/avatars-storybook.component.scss +15 -0
- package/src/components-source/storybook-doc-components/avatars-storybook/avatars-storybook.component.ts +17 -0
- package/src/components-source/storybook-doc-components/border-radius-storybook/border-radius-storybook.component.html +22 -0
- package/src/components-source/storybook-doc-components/border-radius-storybook/border-radius-storybook.component.scss +0 -0
- package/src/components-source/storybook-doc-components/border-radius-storybook/border-radius-storybook.component.ts +54 -0
- package/src/components-source/storybook-doc-components/breakpoints-and-grids-storybook/breakpoints-and-grids-storybook.component.css +81 -0
- package/src/components-source/storybook-doc-components/breakpoints-and-grids-storybook/breakpoints-and-grids-storybook.component.html +143 -0
- package/src/components-source/storybook-doc-components/breakpoints-and-grids-storybook/breakpoints-and-grids-storybook.component.ts +97 -0
- package/src/components-source/storybook-doc-components/colors-storybook/colors-storybook.component.css +10 -0
- package/src/components-source/storybook-doc-components/colors-storybook/colors-storybook.component.html +63 -0
- package/src/components-source/storybook-doc-components/colors-storybook/colors-storybook.component.ts +542 -0
- package/src/components-source/storybook-doc-components/dropi-modal/dropi-modal.component.html +132 -0
- package/src/components-source/storybook-doc-components/dropi-modal/dropi-modal.component.scss +15 -0
- package/src/components-source/storybook-doc-components/dropi-modal/dropi-modal.component.ts +67 -0
- package/src/components-source/storybook-doc-components/dropi-toast/dropi-toast.component.html +156 -0
- package/src/components-source/storybook-doc-components/dropi-toast/dropi-toast.component.scss +13 -0
- package/src/components-source/storybook-doc-components/dropi-toast/dropi-toast.component.ts +55 -0
- package/src/components-source/storybook-doc-components/flags-storybook/flags-storybook.component.css +0 -0
- package/src/components-source/storybook-doc-components/flags-storybook/flags-storybook.component.html +99 -0
- package/src/components-source/storybook-doc-components/flags-storybook/flags-storybook.component.ts +19 -0
- package/src/components-source/storybook-doc-components/icons-storybook/icons-storybook.component.css +82 -0
- package/src/components-source/storybook-doc-components/icons-storybook/icons-storybook.component.html +111 -0
- package/src/components-source/storybook-doc-components/icons-storybook/icons-storybook.component.ts +196 -0
- package/src/components-source/storybook-doc-components/logo-storybook/logo-foundations.component.ts +19 -0
- package/src/components-source/storybook-doc-components/logo-storybook/logo-storybook.component.css +0 -0
- package/src/components-source/storybook-doc-components/logo-storybook/logo-storybook.component.html +104 -0
- package/src/components-source/storybook-doc-components/lustration-storybook/lustration-storybook.component.css +0 -0
- package/src/components-source/storybook-doc-components/lustration-storybook/lustration-storybook.component.html +218 -0
- package/src/components-source/storybook-doc-components/lustration-storybook/lustration-storybook.component.ts +20 -0
- package/src/components-source/storybook-doc-components/shadow-storybook/shadow-storybook.component.html +21 -0
- package/src/components-source/storybook-doc-components/shadow-storybook/shadow-storybook.component.scss +0 -0
- package/src/components-source/storybook-doc-components/shadow-storybook/shadow-storybook.component.ts +66 -0
- package/src/components-source/storybook-doc-components/spacing-storybook/spacing-storybook.component.html +33 -0
- package/src/components-source/storybook-doc-components/spacing-storybook/spacing-storybook.component.scss +0 -0
- package/src/components-source/storybook-doc-components/spacing-storybook/spacing-storybook.component.ts +37 -0
- package/src/components-source/storybook-doc-components/story-page/story-page.component.html +74 -0
- package/src/components-source/storybook-doc-components/story-page/story-page.component.scss +103 -0
- package/src/components-source/storybook-doc-components/story-page/story-page.component.ts +424 -0
- package/src/components-source/storybook-doc-components/template-breakpoint-storybook/template-breakpoint-storybook.component.html +35 -0
- package/src/components-source/storybook-doc-components/template-breakpoint-storybook/template-breakpoint-storybook.component.scss +64 -0
- package/src/components-source/storybook-doc-components/template-breakpoint-storybook/template-breakpoint-storybook.component.ts +71 -0
- package/src/components-source/storybook-doc-components/tillte-table-documentation/tillte-table-documentation.component.html +44 -0
- package/src/components-source/storybook-doc-components/tillte-table-documentation/tillte-table-documentation.component.scss +270 -0
- package/src/components-source/storybook-doc-components/tillte-table-documentation/tillte-table-documentation.component.ts +153 -0
- package/src/components-source/tabs/tabs.component.html +26 -0
- package/src/components-source/tabs/tabs.component.scss +62 -0
- package/src/components-source/tabs/tabs.component.spec.ts +212 -0
- package/src/components-source/tabs/tabs.component.stories.ts +203 -0
- package/src/components-source/tabs/tabs.component.ts +138 -0
- package/src/components-source/tag-type-product/tag-type-product.component.html +1 -0
- package/src/components-source/tag-type-product/tag-type-product.component.scss +10 -0
- package/src/components-source/tag-type-product/tag-type-product.component.spec.ts +38 -0
- package/src/components-source/tag-type-product/tag-type-product.component.ts +9 -0
- package/src/components-source/toast/toast.component.html +37 -0
- package/src/components-source/toast/toast.component.scss +142 -0
- package/src/components-source/toast/toast.component.spec.ts +368 -0
- package/src/components-source/toast/toast.component.ts +59 -0
- package/src/components-source/toast/toast.stories.ts +69 -0
- package/src/components-source/tooltip/tooltip.component.html +46 -0
- package/src/components-source/tooltip/tooltip.component.scss +44 -0
- package/src/components-source/tooltip/tooltip.component.spec.ts +327 -0
- package/src/components-source/tooltip/tooltip.component.ts +24 -0
- package/src/components-source/ui-dropi.module.ts +125 -0
- package/src/components-source/ui-inventory.json +1138 -0
- package/src/components-source/vertical-steps/vertical-steps.component.html +35 -0
- package/src/components-source/vertical-steps/vertical-steps.component.scss +143 -0
- package/src/components-source/vertical-steps/vertical-steps.component.spec.ts +121 -0
- package/src/components-source/vertical-steps/vertical-steps.component.stories.ts +216 -0
- package/src/components-source/vertical-steps/vertical-steps.component.ts +151 -0
- package/src/index.ts +31 -0
- package/src/lib/bootstrap.ts +28 -0
- package/src/lib/dropi-ui-elements/dropi-ui-elements.component.html +1 -0
- package/src/lib/dropi-ui-elements/dropi-ui-elements.component.scss +0 -0
- package/src/lib/dropi-ui-elements/dropi-ui-elements.component.spec.ts +21 -0
- package/src/lib/dropi-ui-elements/dropi-ui-elements.component.ts +9 -0
- package/src/lib/elements-registry.ts +66 -0
- package/src/lib/elements.module.ts +22 -0
- package/src/styles.scss +152 -0
- package/src/test-setup.ts +6 -0
- package/tsconfig.json +28 -0
- package/tsconfig.lib.json +18 -0
- package/tsconfig.lib.prod.json +9 -0
- package/tsconfig.spec.json +12 -0
|
@@ -0,0 +1,1138 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generatedAt": "2025-11-24T19:10:03.627Z",
|
|
3
|
+
"count": 81,
|
|
4
|
+
"components": [
|
|
5
|
+
{
|
|
6
|
+
"className": "AccordionComponent",
|
|
7
|
+
"selector": "app-accordion",
|
|
8
|
+
"path": "accordion/accordion.component.ts",
|
|
9
|
+
"inputs": [
|
|
10
|
+
"multiple"
|
|
11
|
+
],
|
|
12
|
+
"outputs": [],
|
|
13
|
+
"figmaNodeId": null
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"className": "AccordionItemComponent",
|
|
17
|
+
"selector": "app-accordion-item",
|
|
18
|
+
"path": "accordion/accordion-item/accordion-item.component.ts",
|
|
19
|
+
"inputs": [
|
|
20
|
+
"sectionTitle",
|
|
21
|
+
"index"
|
|
22
|
+
],
|
|
23
|
+
"outputs": [],
|
|
24
|
+
"figmaNodeId": null
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"className": "AlertComponent",
|
|
28
|
+
"selector": "app-alert",
|
|
29
|
+
"path": "alert/alert.component.ts",
|
|
30
|
+
"inputs": [
|
|
31
|
+
"message",
|
|
32
|
+
"type",
|
|
33
|
+
"state",
|
|
34
|
+
"dismissable",
|
|
35
|
+
"showButton",
|
|
36
|
+
"buttonText",
|
|
37
|
+
"anchorText",
|
|
38
|
+
"anchorUrl",
|
|
39
|
+
"showAlert",
|
|
40
|
+
"textLink",
|
|
41
|
+
"clickedText",
|
|
42
|
+
"linkUrl"
|
|
43
|
+
],
|
|
44
|
+
"outputs": [
|
|
45
|
+
"onClose",
|
|
46
|
+
"onButtonClick",
|
|
47
|
+
"onClickLink"
|
|
48
|
+
],
|
|
49
|
+
"figmaNodeId": null
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"className": "AlertModalComponent",
|
|
53
|
+
"selector": "app-alert-modal",
|
|
54
|
+
"path": "alert-modal/alert-modal.component.ts",
|
|
55
|
+
"inputs": [
|
|
56
|
+
"visible",
|
|
57
|
+
"params",
|
|
58
|
+
"loading",
|
|
59
|
+
"isStep",
|
|
60
|
+
"contentTemplate"
|
|
61
|
+
],
|
|
62
|
+
"outputs": [
|
|
63
|
+
"modalOpenChange",
|
|
64
|
+
"primaryButtonEvent",
|
|
65
|
+
"secondaryButtonEvent",
|
|
66
|
+
"onHide"
|
|
67
|
+
],
|
|
68
|
+
"figmaNodeId": null
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"className": "AvatarsStorybookComponent",
|
|
72
|
+
"selector": "app-avatars-storybook",
|
|
73
|
+
"path": "storybook-doc-components/avatars-storybook/avatars-storybook.component.ts",
|
|
74
|
+
"inputs": [],
|
|
75
|
+
"outputs": [],
|
|
76
|
+
"figmaNodeId": null
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"className": "BorderRadiusStorybookComponent",
|
|
80
|
+
"selector": "app-border-radius-storybook",
|
|
81
|
+
"path": "storybook-doc-components/border-radius-storybook/border-radius-storybook.component.ts",
|
|
82
|
+
"inputs": [],
|
|
83
|
+
"outputs": [],
|
|
84
|
+
"figmaNodeId": null
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"className": "BreadcrumbComponent",
|
|
88
|
+
"selector": "app-breadcrumb",
|
|
89
|
+
"path": "breadcrumb/breadcrumb.component.ts",
|
|
90
|
+
"inputs": [
|
|
91
|
+
"items",
|
|
92
|
+
"imageIcon",
|
|
93
|
+
"homeRoute"
|
|
94
|
+
],
|
|
95
|
+
"outputs": [],
|
|
96
|
+
"figmaNodeId": null
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"className": "BreakpointsAndGridsStorybookComponent",
|
|
100
|
+
"selector": "app-breakpoints-and-grids-storybook",
|
|
101
|
+
"path": "storybook-doc-components/breakpoints-and-grids-storybook/breakpoints-and-grids-storybook.component.ts",
|
|
102
|
+
"inputs": [],
|
|
103
|
+
"outputs": [],
|
|
104
|
+
"figmaNodeId": null
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"className": "CardSectionComponent",
|
|
108
|
+
"selector": "app-card-section",
|
|
109
|
+
"path": "card-section/card-section.component.ts",
|
|
110
|
+
"inputs": [
|
|
111
|
+
"title",
|
|
112
|
+
"description",
|
|
113
|
+
"typeElement",
|
|
114
|
+
"type",
|
|
115
|
+
"isChecked"
|
|
116
|
+
],
|
|
117
|
+
"outputs": [
|
|
118
|
+
"onChange",
|
|
119
|
+
"onClick"
|
|
120
|
+
],
|
|
121
|
+
"figmaNodeId": null
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"className": "CardViewComponent",
|
|
125
|
+
"selector": "app-card-view",
|
|
126
|
+
"path": "dropi-file-upload/card-view/card-view.component.ts",
|
|
127
|
+
"inputs": [
|
|
128
|
+
"fileItem",
|
|
129
|
+
"onlyView"
|
|
130
|
+
],
|
|
131
|
+
"outputs": [
|
|
132
|
+
"action"
|
|
133
|
+
],
|
|
134
|
+
"figmaNodeId": null
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"className": "CheckboxSelectionListComponent",
|
|
138
|
+
"selector": "app-checkbox-selection-list",
|
|
139
|
+
"path": "checkbox-selection-list/checkbox-selection-list.component.ts",
|
|
140
|
+
"inputs": [
|
|
141
|
+
"options",
|
|
142
|
+
"showFilter",
|
|
143
|
+
"filterPlaceholder",
|
|
144
|
+
"searchDelay",
|
|
145
|
+
"showNotFound",
|
|
146
|
+
"notFoundMessage",
|
|
147
|
+
"multiSelect"
|
|
148
|
+
],
|
|
149
|
+
"outputs": [
|
|
150
|
+
"onSearch",
|
|
151
|
+
"checkedValues"
|
|
152
|
+
],
|
|
153
|
+
"figmaNodeId": null
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"className": "ColorPickerComponent",
|
|
157
|
+
"selector": "app-color-picker",
|
|
158
|
+
"path": "color-picker/color-picker.component.ts",
|
|
159
|
+
"inputs": [
|
|
160
|
+
"currentColor",
|
|
161
|
+
"position"
|
|
162
|
+
],
|
|
163
|
+
"outputs": [
|
|
164
|
+
"colorChange"
|
|
165
|
+
],
|
|
166
|
+
"figmaNodeId": null
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"className": "ColorsStorybookComponent",
|
|
170
|
+
"selector": "app-colors-storybook",
|
|
171
|
+
"path": "storybook-doc-components/colors-storybook/colors-storybook.component.ts",
|
|
172
|
+
"inputs": [
|
|
173
|
+
"tittle"
|
|
174
|
+
],
|
|
175
|
+
"outputs": [],
|
|
176
|
+
"figmaNodeId": null
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"className": "CountryFlagsComponent",
|
|
180
|
+
"selector": "app-country-flags",
|
|
181
|
+
"path": "country-flags/country-flags.component.ts",
|
|
182
|
+
"inputs": [
|
|
183
|
+
"country",
|
|
184
|
+
"style"
|
|
185
|
+
],
|
|
186
|
+
"outputs": [],
|
|
187
|
+
"figmaNodeId": null
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"className": "DatePickerComponent",
|
|
191
|
+
"selector": "app-date-picker",
|
|
192
|
+
"path": "date-picker/date-picker.component.ts",
|
|
193
|
+
"inputs": [
|
|
194
|
+
"showTime",
|
|
195
|
+
"minDate",
|
|
196
|
+
"maxDate",
|
|
197
|
+
"loading",
|
|
198
|
+
"setRight",
|
|
199
|
+
"label",
|
|
200
|
+
"placeholder",
|
|
201
|
+
"showIcon",
|
|
202
|
+
"required",
|
|
203
|
+
"isInvalid",
|
|
204
|
+
"disabled",
|
|
205
|
+
"selectionMode",
|
|
206
|
+
"filters",
|
|
207
|
+
"set"
|
|
208
|
+
],
|
|
209
|
+
"outputs": [
|
|
210
|
+
"onChangeDate",
|
|
211
|
+
"onClosePanel",
|
|
212
|
+
"sendFilters"
|
|
213
|
+
],
|
|
214
|
+
"figmaNodeId": null
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"className": "DatePickerRangeComponent",
|
|
218
|
+
"selector": "app-date-picker-range",
|
|
219
|
+
"path": "date-picker-range/date-picker-range.component.ts",
|
|
220
|
+
"inputs": [
|
|
221
|
+
"startDate",
|
|
222
|
+
"showLabel",
|
|
223
|
+
"placeholder",
|
|
224
|
+
"endDate",
|
|
225
|
+
"limit",
|
|
226
|
+
"minDateLimit",
|
|
227
|
+
"maxDateLimit",
|
|
228
|
+
"loading",
|
|
229
|
+
"setRight",
|
|
230
|
+
"maxDaysRange",
|
|
231
|
+
"appendTo"
|
|
232
|
+
],
|
|
233
|
+
"outputs": [
|
|
234
|
+
"startDateChange",
|
|
235
|
+
"endDateChange"
|
|
236
|
+
],
|
|
237
|
+
"figmaNodeId": null
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"className": "DropZoneComponent",
|
|
241
|
+
"selector": "app-drop-zone",
|
|
242
|
+
"path": "dropi-file-upload/drop-zone/drop-zone.component.ts",
|
|
243
|
+
"inputs": [
|
|
244
|
+
"multiple",
|
|
245
|
+
"maxFiles",
|
|
246
|
+
"maxFileSizeMB",
|
|
247
|
+
"accept",
|
|
248
|
+
"compress",
|
|
249
|
+
"maxHeight",
|
|
250
|
+
"maxWidth",
|
|
251
|
+
"isNotStore",
|
|
252
|
+
"textButton",
|
|
253
|
+
"textFileUpload",
|
|
254
|
+
"uploadStatus",
|
|
255
|
+
"disabled"
|
|
256
|
+
],
|
|
257
|
+
"outputs": [
|
|
258
|
+
"addFiles",
|
|
259
|
+
"fileCleared"
|
|
260
|
+
],
|
|
261
|
+
"figmaNodeId": null
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"className": "DropiBannerExternalComponent",
|
|
265
|
+
"selector": "app-dropi-banner-external",
|
|
266
|
+
"path": "dropi-banner-external/dropi-banner-external.component.ts",
|
|
267
|
+
"inputs": [
|
|
268
|
+
"slugName",
|
|
269
|
+
"viewOnWhiteBrand",
|
|
270
|
+
"viewOnlyCountries"
|
|
271
|
+
],
|
|
272
|
+
"outputs": [
|
|
273
|
+
"bannerClick",
|
|
274
|
+
"isVisible"
|
|
275
|
+
],
|
|
276
|
+
"figmaNodeId": null
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"className": "DropiBreadcrumbComponent",
|
|
280
|
+
"selector": "app-dropi-breadcrumb",
|
|
281
|
+
"path": "dropi-breadcrumb/dropi-breadcrumb.component.ts",
|
|
282
|
+
"inputs": [
|
|
283
|
+
"items",
|
|
284
|
+
"homeRoute",
|
|
285
|
+
"homeIconName",
|
|
286
|
+
"lastItemClickable"
|
|
287
|
+
],
|
|
288
|
+
"outputs": [],
|
|
289
|
+
"figmaNodeId": null
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"className": "DropiCardCheckboxComponent",
|
|
293
|
+
"selector": "app-dropi-card-checkbox",
|
|
294
|
+
"path": "dropi-card-checkbox/dropi-card-checkbox.component.ts",
|
|
295
|
+
"inputs": [
|
|
296
|
+
"type",
|
|
297
|
+
"title",
|
|
298
|
+
"description",
|
|
299
|
+
"extraInfo",
|
|
300
|
+
"extraInfoDescription",
|
|
301
|
+
"state",
|
|
302
|
+
"disabled"
|
|
303
|
+
],
|
|
304
|
+
"outputs": [
|
|
305
|
+
"onChange"
|
|
306
|
+
],
|
|
307
|
+
"figmaNodeId": null
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"className": "DropiCheckboxComponent",
|
|
311
|
+
"selector": "app-dropi-checkbox",
|
|
312
|
+
"path": "dropi-checkbox/dropi-checkbox.component.ts",
|
|
313
|
+
"inputs": [
|
|
314
|
+
"checked",
|
|
315
|
+
"disabled"
|
|
316
|
+
],
|
|
317
|
+
"outputs": [
|
|
318
|
+
"onChange"
|
|
319
|
+
],
|
|
320
|
+
"figmaNodeId": null
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"className": "DropiChipsComponent",
|
|
324
|
+
"selector": "app-dropi-chips",
|
|
325
|
+
"path": "dropi-chips/dropi-chips.component.ts",
|
|
326
|
+
"inputs": [
|
|
327
|
+
"style",
|
|
328
|
+
"type",
|
|
329
|
+
"urlImg",
|
|
330
|
+
"showIcon",
|
|
331
|
+
"icon"
|
|
332
|
+
],
|
|
333
|
+
"outputs": [],
|
|
334
|
+
"figmaNodeId": null
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"className": "DropiCountrySelectorComponent",
|
|
338
|
+
"selector": "app-dropi-country-selector",
|
|
339
|
+
"path": "dropi-country-selector/dropi-country-selector.component.ts",
|
|
340
|
+
"inputs": [
|
|
341
|
+
"selectProperties",
|
|
342
|
+
"disabled",
|
|
343
|
+
"set",
|
|
344
|
+
"searchTerm"
|
|
345
|
+
],
|
|
346
|
+
"outputs": [
|
|
347
|
+
"onChangeSelect"
|
|
348
|
+
],
|
|
349
|
+
"figmaNodeId": null
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"className": "DropiDropdownComponent",
|
|
353
|
+
"selector": "app-dropi-dropdown",
|
|
354
|
+
"path": "dropi-dropdown/dropi-dropdown.component.ts",
|
|
355
|
+
"inputs": [
|
|
356
|
+
"height",
|
|
357
|
+
"options",
|
|
358
|
+
"valueModel",
|
|
359
|
+
"isInSelect",
|
|
360
|
+
"parameters"
|
|
361
|
+
],
|
|
362
|
+
"outputs": [
|
|
363
|
+
"modelChange"
|
|
364
|
+
],
|
|
365
|
+
"figmaNodeId": null
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"className": "DropiFileUploadComponent",
|
|
369
|
+
"selector": "app-dropi-file-upload",
|
|
370
|
+
"path": "dropi-file-upload/dropi-file-upload.component.ts",
|
|
371
|
+
"inputs": [
|
|
372
|
+
"params"
|
|
373
|
+
],
|
|
374
|
+
"outputs": [
|
|
375
|
+
"uploadedUrlsChange"
|
|
376
|
+
],
|
|
377
|
+
"figmaNodeId": null
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"className": "DropiModalStoryComponent",
|
|
381
|
+
"selector": "app-dropi-modal",
|
|
382
|
+
"path": "storybook-doc-components/dropi-modal/dropi-modal.component.ts",
|
|
383
|
+
"inputs": [],
|
|
384
|
+
"outputs": [],
|
|
385
|
+
"figmaNodeId": null
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"className": "DropiNavBarComponent",
|
|
389
|
+
"selector": "app-dropi-navbar",
|
|
390
|
+
"path": "dropi-navbar/dropi-navbar.component.ts",
|
|
391
|
+
"inputs": [
|
|
392
|
+
"data",
|
|
393
|
+
"title"
|
|
394
|
+
],
|
|
395
|
+
"outputs": [
|
|
396
|
+
"clickLoadItem"
|
|
397
|
+
],
|
|
398
|
+
"figmaNodeId": null
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"className": "DropiPaginatorComponent",
|
|
402
|
+
"selector": "app-dropi-paginator",
|
|
403
|
+
"path": "dropi-paginator/dropi-paginator.component.ts",
|
|
404
|
+
"inputs": [
|
|
405
|
+
"totalPages",
|
|
406
|
+
"currentPage",
|
|
407
|
+
"disabled",
|
|
408
|
+
"maxVisiblePages"
|
|
409
|
+
],
|
|
410
|
+
"outputs": [
|
|
411
|
+
"pageChange"
|
|
412
|
+
],
|
|
413
|
+
"figmaNodeId": null
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"className": "DropiPhoneInputComponent",
|
|
417
|
+
"selector": "app-dropi-phone-input",
|
|
418
|
+
"path": "dropi-phone-input/dropi-phone-input.component.ts",
|
|
419
|
+
"inputs": [
|
|
420
|
+
"set",
|
|
421
|
+
"ngModelPhone",
|
|
422
|
+
"phoneNumberPlaceholder",
|
|
423
|
+
"isValidPhone",
|
|
424
|
+
"selectedOption",
|
|
425
|
+
"selectProperties",
|
|
426
|
+
"validateOnInit",
|
|
427
|
+
"disabledInput"
|
|
428
|
+
],
|
|
429
|
+
"outputs": [
|
|
430
|
+
"ngModelChangeCod",
|
|
431
|
+
"ngModelChangePhone",
|
|
432
|
+
"verifiedField",
|
|
433
|
+
"onChangeSelect"
|
|
434
|
+
],
|
|
435
|
+
"figmaNodeId": null
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"className": "DropiRadioButtonComponent",
|
|
439
|
+
"selector": "app-dropi-radio-button",
|
|
440
|
+
"path": "dropi-radio-button/dropi-radio-button.component.ts",
|
|
441
|
+
"inputs": [
|
|
442
|
+
"label",
|
|
443
|
+
"name",
|
|
444
|
+
"id",
|
|
445
|
+
"checked",
|
|
446
|
+
"resetTrigger"
|
|
447
|
+
],
|
|
448
|
+
"outputs": [
|
|
449
|
+
"onChange"
|
|
450
|
+
],
|
|
451
|
+
"figmaNodeId": null
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"className": "DropiSearchComponent",
|
|
455
|
+
"selector": "app-dropi-search",
|
|
456
|
+
"path": "dropi-search/dropi-search.component.ts",
|
|
457
|
+
"inputs": [
|
|
458
|
+
"type",
|
|
459
|
+
"placeholder",
|
|
460
|
+
"textInput",
|
|
461
|
+
"typeInput",
|
|
462
|
+
"maxLength",
|
|
463
|
+
"showIcon",
|
|
464
|
+
"dataToSearch",
|
|
465
|
+
"dataName",
|
|
466
|
+
"position",
|
|
467
|
+
"heightOverlay",
|
|
468
|
+
"model",
|
|
469
|
+
"label"
|
|
470
|
+
],
|
|
471
|
+
"outputs": [
|
|
472
|
+
"modelChange",
|
|
473
|
+
"onBlur",
|
|
474
|
+
"onInput",
|
|
475
|
+
"onKeyEnter",
|
|
476
|
+
"onChange",
|
|
477
|
+
"onClear"
|
|
478
|
+
],
|
|
479
|
+
"figmaNodeId": null
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"className": "DropiSelectComponent",
|
|
483
|
+
"selector": "app-dropi-select",
|
|
484
|
+
"path": "dropi-select/dropi-select.component.ts",
|
|
485
|
+
"inputs": [
|
|
486
|
+
"selectProperties",
|
|
487
|
+
"disabled"
|
|
488
|
+
],
|
|
489
|
+
"outputs": [
|
|
490
|
+
"onClear",
|
|
491
|
+
"onChangeSelect",
|
|
492
|
+
"scrolledToEnd",
|
|
493
|
+
"onKeyEnter"
|
|
494
|
+
],
|
|
495
|
+
"figmaNodeId": null
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"className": "DropiSkeletonComponent",
|
|
499
|
+
"selector": "app-dropi-skeleton",
|
|
500
|
+
"path": "dropi-skeleton/dropi-skeleton.component.ts",
|
|
501
|
+
"inputs": [
|
|
502
|
+
"width",
|
|
503
|
+
"height",
|
|
504
|
+
"radius",
|
|
505
|
+
"baseColor"
|
|
506
|
+
],
|
|
507
|
+
"outputs": [],
|
|
508
|
+
"figmaNodeId": null
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"className": "DropiTableComponent",
|
|
512
|
+
"selector": "app-dropi-table",
|
|
513
|
+
"path": "dropi-table/dropi-table.component.ts",
|
|
514
|
+
"inputs": [
|
|
515
|
+
"headers",
|
|
516
|
+
"data",
|
|
517
|
+
"childData",
|
|
518
|
+
"visibleRowsChildrens",
|
|
519
|
+
"dropiTableConfiguration",
|
|
520
|
+
"dropiTableBackendParams",
|
|
521
|
+
"loading"
|
|
522
|
+
],
|
|
523
|
+
"outputs": [
|
|
524
|
+
"rowsSelected",
|
|
525
|
+
"actionClicked",
|
|
526
|
+
"onPageChange",
|
|
527
|
+
"onSizeChange",
|
|
528
|
+
"onSortChange",
|
|
529
|
+
"expandChildren"
|
|
530
|
+
],
|
|
531
|
+
"figmaNodeId": null
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"className": "DropiTagComponent",
|
|
535
|
+
"selector": "app-dropi-tag",
|
|
536
|
+
"path": "dropi-tag/dropi-tag.component.ts",
|
|
537
|
+
"inputs": [
|
|
538
|
+
"type",
|
|
539
|
+
"state",
|
|
540
|
+
"showIcon",
|
|
541
|
+
"icon",
|
|
542
|
+
"text"
|
|
543
|
+
],
|
|
544
|
+
"outputs": [],
|
|
545
|
+
"figmaNodeId": null
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"className": "DropiTextAreaComponent",
|
|
549
|
+
"selector": "app-dropi-text-area",
|
|
550
|
+
"path": "dropi-text-area/dropi-text-area.component.ts",
|
|
551
|
+
"inputs": [
|
|
552
|
+
"textAreaProperties",
|
|
553
|
+
"disabled",
|
|
554
|
+
"showObligatoryAsterisk"
|
|
555
|
+
],
|
|
556
|
+
"outputs": [],
|
|
557
|
+
"figmaNodeId": null
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"className": "DropiToastStoryComponent",
|
|
561
|
+
"selector": "app-dropi-toast",
|
|
562
|
+
"path": "storybook-doc-components/dropi-toast/dropi-toast.component.ts",
|
|
563
|
+
"inputs": [],
|
|
564
|
+
"outputs": [],
|
|
565
|
+
"figmaNodeId": null
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"className": "EmptyStateComponent",
|
|
569
|
+
"selector": "app-empty-state",
|
|
570
|
+
"path": "empty-state/empty-state.component.ts",
|
|
571
|
+
"inputs": [
|
|
572
|
+
"buttonText",
|
|
573
|
+
"description",
|
|
574
|
+
"buttonSeverity",
|
|
575
|
+
"title"
|
|
576
|
+
],
|
|
577
|
+
"outputs": [
|
|
578
|
+
"buttonClickEvent"
|
|
579
|
+
],
|
|
580
|
+
"figmaNodeId": null
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"className": "FileListComponent",
|
|
584
|
+
"selector": "app-file-list",
|
|
585
|
+
"path": "dropi-file-upload/file-list/file-list.component.ts",
|
|
586
|
+
"inputs": [
|
|
587
|
+
"files",
|
|
588
|
+
"onlyView",
|
|
589
|
+
"previewType",
|
|
590
|
+
"maxFiles",
|
|
591
|
+
"addButton"
|
|
592
|
+
],
|
|
593
|
+
"outputs": [
|
|
594
|
+
"action"
|
|
595
|
+
],
|
|
596
|
+
"figmaNodeId": null
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"className": "FileUploadProgressBarComponent",
|
|
600
|
+
"selector": "app-file-upload-progress-bar",
|
|
601
|
+
"path": "file-upload-progress-bar/file-upload-progress-bar.component.ts",
|
|
602
|
+
"inputs": [
|
|
603
|
+
"textFile",
|
|
604
|
+
"progress",
|
|
605
|
+
"type",
|
|
606
|
+
"ulrImage",
|
|
607
|
+
"isPreview"
|
|
608
|
+
],
|
|
609
|
+
"outputs": [
|
|
610
|
+
"deleteFile",
|
|
611
|
+
"uploadComplete",
|
|
612
|
+
"viewFile"
|
|
613
|
+
],
|
|
614
|
+
"figmaNodeId": null
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"className": "FlagsStorybookComponent",
|
|
618
|
+
"selector": "app-flags-storybook",
|
|
619
|
+
"path": "storybook-doc-components/flags-storybook/flags-storybook.component.ts",
|
|
620
|
+
"inputs": [],
|
|
621
|
+
"outputs": [],
|
|
622
|
+
"figmaNodeId": null
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"className": "FoundationsComponent",
|
|
626
|
+
"selector": "app-foundations",
|
|
627
|
+
"path": "foundations/foundations.component.ts",
|
|
628
|
+
"inputs": [],
|
|
629
|
+
"outputs": [],
|
|
630
|
+
"figmaNodeId": null
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"className": "GridViewComponent",
|
|
634
|
+
"selector": "app-grid-view",
|
|
635
|
+
"path": "dropi-file-upload/grid-view/grid-view.component.ts",
|
|
636
|
+
"inputs": [
|
|
637
|
+
"fileItem"
|
|
638
|
+
],
|
|
639
|
+
"outputs": [
|
|
640
|
+
"action"
|
|
641
|
+
],
|
|
642
|
+
"figmaNodeId": null
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"className": "IconComponent",
|
|
646
|
+
"selector": "app-icon",
|
|
647
|
+
"path": "icon/icon.component.ts",
|
|
648
|
+
"inputs": [
|
|
649
|
+
"name",
|
|
650
|
+
"width",
|
|
651
|
+
"height",
|
|
652
|
+
"color"
|
|
653
|
+
],
|
|
654
|
+
"outputs": [],
|
|
655
|
+
"figmaNodeId": null
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"className": "IconsStorybookComponent",
|
|
659
|
+
"selector": "app-icons-storybook",
|
|
660
|
+
"path": "storybook-doc-components/icons-storybook/icons-storybook.component.ts",
|
|
661
|
+
"inputs": [],
|
|
662
|
+
"outputs": [],
|
|
663
|
+
"figmaNodeId": null
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"className": "InputComponent",
|
|
667
|
+
"selector": "app-input",
|
|
668
|
+
"path": "input/input.component.ts",
|
|
669
|
+
"inputs": [
|
|
670
|
+
"inputProperties",
|
|
671
|
+
"disabled",
|
|
672
|
+
"showObligatoryAsterisk",
|
|
673
|
+
"fixedLabel"
|
|
674
|
+
],
|
|
675
|
+
"outputs": [],
|
|
676
|
+
"figmaNodeId": null
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"className": "LogoStorybookComponent",
|
|
680
|
+
"selector": "app-logo-storybook",
|
|
681
|
+
"path": "storybook-doc-components/logo-storybook/logo-foundations.component.ts",
|
|
682
|
+
"inputs": [],
|
|
683
|
+
"outputs": [],
|
|
684
|
+
"figmaNodeId": null
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"className": "LottieLoaderComponent",
|
|
688
|
+
"selector": "app-lottie-loader",
|
|
689
|
+
"path": "lottie-loader/lottie-loader.component.ts",
|
|
690
|
+
"inputs": [
|
|
691
|
+
"visible",
|
|
692
|
+
"loadingAnimation",
|
|
693
|
+
"title",
|
|
694
|
+
"message"
|
|
695
|
+
],
|
|
696
|
+
"outputs": [],
|
|
697
|
+
"figmaNodeId": null
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"className": "LustrationStorybookComponent",
|
|
701
|
+
"selector": "app-lustration-storybook",
|
|
702
|
+
"path": "storybook-doc-components/lustration-storybook/lustration-storybook.component.ts",
|
|
703
|
+
"inputs": [],
|
|
704
|
+
"outputs": [],
|
|
705
|
+
"figmaNodeId": null
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"className": "RadioSelectionListComponent",
|
|
709
|
+
"selector": "app-radio-selection-list",
|
|
710
|
+
"path": "radio-selection-list/radio-selection-list.component.ts",
|
|
711
|
+
"inputs": [
|
|
712
|
+
"extraContent",
|
|
713
|
+
"withExtraContentId",
|
|
714
|
+
"options",
|
|
715
|
+
"typeLayout",
|
|
716
|
+
"alwaysShowDescription",
|
|
717
|
+
"selectedOption",
|
|
718
|
+
"showFilter",
|
|
719
|
+
"filterPlaceholder",
|
|
720
|
+
"searchDelay"
|
|
721
|
+
],
|
|
722
|
+
"outputs": [
|
|
723
|
+
"valueChange",
|
|
724
|
+
"onSearch"
|
|
725
|
+
],
|
|
726
|
+
"figmaNodeId": null
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"className": "ReadMoreComponent",
|
|
730
|
+
"selector": "app-read-more",
|
|
731
|
+
"path": "read-more/read-more.component.ts",
|
|
732
|
+
"inputs": [
|
|
733
|
+
"text",
|
|
734
|
+
"maxWords",
|
|
735
|
+
"textStyle",
|
|
736
|
+
"buttonStyle",
|
|
737
|
+
"showSeeLess"
|
|
738
|
+
],
|
|
739
|
+
"outputs": [],
|
|
740
|
+
"figmaNodeId": null
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"className": "ShadowStorybookComponent",
|
|
744
|
+
"selector": "app-shadow-storybook",
|
|
745
|
+
"path": "storybook-doc-components/shadow-storybook/shadow-storybook.component.ts",
|
|
746
|
+
"inputs": [],
|
|
747
|
+
"outputs": [],
|
|
748
|
+
"figmaNodeId": null
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"className": "SidebarComponent",
|
|
752
|
+
"selector": "app-sidebar",
|
|
753
|
+
"path": "sidebar/sidebar.component.ts",
|
|
754
|
+
"inputs": [
|
|
755
|
+
"sideBarProperties"
|
|
756
|
+
],
|
|
757
|
+
"outputs": [
|
|
758
|
+
"onIndexChanged"
|
|
759
|
+
],
|
|
760
|
+
"figmaNodeId": null
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"className": "SimpleStepperComponent",
|
|
764
|
+
"selector": "app-simple-stepper",
|
|
765
|
+
"path": "simple-stepper/simple-stepper.component.ts",
|
|
766
|
+
"inputs": [
|
|
767
|
+
"stepsCount",
|
|
768
|
+
"typeStep",
|
|
769
|
+
"currentStep",
|
|
770
|
+
"labelStepper",
|
|
771
|
+
"flowMode",
|
|
772
|
+
"white_brand"
|
|
773
|
+
],
|
|
774
|
+
"outputs": [],
|
|
775
|
+
"figmaNodeId": null
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"className": "SpacingStorybookComponent",
|
|
779
|
+
"selector": "app-spacing-storybook",
|
|
780
|
+
"path": "storybook-doc-components/spacing-storybook/spacing-storybook.component.ts",
|
|
781
|
+
"inputs": [],
|
|
782
|
+
"outputs": [],
|
|
783
|
+
"figmaNodeId": null
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"className": "StoryPageComponent",
|
|
787
|
+
"selector": "app-story-page",
|
|
788
|
+
"path": "storybook-doc-components/story-page/story-page.component.ts",
|
|
789
|
+
"inputs": [
|
|
790
|
+
"tittle"
|
|
791
|
+
],
|
|
792
|
+
"outputs": [],
|
|
793
|
+
"figmaNodeId": null
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"className": "DropiSwitchComponent",
|
|
797
|
+
"selector": "app-switch",
|
|
798
|
+
"path": "dropi-switch/dropi-switch.component.ts",
|
|
799
|
+
"inputs": [
|
|
800
|
+
"isChecked"
|
|
801
|
+
],
|
|
802
|
+
"outputs": [
|
|
803
|
+
"onChange"
|
|
804
|
+
],
|
|
805
|
+
"figmaNodeId": null
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"className": "TabsComponent",
|
|
809
|
+
"selector": "app-tabs",
|
|
810
|
+
"path": "tabs/tabs.component.ts",
|
|
811
|
+
"inputs": [
|
|
812
|
+
"configuration",
|
|
813
|
+
"showIcon",
|
|
814
|
+
"activeTab"
|
|
815
|
+
],
|
|
816
|
+
"outputs": [
|
|
817
|
+
"onIndexChanged"
|
|
818
|
+
],
|
|
819
|
+
"figmaNodeId": null
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"className": "TemplateBreakpointStorybookComponent",
|
|
823
|
+
"selector": "app-template-breakpoint-storybook",
|
|
824
|
+
"path": "storybook-doc-components/template-breakpoint-storybook/template-breakpoint-storybook.component.ts",
|
|
825
|
+
"inputs": [
|
|
826
|
+
"breakpoint",
|
|
827
|
+
"columns",
|
|
828
|
+
"margins",
|
|
829
|
+
"gutters",
|
|
830
|
+
"container"
|
|
831
|
+
],
|
|
832
|
+
"outputs": [],
|
|
833
|
+
"figmaNodeId": null
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"className": "TillteTableDocumentationComponent",
|
|
837
|
+
"selector": "app-tillte-table-documentation",
|
|
838
|
+
"path": "storybook-doc-components/tillte-table-documentation/tillte-table-documentation.component.ts",
|
|
839
|
+
"inputs": [
|
|
840
|
+
"dataTable",
|
|
841
|
+
"tittle",
|
|
842
|
+
"description",
|
|
843
|
+
"type"
|
|
844
|
+
],
|
|
845
|
+
"outputs": [],
|
|
846
|
+
"figmaNodeId": null
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"className": "ToastComponent",
|
|
850
|
+
"selector": "app-toast",
|
|
851
|
+
"path": "toast/toast.component.ts",
|
|
852
|
+
"inputs": [
|
|
853
|
+
"forceBrandIsDropi"
|
|
854
|
+
],
|
|
855
|
+
"outputs": [],
|
|
856
|
+
"figmaNodeId": null
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"className": "AlertComponent2",
|
|
860
|
+
"selector": "dropi-alert-legacy",
|
|
861
|
+
"path": "alert-legacy/alert.component.ts",
|
|
862
|
+
"inputs": [
|
|
863
|
+
"visible",
|
|
864
|
+
"message",
|
|
865
|
+
"type",
|
|
866
|
+
"autoClose"
|
|
867
|
+
],
|
|
868
|
+
"outputs": [],
|
|
869
|
+
"figmaNodeId": null
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"className": "DropiAvatarsComponent",
|
|
873
|
+
"selector": "dropi-avatars",
|
|
874
|
+
"path": "dropi-avatars/dropi-avatars.component.ts",
|
|
875
|
+
"inputs": [
|
|
876
|
+
"image",
|
|
877
|
+
"alt",
|
|
878
|
+
"type",
|
|
879
|
+
"set"
|
|
880
|
+
],
|
|
881
|
+
"outputs": [],
|
|
882
|
+
"figmaNodeId": null
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"className": "BadgeComponent",
|
|
886
|
+
"selector": "dropi-badge",
|
|
887
|
+
"path": "badge/badge.component.ts",
|
|
888
|
+
"inputs": [
|
|
889
|
+
"state"
|
|
890
|
+
],
|
|
891
|
+
"outputs": [],
|
|
892
|
+
"figmaNodeId": null
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"className": "DropiBadgeComponent",
|
|
896
|
+
"selector": "dropi-badge",
|
|
897
|
+
"path": "dropi-badge/dropi-badge.component.ts",
|
|
898
|
+
"inputs": [
|
|
899
|
+
"type",
|
|
900
|
+
"state",
|
|
901
|
+
"variant",
|
|
902
|
+
"count"
|
|
903
|
+
],
|
|
904
|
+
"outputs": [],
|
|
905
|
+
"figmaNodeId": null
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"className": "DropiBorderRadiusDemoComponent",
|
|
909
|
+
"selector": "dropi-border-radius-demo",
|
|
910
|
+
"path": "foundations/dropi-border-radius-demo/dropi-border-radius-demo.component.ts",
|
|
911
|
+
"inputs": [
|
|
912
|
+
"borderRadius"
|
|
913
|
+
],
|
|
914
|
+
"outputs": [],
|
|
915
|
+
"figmaNodeId": null
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"className": "ButtonComponent",
|
|
919
|
+
"selector": "dropi-button",
|
|
920
|
+
"path": "dropi-button/dropi-button.component.ts",
|
|
921
|
+
"inputs": [
|
|
922
|
+
"type",
|
|
923
|
+
"severity",
|
|
924
|
+
"size",
|
|
925
|
+
"state",
|
|
926
|
+
"preIcon",
|
|
927
|
+
"postIcon",
|
|
928
|
+
"text"
|
|
929
|
+
],
|
|
930
|
+
"outputs": [
|
|
931
|
+
"onClick"
|
|
932
|
+
],
|
|
933
|
+
"figmaNodeId": "2-381"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"className": "CardProductComponent",
|
|
937
|
+
"selector": "dropi-card-product",
|
|
938
|
+
"path": "card-product/card-product.component.ts",
|
|
939
|
+
"inputs": [
|
|
940
|
+
"product",
|
|
941
|
+
"state",
|
|
942
|
+
"aS",
|
|
943
|
+
"bettaTester"
|
|
944
|
+
],
|
|
945
|
+
"outputs": [
|
|
946
|
+
"onAddToCart",
|
|
947
|
+
"onProductClick",
|
|
948
|
+
"changeFavorite"
|
|
949
|
+
],
|
|
950
|
+
"figmaNodeId": null
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"className": "DropiCarouselComponent",
|
|
954
|
+
"selector": "dropi-carousel",
|
|
955
|
+
"path": "dropi-carousel/dropi-carousel.component.ts",
|
|
956
|
+
"inputs": [
|
|
957
|
+
"value",
|
|
958
|
+
"page",
|
|
959
|
+
"numVisible",
|
|
960
|
+
"numScroll",
|
|
961
|
+
"responsiveOptions",
|
|
962
|
+
"orientation",
|
|
963
|
+
"verticalViewPortHeight",
|
|
964
|
+
"contentClass",
|
|
965
|
+
"indicatorsContentClass",
|
|
966
|
+
"showIndicators",
|
|
967
|
+
"showNavigators",
|
|
968
|
+
"autoplayInterval",
|
|
969
|
+
"circular"
|
|
970
|
+
],
|
|
971
|
+
"outputs": [
|
|
972
|
+
"pageChange",
|
|
973
|
+
"onPage"
|
|
974
|
+
],
|
|
975
|
+
"figmaNodeId": null
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"className": "CitySelectorComponent",
|
|
979
|
+
"selector": "dropi-city-selector",
|
|
980
|
+
"path": "city-selector/city-selector.component.ts",
|
|
981
|
+
"inputs": [
|
|
982
|
+
"selectedCities",
|
|
983
|
+
"disabled"
|
|
984
|
+
],
|
|
985
|
+
"outputs": [
|
|
986
|
+
"selectedCitiesChange"
|
|
987
|
+
],
|
|
988
|
+
"figmaNodeId": null
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
"className": "DropiFavoriteButtonComponent",
|
|
992
|
+
"selector": "dropi-favorite-button",
|
|
993
|
+
"path": "dropi-favorite-button/dropi-favorite-button.component.ts",
|
|
994
|
+
"inputs": [
|
|
995
|
+
"isFavorite"
|
|
996
|
+
],
|
|
997
|
+
"outputs": [
|
|
998
|
+
"toggleFavorite"
|
|
999
|
+
],
|
|
1000
|
+
"figmaNodeId": null
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"className": "DropiIlustrationIconComponent",
|
|
1004
|
+
"selector": "dropi-ilustration-icon",
|
|
1005
|
+
"path": "dropi-ilustration-icon/dropi-ilustration-icon.component.ts",
|
|
1006
|
+
"inputs": [
|
|
1007
|
+
"type",
|
|
1008
|
+
"state",
|
|
1009
|
+
"stateInsignia",
|
|
1010
|
+
"tagProduct"
|
|
1011
|
+
],
|
|
1012
|
+
"outputs": [],
|
|
1013
|
+
"figmaNodeId": null
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"className": "DropiImageOverlayComponent",
|
|
1017
|
+
"selector": "dropi-image-overlay",
|
|
1018
|
+
"path": "dropi-image-overlay/dropi-image-overlay.component.ts",
|
|
1019
|
+
"inputs": [],
|
|
1020
|
+
"outputs": [],
|
|
1021
|
+
"figmaNodeId": null
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"className": "DropiLanguagesSelectorComponent",
|
|
1025
|
+
"selector": "dropi-languages-selector",
|
|
1026
|
+
"path": "dropi-languages-selector/dropi-languages-selector.component.ts",
|
|
1027
|
+
"inputs": [
|
|
1028
|
+
"languages",
|
|
1029
|
+
"selectedLang"
|
|
1030
|
+
],
|
|
1031
|
+
"outputs": [
|
|
1032
|
+
"languageChange"
|
|
1033
|
+
],
|
|
1034
|
+
"figmaNodeId": null
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"className": "DropiLogoComponent",
|
|
1038
|
+
"selector": "dropi-logo",
|
|
1039
|
+
"path": "dropi-logo/dropi-logo.component.ts",
|
|
1040
|
+
"inputs": [
|
|
1041
|
+
"urlLogo",
|
|
1042
|
+
"size",
|
|
1043
|
+
"theme"
|
|
1044
|
+
],
|
|
1045
|
+
"outputs": [],
|
|
1046
|
+
"figmaNodeId": null
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"className": "DropiStepsComponent",
|
|
1050
|
+
"selector": "dropi-steps",
|
|
1051
|
+
"path": "dropi-steps/dropi-steps.component.ts",
|
|
1052
|
+
"inputs": [
|
|
1053
|
+
"stepsCount",
|
|
1054
|
+
"showNumberOfStep",
|
|
1055
|
+
"currentStep",
|
|
1056
|
+
"stepLabels",
|
|
1057
|
+
"state"
|
|
1058
|
+
],
|
|
1059
|
+
"outputs": [],
|
|
1060
|
+
"figmaNodeId": null
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"className": "TooltipComponent",
|
|
1064
|
+
"selector": "dropi-tooltip",
|
|
1065
|
+
"path": "tooltip/tooltip.component.ts",
|
|
1066
|
+
"inputs": [
|
|
1067
|
+
"text",
|
|
1068
|
+
"outlined"
|
|
1069
|
+
],
|
|
1070
|
+
"outputs": [],
|
|
1071
|
+
"figmaNodeId": null
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"className": "DropiTooltipComponent",
|
|
1075
|
+
"selector": "dropi-tooltip-v2",
|
|
1076
|
+
"path": "dropi-tooltip/dropi-tooltip.component.ts",
|
|
1077
|
+
"inputs": [
|
|
1078
|
+
"text",
|
|
1079
|
+
"title",
|
|
1080
|
+
"label",
|
|
1081
|
+
"position",
|
|
1082
|
+
"arrowPosition",
|
|
1083
|
+
"trigger",
|
|
1084
|
+
"disabled",
|
|
1085
|
+
"showIcon",
|
|
1086
|
+
"showX",
|
|
1087
|
+
"iconName",
|
|
1088
|
+
"iconColor",
|
|
1089
|
+
"iconSize",
|
|
1090
|
+
"maxWidth",
|
|
1091
|
+
"minWidth"
|
|
1092
|
+
],
|
|
1093
|
+
"outputs": [],
|
|
1094
|
+
"figmaNodeId": null
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"className": "DropiYoutubeLazyVideoComponent",
|
|
1098
|
+
"selector": "dropi-youtube-lazy-video",
|
|
1099
|
+
"path": "dropi-youtube-lazy-video/dropi-youtube-lazy-video.component.ts",
|
|
1100
|
+
"inputs": [
|
|
1101
|
+
"videoId",
|
|
1102
|
+
"thumbnailSrc",
|
|
1103
|
+
"videoTitle"
|
|
1104
|
+
],
|
|
1105
|
+
"outputs": [],
|
|
1106
|
+
"figmaNodeId": null
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"className": "OtpSendCodeComponent",
|
|
1110
|
+
"selector": "otp-send-code",
|
|
1111
|
+
"path": "otp-send-code/otp-send-code.component.ts",
|
|
1112
|
+
"inputs": [
|
|
1113
|
+
"modulename",
|
|
1114
|
+
"engine",
|
|
1115
|
+
"emailSend",
|
|
1116
|
+
"typeAlert",
|
|
1117
|
+
"paramSendCode",
|
|
1118
|
+
"showLabelContact",
|
|
1119
|
+
"typeLabelContact",
|
|
1120
|
+
"labelContact",
|
|
1121
|
+
"typeBadge"
|
|
1122
|
+
],
|
|
1123
|
+
"outputs": [
|
|
1124
|
+
"codeCompleted",
|
|
1125
|
+
"codeAccepted"
|
|
1126
|
+
],
|
|
1127
|
+
"figmaNodeId": null
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"className": "TagTypeProductComponent",
|
|
1131
|
+
"selector": "tag-type-product",
|
|
1132
|
+
"path": "tag-type-product/tag-type-product.component.ts",
|
|
1133
|
+
"inputs": [],
|
|
1134
|
+
"outputs": [],
|
|
1135
|
+
"figmaNodeId": null
|
|
1136
|
+
}
|
|
1137
|
+
]
|
|
1138
|
+
}
|