@lucca-front/ng 19.0.0 → 19.1.0-rc.2
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/core/portal/portal.directive.d.ts +1 -0
- package/core/type/style.d.ts +1 -1
- package/core-select/api/api.directive.d.ts +1 -1
- package/core-select/input/select-input.component.d.ts +2 -2
- package/core-select/input/select-input.models.d.ts +1 -2
- package/core-select/panel/panel.utils.d.ts +1 -1
- package/core-select/select.utils.d.ts +1 -1
- package/core-select/user/users.directive.d.ts +1 -2
- package/date2/abstract-date-component.d.ts +36 -0
- package/date2/calendar2/calendar-cell-info.d.ts +19 -12
- package/date2/calendar2/calendar2.component.d.ts +5 -2
- package/date2/date-format.d.ts +1 -0
- package/date2/date-input/date-input.component.d.ts +5 -29
- package/date2/date-range-input/calendar-shortcut.d.ts +6 -0
- package/date2/date-range-input/date-range-input.component.d.ts +63 -0
- package/date2/public-api.d.ts +2 -0
- package/date2/utils.d.ts +1 -0
- package/dialog/dialog-routing/dialog-routing.component.d.ts +1 -1
- package/divider/divider.component.d.ts +17 -0
- package/divider/index.d.ts +5 -0
- package/divider/public-api.d.ts +1 -0
- package/dropdown/item/dropdown-item.directive.d.ts +1 -1
- package/dropdown/item/dropdown-item.module.d.ts +1 -4
- package/dropdown/panel/dropdown-panel.component.d.ts +1 -1
- package/dropdown/panel/dropdown-panel.module.d.ts +2 -4
- package/dropdown/trigger/dropdown-trigger.directive.d.ts +1 -1
- package/dropdown/trigger/dropdown-trigger.module.d.ts +2 -4
- package/esm2022/a11y/lucca-front-ng-a11y.mjs +5 -0
- package/esm2022/a11y/public-api.mjs +3 -0
- package/esm2022/a11y/skip-links/skip-links.component.mjs +24 -0
- package/esm2022/a11y/skip-links/skip-links.translate.mjs +9 -0
- package/esm2022/a11y/skip-links/translations.mjs +51 -0
- package/esm2022/animations/animation.factory.mjs +15 -0
- package/esm2022/animations/fade.animation.mjs +8 -0
- package/esm2022/animations/lucca-front-ng-animations.mjs +5 -0
- package/esm2022/animations/public-api.mjs +5 -0
- package/esm2022/animations/scale.animation.mjs +126 -0
- package/esm2022/animations/slide.animation.mjs +110 -0
- package/esm2022/api/api.model.mjs +2 -0
- package/esm2022/api/api.module.mjs +16 -0
- package/esm2022/api/lucca-front-ng-api.mjs +5 -0
- package/esm2022/api/public-api.mjs +5 -0
- package/esm2022/api/select/api-select.module.mjs +19 -0
- package/esm2022/api/select/feeder/api-feeder.component.mjs +93 -0
- package/esm2022/api/select/feeder/api-feeder.model.mjs +11 -0
- package/esm2022/api/select/feeder/api-feeder.module.mjs +16 -0
- package/esm2022/api/select/feeder/index.mjs +4 -0
- package/esm2022/api/select/index.mjs +6 -0
- package/esm2022/api/select/input/api-select-input.component.mjs +52 -0
- package/esm2022/api/select/input/api-select-input.module.mjs +16 -0
- package/esm2022/api/select/input/index.mjs +3 -0
- package/esm2022/api/select/pager/api-pager.component.mjs +99 -0
- package/esm2022/api/select/pager/api-pager.model.mjs +56 -0
- package/esm2022/api/select/pager/api-pager.module.mjs +16 -0
- package/esm2022/api/select/pager/index.mjs +4 -0
- package/esm2022/api/select/searcher/api-searcher.component.mjs +235 -0
- package/esm2022/api/select/searcher/api-searcher.model.mjs +67 -0
- package/esm2022/api/select/searcher/api-searcher.module.mjs +16 -0
- package/esm2022/api/select/searcher/index.mjs +4 -0
- package/esm2022/api/service/api-hybrid.service.mjs +65 -0
- package/esm2022/api/service/api-service.model.mjs +3 -0
- package/esm2022/api/service/api-v3.service.mjs +72 -0
- package/esm2022/api/service/api-v4.service.mjs +71 -0
- package/esm2022/api/service/index.mjs +5 -0
- package/esm2022/button/button.component.mjs +90 -0
- package/esm2022/button/lucca-front-ng-button.mjs +5 -0
- package/esm2022/button/public-api.mjs +2 -0
- package/esm2022/callout/callout/callout.component.mjs +88 -0
- package/esm2022/callout/callout-disclosure/callout-disclosure.component.mjs +59 -0
- package/esm2022/callout/callout-feedback-item/callout-feedback-item.component.mjs +25 -0
- package/esm2022/callout/callout-feedback-list/callout-feedback-list.component.mjs +22 -0
- package/esm2022/callout/callout-icon.pipe.mjs +23 -0
- package/esm2022/callout/callout-popover/callout-popover.component.mjs +182 -0
- package/esm2022/callout/callout-state.mjs +16 -0
- package/esm2022/callout/callout.translate.mjs +7 -0
- package/esm2022/callout/callout.utils.mjs +20 -0
- package/esm2022/callout/lucca-front-ng-callout.mjs +5 -0
- package/esm2022/callout/public-api.mjs +7 -0
- package/esm2022/callout/translations.mjs +27 -0
- package/esm2022/comment/comment/comment.component.mjs +54 -0
- package/esm2022/comment/comment-block/comment-block.component.mjs +60 -0
- package/esm2022/comment/comment-chat/comment-chat.component.mjs +22 -0
- package/esm2022/comment/lucca-front-ng-comment.mjs +5 -0
- package/esm2022/comment/public-api.mjs +4 -0
- package/esm2022/comment/token.mjs +4 -0
- package/esm2022/core/date/date-adapter.class.mjs +54 -0
- package/esm2022/core/date/date-adapter.interface.mjs +2 -0
- package/esm2022/core/date/date-granularity.enum.mjs +8 -0
- package/esm2022/core/date/index.mjs +6 -0
- package/esm2022/core/date/native/index.mjs +3 -0
- package/esm2022/core/date/native/native-date.adapter.mjs +235 -0
- package/esm2022/core/date/native/native-date.option.mjs +6 -0
- package/esm2022/core/date/string/index.mjs +2 -0
- package/esm2022/core/date/string/string-date.adapter.mjs +83 -0
- package/esm2022/core/event/index.mjs +4 -0
- package/esm2022/core/event/on-close.subscriber.mjs +3 -0
- package/esm2022/core/event/on-open.subscriber.mjs +3 -0
- package/esm2022/core/event/on-scroll-bottom.subscriber.mjs +3 -0
- package/esm2022/core/group/group.interface.mjs +2 -0
- package/esm2022/core/group/index.mjs +2 -0
- package/esm2022/core/id/id.generator.mjs +9 -0
- package/esm2022/core/id/index.mjs +2 -0
- package/esm2022/core/lucca-front-ng-core.mjs +5 -0
- package/esm2022/core/portal/index.mjs +3 -0
- package/esm2022/core/portal/portal-content.mjs +3 -0
- package/esm2022/core/portal/portal.directive.mjs +105 -0
- package/esm2022/core/public-api.mjs +11 -0
- package/esm2022/core/signal.mjs +22 -0
- package/esm2022/core/tools/class.mjs +75 -0
- package/esm2022/core/translate/index.mjs +4 -0
- package/esm2022/core/translate/intl-params.pipe.mjs +20 -0
- package/esm2022/core/translate/intl.model.mjs +14 -0
- package/esm2022/core/translate/translation.model.mjs +2 -0
- package/esm2022/core/tree/index.mjs +2 -0
- package/esm2022/core/tree/tree.model.mjs +2 -0
- package/esm2022/core/type/enum.mjs +2 -0
- package/esm2022/core/type/index.mjs +3 -0
- package/esm2022/core/type/style.mjs +2 -0
- package/esm2022/core-select/api/api-v3.directive.mjs +81 -0
- package/esm2022/core-select/api/api-v4.directive.mjs +70 -0
- package/esm2022/core-select/api/api.directive.mjs +53 -0
- package/esm2022/core-select/api/lucca-front-ng-core-select-api.mjs +5 -0
- package/esm2022/core-select/api/public-api.mjs +4 -0
- package/esm2022/core-select/displayer/displayer.directive.mjs +26 -0
- package/esm2022/core-select/displayer/index.mjs +2 -0
- package/esm2022/core-select/establishment/establishment-grouping.component.mjs +21 -0
- package/esm2022/core-select/establishment/establishment-grouping.service.mjs +22 -0
- package/esm2022/core-select/establishment/establishments.directive.mjs +96 -0
- package/esm2022/core-select/establishment/lucca-front-ng-core-select-establishment.mjs +5 -0
- package/esm2022/core-select/establishment/models.mjs +2 -0
- package/esm2022/core-select/establishment/public-api.mjs +4 -0
- package/esm2022/core-select/input/index.mjs +4 -0
- package/esm2022/core-select/input/select-input.component.mjs +310 -0
- package/esm2022/core-select/input/select-input.models.mjs +60 -0
- package/esm2022/core-select/input/total-count.directive.mjs +33 -0
- package/esm2022/core-select/job-qualification/job-qualification-grouping.component.mjs +21 -0
- package/esm2022/core-select/job-qualification/job-qualifications.directive.mjs +78 -0
- package/esm2022/core-select/job-qualification/lucca-front-ng-core-select-job-qualification.mjs +5 -0
- package/esm2022/core-select/job-qualification/models.mjs +2 -0
- package/esm2022/core-select/job-qualification/public-api.mjs +3 -0
- package/esm2022/core-select/lucca-front-ng-core-select.mjs +5 -0
- package/esm2022/core-select/option/default-option.component.mjs +22 -0
- package/esm2022/core-select/option/disabled.directive.mjs +26 -0
- package/esm2022/core-select/option/group.directive.mjs +29 -0
- package/esm2022/core-select/option/group.pipe.mjs +43 -0
- package/esm2022/core-select/option/index.mjs +9 -0
- package/esm2022/core-select/option/option-outlet.directive.mjs +73 -0
- package/esm2022/core-select/option/option.component.mjs +89 -0
- package/esm2022/core-select/option/option.directive.mjs +26 -0
- package/esm2022/core-select/option/option.token.mjs +22 -0
- package/esm2022/core-select/panel/index.mjs +5 -0
- package/esm2022/core-select/panel/key-manager.mjs +79 -0
- package/esm2022/core-select/panel/panel-header-template.directive.mjs +25 -0
- package/esm2022/core-select/panel/panel.models.mjs +22 -0
- package/esm2022/core-select/panel/panel.utils.mjs +11 -0
- package/esm2022/core-select/public-api.mjs +8 -0
- package/esm2022/core-select/select.model.mjs +6 -0
- package/esm2022/core-select/select.translate.mjs +7 -0
- package/esm2022/core-select/select.utils.mjs +5 -0
- package/esm2022/core-select/translations.mjs +27 -0
- package/esm2022/core-select/user/former-employees.component.mjs +34 -0
- package/esm2022/core-select/user/lucca-front-ng-core-select-user.mjs +5 -0
- package/esm2022/core-select/user/me.provider.mjs +9 -0
- package/esm2022/core-select/user/public-api.mjs +5 -0
- package/esm2022/core-select/user/translations.mjs +35 -0
- package/esm2022/core-select/user/user-displayer.component.mjs +32 -0
- package/esm2022/core-select/user/user-homonym.service.mjs +63 -0
- package/esm2022/core-select/user/user-option.component.mjs +46 -0
- package/esm2022/core-select/user/user-option.model.mjs +2 -0
- package/esm2022/core-select/user/user.translate.mjs +7 -0
- package/esm2022/core-select/user/users.directive.mjs +142 -0
- package/esm2022/date/adapter/date-adapter.module.mjs +16 -0
- package/esm2022/date/adapter/date-adapter.pipe.mjs +25 -0
- package/esm2022/date/adapter/index.mjs +3 -0
- package/esm2022/date/calendar/calendar-input.component.mjs +332 -0
- package/esm2022/date/calendar/calendar-input.module.mjs +16 -0
- package/esm2022/date/calendar/calendar-item.class.mjs +43 -0
- package/esm2022/date/calendar/calendar-item.factory.mjs +37 -0
- package/esm2022/date/calendar/calendar-item.interface.mjs +2 -0
- package/esm2022/date/calendar/index.mjs +3 -0
- package/esm2022/date/date.module.mjs +20 -0
- package/esm2022/date/humanize/humanize.formatter.mjs +14 -0
- package/esm2022/date/humanize/humanize.model.mjs +2 -0
- package/esm2022/date/humanize/humanize.pipe.mjs +21 -0
- package/esm2022/date/humanize/humanize.utils.mjs +79 -0
- package/esm2022/date/humanize/index.mjs +5 -0
- package/esm2022/date/input/date-input.directive.mjs +137 -0
- package/esm2022/date/input/date-input.module.mjs +16 -0
- package/esm2022/date/input/date-input.translate.mjs +7 -0
- package/esm2022/date/input/index.mjs +4 -0
- package/esm2022/date/input/translations.mjs +43 -0
- package/esm2022/date/lucca-front-ng-date.mjs +5 -0
- package/esm2022/date/picker/date-picker.component.mjs +109 -0
- package/esm2022/date/picker/date-picker.module.mjs +16 -0
- package/esm2022/date/picker/index.mjs +3 -0
- package/esm2022/date/public-api.mjs +8 -0
- package/esm2022/date/select/date-select-input.component.mjs +106 -0
- package/esm2022/date/select/date-select-input.module.mjs +16 -0
- package/esm2022/date/select/date-select-input.translate.mjs +7 -0
- package/esm2022/date/select/index.mjs +4 -0
- package/esm2022/date/select/translations.mjs +43 -0
- package/esm2022/date2/abstract-date-component.mjs +105 -0
- package/esm2022/date2/calendar.token.mjs +22 -0
- package/esm2022/date2/calendar2/calendar-cell-info.mjs +2 -0
- package/esm2022/date2/calendar2/calendar-mode.mjs +2 -0
- package/esm2022/date2/calendar2/calendar2-cell.directive.mjs +111 -0
- package/esm2022/date2/calendar2/calendar2.component.mjs +400 -0
- package/esm2022/date2/calendar2/calendar2.tokens.mjs +4 -0
- package/esm2022/date2/calendar2/cell-status.mjs +2 -0
- package/esm2022/date2/calendar2/date-range.mjs +2 -0
- package/esm2022/date2/date-format.mjs +44 -0
- package/esm2022/date2/date-input/date-input.component.mjs +162 -0
- package/esm2022/date2/date-range-input/calendar-shortcut.mjs +65 -0
- package/esm2022/date2/date-range-input/date-range-input.component.mjs +389 -0
- package/esm2022/date2/date2.translate.mjs +7 -0
- package/esm2022/date2/lucca-front-ng-date2.mjs +5 -0
- package/esm2022/date2/public-api.mjs +7 -0
- package/esm2022/date2/repeat-times.directive.mjs +27 -0
- package/esm2022/date2/translations.mjs +17 -0
- package/esm2022/date2/utils.mjs +32 -0
- package/esm2022/department/department.model.mjs +2 -0
- package/esm2022/department/department.module.mjs +16 -0
- package/esm2022/department/lucca-front-ng-department.mjs +5 -0
- package/esm2022/department/public-api.mjs +5 -0
- package/esm2022/department/select/department-select.module.mjs +17 -0
- package/esm2022/department/select/feeder/department-feeder.component.mjs +82 -0
- package/esm2022/department/select/feeder/department-feeder.module.mjs +16 -0
- package/esm2022/department/select/feeder/index.mjs +3 -0
- package/esm2022/department/select/index.mjs +4 -0
- package/esm2022/department/select/input/department-select-input.component.mjs +67 -0
- package/esm2022/department/select/input/department-select-input.module.mjs +16 -0
- package/esm2022/department/select/input/department-select-input.translate.mjs +7 -0
- package/esm2022/department/select/input/index.mjs +4 -0
- package/esm2022/department/select/input/translations.mjs +27 -0
- package/esm2022/department/service/department-service.model.mjs +4 -0
- package/esm2022/department/service/department-v3.service.mjs +46 -0
- package/esm2022/department/service/department-v4.service.mjs +46 -0
- package/esm2022/department/service/index.mjs +4 -0
- package/esm2022/dialog/dialog/dialog.component.mjs +31 -0
- package/esm2022/dialog/dialog-content/dialog-content.component.mjs +20 -0
- package/esm2022/dialog/dialog-footer/dialog-footer.component.mjs +13 -0
- package/esm2022/dialog/dialog-header/dialog-header.component.mjs +46 -0
- package/esm2022/dialog/dialog-header/dialog-header.translate.mjs +7 -0
- package/esm2022/dialog/dialog-header/translations.mjs +27 -0
- package/esm2022/dialog/dialog-routing/dialog-routing.component.mjs +100 -0
- package/esm2022/dialog/dialog-routing/dialog-routing.models.mjs +2 -0
- package/esm2022/dialog/dialog-routing/dialog-routing.utils.mjs +46 -0
- package/esm2022/dialog/dialog-routing/index.mjs +4 -0
- package/esm2022/dialog/dialog.providers.mjs +10 -0
- package/esm2022/dialog/dialog.service.mjs +75 -0
- package/esm2022/dialog/directives/dialog-close.directive.mjs +22 -0
- package/esm2022/dialog/directives/dialog-dismiss.directive.mjs +22 -0
- package/esm2022/dialog/directives/dialog-open.directive.mjs +35 -0
- package/esm2022/dialog/lucca-front-ng-dialog.mjs +5 -0
- package/esm2022/dialog/model/dialog-config.mjs +4 -0
- package/esm2022/dialog/model/dialog-ref.mjs +49 -0
- package/esm2022/dialog/model/index.mjs +4 -0
- package/esm2022/dialog/model/injectors.mjs +10 -0
- package/esm2022/dialog/public-api.mjs +13 -0
- package/esm2022/dialog/testing/lucca-front-ng-dialog-testing.mjs +5 -0
- package/esm2022/dialog/testing/providers.mjs +8 -0
- package/esm2022/dialog/testing/public-api.mjs +2 -0
- package/esm2022/divider/divider.component.mjs +50 -0
- package/esm2022/divider/lucca-front-ng-divider.mjs +5 -0
- package/esm2022/divider/public-api.mjs +2 -0
- package/esm2022/dropdown/dropdown.module.mjs +18 -0
- package/esm2022/dropdown/item/dropdown-item.directive.mjs +55 -0
- package/esm2022/dropdown/item/dropdown-item.model.mjs +3 -0
- package/esm2022/dropdown/item/dropdown-item.module.mjs +17 -0
- package/esm2022/dropdown/item/index.mjs +4 -0
- package/esm2022/dropdown/lucca-front-ng-dropdown.mjs +5 -0
- package/esm2022/dropdown/panel/dropdown-panel.component.mjs +111 -0
- package/esm2022/dropdown/panel/dropdown-panel.model.mjs +2 -0
- package/esm2022/dropdown/panel/dropdown-panel.module.mjs +18 -0
- package/esm2022/dropdown/panel/index.mjs +4 -0
- package/esm2022/dropdown/public-api.mjs +5 -0
- package/esm2022/dropdown/trigger/dropdown-trigger.directive.mjs +121 -0
- package/esm2022/dropdown/trigger/dropdown-trigger.module.mjs +18 -0
- package/esm2022/dropdown/trigger/index.mjs +3 -0
- package/esm2022/empty-state/empty-state-page/empty-state-page.component.mjs +62 -0
- package/esm2022/empty-state/empty-state-section/empty-state-section.component.mjs +43 -0
- package/esm2022/empty-state/lucca-front-ng-empty-state.mjs +5 -0
- package/esm2022/empty-state/public-api.mjs +3 -0
- package/esm2022/establishment/establishment.model.mjs +2 -0
- package/esm2022/establishment/establishment.module.mjs +19 -0
- package/esm2022/establishment/lucca-front-ng-establishment.mjs +5 -0
- package/esm2022/establishment/public-api.mjs +5 -0
- package/esm2022/establishment/select/establishment-select.module.mjs +23 -0
- package/esm2022/establishment/select/establishment-select.token.mjs +4 -0
- package/esm2022/establishment/select/for-legal-units/for-legal-units.directive.mjs +47 -0
- package/esm2022/establishment/select/for-legal-units/for-legal-units.module.mjs +16 -0
- package/esm2022/establishment/select/for-legal-units/index.mjs +3 -0
- package/esm2022/establishment/select/index.mjs +7 -0
- package/esm2022/establishment/select/input/establishment-select-input.component.mjs +126 -0
- package/esm2022/establishment/select/input/establishment-select-input.module.mjs +16 -0
- package/esm2022/establishment/select/input/establishment-select-input.translate.mjs +7 -0
- package/esm2022/establishment/select/input/index.mjs +4 -0
- package/esm2022/establishment/select/input/translations.mjs +27 -0
- package/esm2022/establishment/select/legal-unit-selector/index.mjs +3 -0
- package/esm2022/establishment/select/legal-unit-selector/legal-unit-selector.directive.mjs +103 -0
- package/esm2022/establishment/select/legal-unit-selector/legal-unit-selector.module.mjs +16 -0
- package/esm2022/establishment/select/searcher/establishment-searcher.component.mjs +146 -0
- package/esm2022/establishment/select/searcher/establishment-searcher.module.mjs +16 -0
- package/esm2022/establishment/select/searcher/index.mjs +3 -0
- package/esm2022/establishment/select/select-all/establishment-select-all.component.mjs +94 -0
- package/esm2022/establishment/select/select-all/establishment-select-all.module.mjs +16 -0
- package/esm2022/establishment/select/select-all/index.mjs +3 -0
- package/esm2022/establishment/service/establishment-service.model.mjs +4 -0
- package/esm2022/establishment/service/establishment.service.mjs +37 -0
- package/esm2022/establishment/service/index.mjs +5 -0
- package/esm2022/establishment/service/legal-unit-service.model.mjs +4 -0
- package/esm2022/establishment/service/legal-unit.service.mjs +37 -0
- package/esm2022/fancy-box/fancy-box.component.mjs +39 -0
- package/esm2022/fancy-box/lucca-front-ng-fancy-box.mjs +5 -0
- package/esm2022/fancy-box/public-api.mjs +2 -0
- package/esm2022/form-field/form-field-size.mjs +2 -0
- package/esm2022/form-field/form-field.component.mjs +174 -0
- package/esm2022/form-field/form-field.token.mjs +3 -0
- package/esm2022/form-field/form-field.translate.mjs +7 -0
- package/esm2022/form-field/input.directive.mjs +36 -0
- package/esm2022/form-field/lucca-front-ng-form-field.mjs +5 -0
- package/esm2022/form-field/public-api.mjs +6 -0
- package/esm2022/form-field/translations.mjs +27 -0
- package/esm2022/formly/formly.config.mjs +79 -0
- package/esm2022/formly/formly.module.mjs +108 -0
- package/esm2022/formly/formly.utils.mjs +10 -0
- package/esm2022/formly/lucca-front-ng-formly.mjs +5 -0
- package/esm2022/formly/public-api.mjs +5 -0
- package/esm2022/formly/types/api.mjs +37 -0
- package/esm2022/formly/types/checkbox.mjs +22 -0
- package/esm2022/formly/types/date.mjs +22 -0
- package/esm2022/formly/types/department.mjs +22 -0
- package/esm2022/formly/types/establishment.mjs +22 -0
- package/esm2022/formly/types/index.mjs +12 -0
- package/esm2022/formly/types/input.mjs +26 -0
- package/esm2022/formly/types/qualification.mjs +22 -0
- package/esm2022/formly/types/radios.mjs +25 -0
- package/esm2022/formly/types/select.mjs +28 -0
- package/esm2022/formly/types/textarea.mjs +22 -0
- package/esm2022/formly/types/user.mjs +22 -0
- package/esm2022/formly/wrappers/checkbox-layout.mjs +30 -0
- package/esm2022/formly/wrappers/error.mjs +57 -0
- package/esm2022/formly/wrappers/helper.mjs +19 -0
- package/esm2022/formly/wrappers/icon.mjs +19 -0
- package/esm2022/formly/wrappers/index.mjs +8 -0
- package/esm2022/formly/wrappers/radiosfield-layout.mjs +30 -0
- package/esm2022/formly/wrappers/suffix.mjs +19 -0
- package/esm2022/formly/wrappers/textfield-layout.mjs +39 -0
- package/esm2022/forms/checkbox-input/checkbox-input.component.mjs +34 -0
- package/esm2022/forms/form-field-id.directive.mjs +52 -0
- package/esm2022/forms/inject-ng-control.mjs +25 -0
- package/esm2022/forms/lucca-front-ng-forms.mjs +5 -0
- package/esm2022/forms/multilanguage-input/model/multilanguage-translation.mjs +2 -0
- package/esm2022/forms/multilanguage-input/multilanguage-input.component.mjs +95 -0
- package/esm2022/forms/multilanguage-input/multilanguage-input.translate.mjs +6 -0
- package/esm2022/forms/multilanguage-input/translations.mjs +13 -0
- package/esm2022/forms/multilanguage-input/validators.mjs +7 -0
- package/esm2022/forms/noop-value-accessor.directive.mjs +35 -0
- package/esm2022/forms/number-format-input/number-format-input.component.mjs +92 -0
- package/esm2022/forms/number-format-input/number-format-input.translate.mjs +7 -0
- package/esm2022/forms/number-format-input/translations.mjs +27 -0
- package/esm2022/forms/number-input/number-input.component.mjs +55 -0
- package/esm2022/forms/number-input/number-input.translate.mjs +7 -0
- package/esm2022/forms/number-input/translations.mjs +27 -0
- package/esm2022/forms/phone-number-input/formatter.mjs +7 -0
- package/esm2022/forms/phone-number-input/lucca-front-ng-forms-phone-number-input.mjs +5 -0
- package/esm2022/forms/phone-number-input/phone-number-format.pipe.mjs +18 -0
- package/esm2022/forms/phone-number-input/phone-number-input.component.mjs +186 -0
- package/esm2022/forms/phone-number-input/public-api.mjs +6 -0
- package/esm2022/forms/phone-number-input/types.mjs +2 -0
- package/esm2022/forms/phone-number-input/validators.mjs +17 -0
- package/esm2022/forms/public-api.mjs +17 -0
- package/esm2022/forms/radio-group-input/radio/radio.component.mjs +54 -0
- package/esm2022/forms/radio-group-input/radio-group-input.component.mjs +45 -0
- package/esm2022/forms/radio-group-input/radio-group-token.mjs +3 -0
- package/esm2022/forms/switch-input/switch-input.component.mjs +26 -0
- package/esm2022/forms/text-input/text-input-addon.mjs +2 -0
- package/esm2022/forms/text-input/text-input.component.mjs +82 -0
- package/esm2022/forms/text-input/text-input.translate.mjs +7 -0
- package/esm2022/forms/text-input/translations.mjs +35 -0
- package/esm2022/forms/textarea-input/textarea-input.component.mjs +53 -0
- package/esm2022/icon/icon.component.mjs +29 -0
- package/esm2022/icon/lucca-front-ng-icon.mjs +5 -0
- package/esm2022/icon/public-api.mjs +2 -0
- package/esm2022/inline-message/inline-message-state.mjs +2 -0
- package/esm2022/inline-message/inline-message.component.mjs +33 -0
- package/esm2022/inline-message/lucca-front-ng-inline-message.mjs +5 -0
- package/esm2022/inline-message/public-api.mjs +3 -0
- package/esm2022/input/clearer/clearer.component.mjs +35 -0
- package/esm2022/input/clearer/clearer.model.mjs +3 -0
- package/esm2022/input/clearer/clearer.module.mjs +16 -0
- package/esm2022/input/clearer/index.mjs +4 -0
- package/esm2022/input/displayer/index.mjs +4 -0
- package/esm2022/input/displayer/input-displayer.directive.mjs +59 -0
- package/esm2022/input/displayer/input-displayer.model.mjs +6 -0
- package/esm2022/input/displayer/input-displayer.module.mjs +16 -0
- package/esm2022/input/input.directive.mjs +42 -0
- package/esm2022/input/input.model.mjs +54 -0
- package/esm2022/input/input.module.mjs +18 -0
- package/esm2022/input/lucca-front-ng-input.mjs +5 -0
- package/esm2022/input/public-api.mjs +6 -0
- package/esm2022/link/link.component.mjs +108 -0
- package/esm2022/link/link.translate.mjs +7 -0
- package/esm2022/link/lucca-front-ng-link.mjs +5 -0
- package/esm2022/link/public-api.mjs +2 -0
- package/esm2022/link/translations.mjs +24 -0
- package/esm2022/lucca-front-ng.mjs +5 -0
- package/esm2022/modal/dialog-adapter/dialog-content-adapter/dialog-content-adapter.component.mjs +100 -0
- package/esm2022/modal/dialog-adapter/dialog-ref-adapter.mjs +19 -0
- package/esm2022/modal/lucca-front-ng-modal.mjs +5 -0
- package/esm2022/modal/modal-config.default.mjs +17 -0
- package/esm2022/modal/modal-config.model.mjs +5 -0
- package/esm2022/modal/modal-panel.component.mjs +123 -0
- package/esm2022/modal/modal-ref.factory.mjs +60 -0
- package/esm2022/modal/modal-ref.model.mjs +11 -0
- package/esm2022/modal/modal.model.mjs +2 -0
- package/esm2022/modal/modal.module.mjs +28 -0
- package/esm2022/modal/modal.service.mjs +42 -0
- package/esm2022/modal/modal.token.mjs +9 -0
- package/esm2022/modal/modal.translate.mjs +7 -0
- package/esm2022/modal/modal.utils.mjs +9 -0
- package/esm2022/modal/public-api.mjs +12 -0
- package/esm2022/modal/translations.mjs +43 -0
- package/esm2022/multi-select/displayer/counter-displayer/counter-displayer.component.mjs +78 -0
- package/esm2022/multi-select/displayer/default-displayer.component.mjs +95 -0
- package/esm2022/multi-select/displayer/default-displayer.translate.mjs +7 -0
- package/esm2022/multi-select/displayer/displayer-input.directive.mjs +101 -0
- package/esm2022/multi-select/displayer/displayer.directive.mjs +26 -0
- package/esm2022/multi-select/displayer/index.mjs +6 -0
- package/esm2022/multi-select/displayer/translations.mjs +51 -0
- package/esm2022/multi-select/input/index.mjs +3 -0
- package/esm2022/multi-select/input/panel-ref.factory.mjs +115 -0
- package/esm2022/multi-select/input/panel.model.mjs +4 -0
- package/esm2022/multi-select/input/select-all/index.mjs +2 -0
- package/esm2022/multi-select/input/select-all/multi-select-all-displayer.component.mjs +99 -0
- package/esm2022/multi-select/input/select-all/multi-select-all-header.component.mjs +36 -0
- package/esm2022/multi-select/input/select-all/select-all.models.mjs +3 -0
- package/esm2022/multi-select/input/select-all/with-select-all.directive.mjs +163 -0
- package/esm2022/multi-select/input/select-input.component.mjs +109 -0
- package/esm2022/multi-select/lucca-front-ng-multi-select.mjs +5 -0
- package/esm2022/multi-select/panel/index.mjs +2 -0
- package/esm2022/multi-select/panel/option-group-context.pipe.mjs +24 -0
- package/esm2022/multi-select/panel/option-selected.pipe.mjs +19 -0
- package/esm2022/multi-select/panel/panel.component.mjs +108 -0
- package/esm2022/multi-select/panel/selected-chip.directive.mjs +26 -0
- package/esm2022/multi-select/public-api.mjs +5 -0
- package/esm2022/multi-select/select.model.mjs +23 -0
- package/esm2022/multi-select/select.translate.mjs +7 -0
- package/esm2022/multi-select/select.validators.mjs +10 -0
- package/esm2022/multi-select/translations.mjs +107 -0
- package/esm2022/new-badge/lucca-front-ng-new-badge.mjs +5 -0
- package/esm2022/new-badge/new-badge.component.mjs +20 -0
- package/esm2022/new-badge/public-api.mjs +2 -0
- package/esm2022/number/lucca-front-ng-number.mjs +5 -0
- package/esm2022/number/number.module.mjs +16 -0
- package/esm2022/number/number.pipe.mjs +36 -0
- package/esm2022/number/public-api.mjs +3 -0
- package/esm2022/number-format/lucca-front-ng-number-format.mjs +5 -0
- package/esm2022/number-format/number-format.directive.mjs +91 -0
- package/esm2022/number-format/number-format.mjs +175 -0
- package/esm2022/number-format/number-format.models.mjs +7 -0
- package/esm2022/number-format/number-format.pipe.mjs +18 -0
- package/esm2022/number-format/public-api.mjs +5 -0
- package/esm2022/numeric-badge/lucca-front-ng-numeric-badge.mjs +5 -0
- package/esm2022/numeric-badge/numeric-badge.component.mjs +55 -0
- package/esm2022/numeric-badge/public-api.mjs +2 -0
- package/esm2022/option/item/index.mjs +8 -0
- package/esm2022/option/item/option-item.component.mjs +76 -0
- package/esm2022/option/item/option-item.model.mjs +3 -0
- package/esm2022/option/item/option-item.module.mjs +16 -0
- package/esm2022/option/item/translations.mjs +35 -0
- package/esm2022/option/item/tree-option-item.component.mjs +136 -0
- package/esm2022/option/item/tree-option-item.model.mjs +7 -0
- package/esm2022/option/item/tree-option-item.module.mjs +16 -0
- package/esm2022/option/item/tree-option-item.translate.mjs +7 -0
- package/esm2022/option/lucca-front-ng-option.mjs +5 -0
- package/esm2022/option/operator/feeder/index.mjs +5 -0
- package/esm2022/option/operator/feeder/option-feeder.component.mjs +33 -0
- package/esm2022/option/operator/feeder/option-feeder.module.mjs +16 -0
- package/esm2022/option/operator/feeder/tree-option-feeder.component.mjs +33 -0
- package/esm2022/option/operator/feeder/tree-option-feeder.module.mjs +16 -0
- package/esm2022/option/operator/for-groups/for-groups.directive.mjs +89 -0
- package/esm2022/option/operator/for-groups/for-groups.module.mjs +16 -0
- package/esm2022/option/operator/for-groups/index.mjs +3 -0
- package/esm2022/option/operator/for-options/for-options.directive.mjs +50 -0
- package/esm2022/option/operator/for-options/for-options.module.mjs +16 -0
- package/esm2022/option/operator/for-options/for-tree-options.directive.mjs +29 -0
- package/esm2022/option/operator/for-options/for-tree-options.module.mjs +16 -0
- package/esm2022/option/operator/for-options/index.mjs +5 -0
- package/esm2022/option/operator/index.mjs +10 -0
- package/esm2022/option/operator/option-operator.model.mjs +3 -0
- package/esm2022/option/operator/option-operator.module.mjs +20 -0
- package/esm2022/option/operator/pager/index.mjs +5 -0
- package/esm2022/option/operator/pager/option-pager.component.mjs +53 -0
- package/esm2022/option/operator/pager/option-pager.module.mjs +16 -0
- package/esm2022/option/operator/pager/tree-option-pager.component.mjs +71 -0
- package/esm2022/option/operator/pager/tree-option-pager.module.mjs +16 -0
- package/esm2022/option/operator/searcher/index.mjs +5 -0
- package/esm2022/option/operator/searcher/option-searcher.component.mjs +66 -0
- package/esm2022/option/operator/searcher/option-searcher.module.mjs +16 -0
- package/esm2022/option/operator/searcher/tree-option-searcher.component.mjs +83 -0
- package/esm2022/option/operator/searcher/tree-option-searcher.module.mjs +16 -0
- package/esm2022/option/operator/tree-option-operator.model.mjs +4 -0
- package/esm2022/option/operator/tree-option-operator.module.mjs +19 -0
- package/esm2022/option/option.module.mjs +63 -0
- package/esm2022/option/picker/index.mjs +9 -0
- package/esm2022/option/picker/option-picker-advanced.component.mjs +150 -0
- package/esm2022/option/picker/option-picker.component.mjs +319 -0
- package/esm2022/option/picker/option-picker.model.mjs +69 -0
- package/esm2022/option/picker/option-picker.module.mjs +18 -0
- package/esm2022/option/picker/tree-option-picker-advanced.component.mjs +140 -0
- package/esm2022/option/picker/tree-option-picker.component.mjs +173 -0
- package/esm2022/option/picker/tree-option-picker.model.mjs +4 -0
- package/esm2022/option/picker/tree-option-picker.module.mjs +21 -0
- package/esm2022/option/placeholder/index.mjs +4 -0
- package/esm2022/option/placeholder/option-placeholder.component.mjs +23 -0
- package/esm2022/option/placeholder/option-placeholder.module.mjs +16 -0
- package/esm2022/option/placeholder/option-placeholder.translate.mjs +7 -0
- package/esm2022/option/placeholder/translations.mjs +35 -0
- package/esm2022/option/public-api.mjs +8 -0
- package/esm2022/option/selector/all/index.mjs +6 -0
- package/esm2022/option/selector/all/select-all.component.mjs +64 -0
- package/esm2022/option/selector/all/select-all.module.mjs +16 -0
- package/esm2022/option/selector/all/select-all.translate.mjs +7 -0
- package/esm2022/option/selector/all/translations.mjs +35 -0
- package/esm2022/option/selector/all/tree-select-all.component.mjs +67 -0
- package/esm2022/option/selector/all/tree-select-all.module.mjs +16 -0
- package/esm2022/option/selector/index.mjs +6 -0
- package/esm2022/option/selector/option-selector.model.mjs +3 -0
- package/esm2022/option/selector/option-selector.module.mjs +16 -0
- package/esm2022/option/selector/tree-option-selector.model.mjs +4 -0
- package/esm2022/option/selector/tree-option-selector.module.mjs +16 -0
- package/esm2022/option/tree-option.module.mjs +19 -0
- package/esm2022/picker/input-picker.model.mjs +4 -0
- package/esm2022/picker/lucca-front-ng-picker.mjs +5 -0
- package/esm2022/picker/public-api.mjs +2 -0
- package/esm2022/plg-push/lucca-front-ng-plg-push.mjs +5 -0
- package/esm2022/plg-push/plg-push.component.mjs +17 -0
- package/esm2022/plg-push/public-api.mjs +2 -0
- package/esm2022/popover/animation/index.mjs +2 -0
- package/esm2022/popover/animation/popover.animation.mjs +16 -0
- package/esm2022/popover/lucca-front-ng-popover.mjs +5 -0
- package/esm2022/popover/panel/index.mjs +4 -0
- package/esm2022/popover/panel/popover-panel.component.mjs +126 -0
- package/esm2022/popover/panel/popover-panel.model.mjs +120 -0
- package/esm2022/popover/panel/popover-panel.module.mjs +16 -0
- package/esm2022/popover/popover.module.mjs +18 -0
- package/esm2022/popover/public-api.mjs +6 -0
- package/esm2022/popover/target/index.mjs +4 -0
- package/esm2022/popover/target/popover-target.directive.mjs +53 -0
- package/esm2022/popover/target/popover-target.model.mjs +65 -0
- package/esm2022/popover/target/popover-target.module.mjs +16 -0
- package/esm2022/popover/trigger/index.mjs +4 -0
- package/esm2022/popover/trigger/popover-trigger.directive.mjs +186 -0
- package/esm2022/popover/trigger/popover-trigger.model.mjs +470 -0
- package/esm2022/popover/trigger/popover-trigger.module.mjs +17 -0
- package/esm2022/popover2/content/popover-content/popover-content.component.mjs +78 -0
- package/esm2022/popover2/lucca-front-ng-popover2.mjs +5 -0
- package/esm2022/popover2/popover-focus-trap.mjs +24 -0
- package/esm2022/popover2/popover-tokens.mjs +3 -0
- package/esm2022/popover2/popover.directive.mjs +264 -0
- package/esm2022/popover2/popover.providers.mjs +6 -0
- package/esm2022/popover2/popover.translate.mjs +7 -0
- package/esm2022/popover2/popover2.translate.mjs +19 -0
- package/esm2022/popover2/public-api.mjs +4 -0
- package/esm2022/popover2/translations.mjs +27 -0
- package/esm2022/popup/lucca-front-ng-popup.mjs +5 -0
- package/esm2022/popup/popup-config.default.mjs +9 -0
- package/esm2022/popup/popup-config.model.mjs +2 -0
- package/esm2022/popup/popup-ref.factory.mjs +28 -0
- package/esm2022/popup/popup-ref.model.mjs +139 -0
- package/esm2022/popup/popup.module.mjs +21 -0
- package/esm2022/popup/popup.service.mjs +21 -0
- package/esm2022/popup/popup.token.mjs +8 -0
- package/esm2022/popup/public-api.mjs +8 -0
- package/esm2022/popup-employee/card/panel/user-popover-panel.component.mjs +153 -0
- package/esm2022/popup-employee/card/panel/user-popover-panel.model.mjs +2 -0
- package/esm2022/popup-employee/card/pipe/inject-parameter.pipe.mjs +18 -0
- package/esm2022/popup-employee/card/pipe/is-future.pipe.mjs +32 -0
- package/esm2022/popup-employee/card/pipe/leave-ends-display.pipe.mjs +44 -0
- package/esm2022/popup-employee/card/trigger/user-popover-trigger.directive.mjs +178 -0
- package/esm2022/popup-employee/lucca-front-ng-popup-employee.mjs +5 -0
- package/esm2022/popup-employee/popup-employee.translate.mjs +7 -0
- package/esm2022/popup-employee/public-api.mjs +5 -0
- package/esm2022/popup-employee/service/user-popover-service.model.mjs +2 -0
- package/esm2022/popup-employee/service/user-popover.store.mjs +59 -0
- package/esm2022/popup-employee/translations.mjs +107 -0
- package/esm2022/popup-employee/user-popover.model.mjs +2 -0
- package/esm2022/popup-employee/user-popover.providers.mjs +14 -0
- package/esm2022/public_api.mjs +2 -0
- package/esm2022/qualification/lucca-front-ng-qualification.mjs +5 -0
- package/esm2022/qualification/public-api.mjs +4 -0
- package/esm2022/qualification/qualification.model.mjs +2 -0
- package/esm2022/qualification/qualification.module.mjs +19 -0
- package/esm2022/qualification/select/index.mjs +3 -0
- package/esm2022/qualification/select/input/index.mjs +4 -0
- package/esm2022/qualification/select/input/qualification-select-input.component.mjs +60 -0
- package/esm2022/qualification/select/input/qualification-select-input.module.mjs +19 -0
- package/esm2022/qualification/select/input/qualification-select-input.translate.mjs +7 -0
- package/esm2022/qualification/select/input/translations.mjs +27 -0
- package/esm2022/qualification/select/qualification-select.module.mjs +19 -0
- package/esm2022/safe-content/lucca-front-ng-safe-content.mjs +5 -0
- package/esm2022/safe-content/public-api.mjs +4 -0
- package/esm2022/safe-content/safe-content.module.mjs +18 -0
- package/esm2022/safe-content/safe-external-svg.pipe.mjs +42 -0
- package/esm2022/safe-content/safe-html.pipe.mjs +19 -0
- package/esm2022/scroll/lucca-front-ng-scroll.mjs +5 -0
- package/esm2022/scroll/public-api.mjs +4 -0
- package/esm2022/scroll/scroll.directive.mjs +77 -0
- package/esm2022/scroll/scroll.model.mjs +2 -0
- package/esm2022/scroll/scroll.module.mjs +16 -0
- package/esm2022/select/input/index.mjs +4 -0
- package/esm2022/select/input/select-input.component.mjs +249 -0
- package/esm2022/select/input/select-input.model.mjs +179 -0
- package/esm2022/select/input/select-input.module.mjs +19 -0
- package/esm2022/select/lucca-front-ng-select.mjs +5 -0
- package/esm2022/select/public-api.mjs +3 -0
- package/esm2022/select/select.module.mjs +19 -0
- package/esm2022/sidepanel/lucca-front-ng-sidepanel.mjs +5 -0
- package/esm2022/sidepanel/public-api.mjs +4 -0
- package/esm2022/sidepanel/sidepanel.model.mjs +32 -0
- package/esm2022/sidepanel/sidepanel.module.mjs +20 -0
- package/esm2022/sidepanel/sidepanel.service.mjs +25 -0
- package/esm2022/simple-select/api/api-v3.directive.mjs +6 -0
- package/esm2022/simple-select/api/api-v4.directive.mjs +6 -0
- package/esm2022/simple-select/api/api.directive.mjs +6 -0
- package/esm2022/simple-select/api/lucca-front-ng-simple-select-api.mjs +5 -0
- package/esm2022/simple-select/api/public-api.mjs +4 -0
- package/esm2022/simple-select/input/index.mjs +2 -0
- package/esm2022/simple-select/input/panel-ref.factory.mjs +103 -0
- package/esm2022/simple-select/input/select-input.component.mjs +62 -0
- package/esm2022/simple-select/lucca-front-ng-simple-select.mjs +5 -0
- package/esm2022/simple-select/panel/index.mjs +2 -0
- package/esm2022/simple-select/panel/option-selected.pipe.mjs +17 -0
- package/esm2022/simple-select/panel/panel.component.mjs +69 -0
- package/esm2022/simple-select/public-api.mjs +4 -0
- package/esm2022/simple-select/select.model.mjs +3 -0
- package/esm2022/simple-select/select.translate.mjs +7 -0
- package/esm2022/simple-select/translations.mjs +59 -0
- package/esm2022/skeleton/lucca-front-ng-skeleton.mjs +5 -0
- package/esm2022/skeleton/public-api.mjs +7 -0
- package/esm2022/skeleton/skeleton-button/skeleton-button.component.mjs +17 -0
- package/esm2022/skeleton/skeleton-data-table/skeleton-data-table.component.mjs +23 -0
- package/esm2022/skeleton/skeleton-field/skeleton-field.component.mjs +17 -0
- package/esm2022/skeleton/skeleton-header/skeleton-header.component.mjs +17 -0
- package/esm2022/skeleton/skeleton-index-table/skeleton-index-table.component.mjs +23 -0
- package/esm2022/skeleton/skeleton-table/skeleton-table.component.mjs +23 -0
- package/esm2022/statusBadge/lucca-front-ng-statusBadge.mjs +5 -0
- package/esm2022/statusBadge/public-api.mjs +2 -0
- package/esm2022/statusBadge/statusBadge.component.mjs +30 -0
- package/esm2022/tag/lucca-front-ng-tag.mjs +5 -0
- package/esm2022/tag/public-api.mjs +2 -0
- package/esm2022/tag/tag.component.mjs +61 -0
- package/esm2022/time/core/base-picker.component.mjs +47 -0
- package/esm2022/time/core/date-primitives.mjs +2 -0
- package/esm2022/time/core/date.utils.mjs +54 -0
- package/esm2022/time/core/duration.utils.mjs +55 -0
- package/esm2022/time/core/math.utils.mjs +17 -0
- package/esm2022/time/core/misc.utils.mjs +3 -0
- package/esm2022/time/core/repeat-on-hold.directive.mjs +73 -0
- package/esm2022/time/core/time-picker-part.component.mjs +148 -0
- package/esm2022/time/duration-picker/duration-picker.component.mjs +197 -0
- package/esm2022/time/duration-picker/duration-picker.model.mjs +2 -0
- package/esm2022/time/duration-picker/duration-picker.translate.mjs +7 -0
- package/esm2022/time/duration-picker/translations.mjs +43 -0
- package/esm2022/time/lucca-front-ng-time.mjs +5 -0
- package/esm2022/time/public-api.mjs +5 -0
- package/esm2022/time/time-picker/time-picker.component.mjs +230 -0
- package/esm2022/time/time-picker/time-picker.model.mjs +3 -0
- package/esm2022/time/time-picker/time-picker.translate.mjs +7 -0
- package/esm2022/time/time-picker/translations.mjs +43 -0
- package/esm2022/title/lucca-front-ng-title.mjs +5 -0
- package/esm2022/title/public-api.mjs +6 -0
- package/esm2022/title/title-translate.service.mjs +3 -0
- package/esm2022/title/title.model.mjs +2 -0
- package/esm2022/title/title.module.mjs +20 -0
- package/esm2022/title/title.service.mjs +55 -0
- package/esm2022/title/title.strategy.mjs +60 -0
- package/esm2022/toast/lucca-front-ng-toast.mjs +5 -0
- package/esm2022/toast/public-api.mjs +9 -0
- package/esm2022/toast/toasts.component.mjs +62 -0
- package/esm2022/toast/toasts.model.mjs +2 -0
- package/esm2022/toast/toasts.module.mjs +16 -0
- package/esm2022/toast/toasts.service.mjs +37 -0
- package/esm2022/toast/toasts.translate.mjs +7 -0
- package/esm2022/toast/translations.mjs +27 -0
- package/esm2022/tooltip/animation/index.mjs +2 -0
- package/esm2022/tooltip/animation/tooltip.animation.mjs +16 -0
- package/esm2022/tooltip/lucca-front-ng-tooltip.mjs +5 -0
- package/esm2022/tooltip/panel/index.mjs +3 -0
- package/esm2022/tooltip/panel/tooltip-panel.component.mjs +44 -0
- package/esm2022/tooltip/panel/tooltip-panel.module.mjs +16 -0
- package/esm2022/tooltip/public-api.mjs +5 -0
- package/esm2022/tooltip/tooltip.module.mjs +17 -0
- package/esm2022/tooltip/trigger/index.mjs +3 -0
- package/esm2022/tooltip/trigger/tooltip-trigger.directive.mjs +350 -0
- package/esm2022/tooltip/trigger/tooltip-trigger.module.mjs +17 -0
- package/esm2022/user/display/display-format.model.mjs +25 -0
- package/esm2022/user/display/index.mjs +4 -0
- package/esm2022/user/display/user-display.module.mjs +17 -0
- package/esm2022/user/display/user-display.pipe.mjs +72 -0
- package/esm2022/user/lucca-front-ng-user.mjs +5 -0
- package/esm2022/user/picture/index.mjs +3 -0
- package/esm2022/user/picture/user-picture.component.mjs +85 -0
- package/esm2022/user/picture/user-picture.module.mjs +19 -0
- package/esm2022/user/public-api.mjs +8 -0
- package/esm2022/user/select/homonyms/index.mjs +4 -0
- package/esm2022/user/select/homonyms/user-homonyms.component.mjs +72 -0
- package/esm2022/user/select/homonyms/user-homonyms.module.mjs +16 -0
- package/esm2022/user/select/homonyms/user-homonyms.service.mjs +53 -0
- package/esm2022/user/select/index.mjs +6 -0
- package/esm2022/user/select/input/index.mjs +4 -0
- package/esm2022/user/select/input/translations.mjs +35 -0
- package/esm2022/user/select/input/user-select-input.component.mjs +89 -0
- package/esm2022/user/select/input/user-select-input.module.mjs +19 -0
- package/esm2022/user/select/input/user-select-input.translate.mjs +7 -0
- package/esm2022/user/select/me/index.mjs +3 -0
- package/esm2022/user/select/me/me-option.directive.mjs +123 -0
- package/esm2022/user/select/me/me-option.module.mjs +16 -0
- package/esm2022/user/select/searcher/index.mjs +4 -0
- package/esm2022/user/select/searcher/translations.mjs +27 -0
- package/esm2022/user/select/searcher/user-searcher.component.mjs +187 -0
- package/esm2022/user/select/searcher/user-searcher.module.mjs +16 -0
- package/esm2022/user/select/searcher/user-searcher.translate.mjs +7 -0
- package/esm2022/user/select/user-select.module.mjs +22 -0
- package/esm2022/user/service/index.mjs +3 -0
- package/esm2022/user/service/user-service.model.mjs +4 -0
- package/esm2022/user/service/user-v3.service.mjs +51 -0
- package/esm2022/user/tile/index.mjs +3 -0
- package/esm2022/user/tile/user-tile.component.mjs +63 -0
- package/esm2022/user/tile/user-tile.module.mjs +20 -0
- package/esm2022/user/user.model.mjs +2 -0
- package/esm2022/user/user.module.mjs +19 -0
- package/fancy-box/fancy-box.component.d.ts +11 -0
- package/fancy-box/index.d.ts +5 -0
- package/fancy-box/public-api.d.ts +1 -0
- package/fesm2022/lucca-front-ng-a11y.mjs +3 -3
- package/fesm2022/lucca-front-ng-a11y.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-animations.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-api.mjs +48 -48
- package/fesm2022/lucca-front-ng-api.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-button.mjs +4 -4
- package/fesm2022/lucca-front-ng-button.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-callout.mjs +25 -25
- package/fesm2022/lucca-front-ng-callout.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-comment.mjs +9 -9
- package/fesm2022/lucca-front-ng-comment.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-core-select-api.mjs +11 -11
- package/fesm2022/lucca-front-ng-core-select-api.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-core-select-establishment.mjs +11 -11
- package/fesm2022/lucca-front-ng-core-select-establishment.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-core-select-job-qualification.mjs +8 -8
- package/fesm2022/lucca-front-ng-core-select-job-qualification.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-core-select-user.mjs +46 -53
- package/fesm2022/lucca-front-ng-core-select-user.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-core-select.mjs +77 -60
- package/fesm2022/lucca-front-ng-core-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-core.mjs +20 -22
- package/fesm2022/lucca-front-ng-core.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-date.mjs +48 -48
- package/fesm2022/lucca-front-ng-date.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-date2.mjs +775 -197
- package/fesm2022/lucca-front-ng-date2.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-department.mjs +30 -31
- package/fesm2022/lucca-front-ng-department.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-dialog-testing.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-dialog.mjs +35 -42
- package/fesm2022/lucca-front-ng-dialog.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-divider.mjs +57 -0
- package/fesm2022/lucca-front-ng-divider.mjs.map +1 -0
- package/fesm2022/lucca-front-ng-dropdown.mjs +35 -39
- package/fesm2022/lucca-front-ng-dropdown.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-empty-state.mjs +8 -8
- package/fesm2022/lucca-front-ng-empty-state.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-establishment.mjs +49 -49
- package/fesm2022/lucca-front-ng-establishment.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-fancy-box.mjs +46 -0
- package/fesm2022/lucca-front-ng-fancy-box.mjs.map +1 -0
- package/fesm2022/lucca-front-ng-form-field.mjs +90 -164
- package/fesm2022/lucca-front-ng-form-field.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-formly.mjs +79 -81
- package/fesm2022/lucca-front-ng-formly.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-forms-phone-number-input.mjs +10 -10
- package/fesm2022/lucca-front-ng-forms-phone-number-input.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-forms.mjs +72 -55
- package/fesm2022/lucca-front-ng-forms.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-icon.mjs +4 -4
- package/fesm2022/lucca-front-ng-icon.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-inline-message.mjs +3 -3
- package/fesm2022/lucca-front-ng-inline-message.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-input.mjs +21 -21
- package/fesm2022/lucca-front-ng-input.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-link.mjs +143 -0
- package/fesm2022/lucca-front-ng-link.mjs.map +1 -0
- package/fesm2022/lucca-front-ng-modal.mjs +22 -22
- package/fesm2022/lucca-front-ng-modal.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-multi-select.mjs +83 -108
- package/fesm2022/lucca-front-ng-multi-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-new-badge.mjs +3 -3
- package/fesm2022/lucca-front-ng-new-badge.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-number-format.mjs +7 -7
- package/fesm2022/lucca-front-ng-number-format.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-number.mjs +7 -7
- package/fesm2022/lucca-front-ng-number.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-numeric-badge.mjs +17 -5
- package/fesm2022/lucca-front-ng-numeric-badge.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-option.mjs +154 -154
- package/fesm2022/lucca-front-ng-option.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-plg-push.mjs +3 -3
- package/fesm2022/lucca-front-ng-plg-push.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-popover.mjs +26 -31
- package/fesm2022/lucca-front-ng-popover.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-popover2.mjs +19 -12
- package/fesm2022/lucca-front-ng-popover2.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-popup-employee.mjs +26 -41
- package/fesm2022/lucca-front-ng-popup-employee.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-popup.mjs +10 -10
- package/fesm2022/lucca-front-ng-popup.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-qualification.mjs +15 -15
- package/fesm2022/lucca-front-ng-qualification.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-safe-content.mjs +12 -13
- package/fesm2022/lucca-front-ng-safe-content.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-scroll.mjs +7 -7
- package/fesm2022/lucca-front-ng-scroll.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-select.mjs +14 -14
- package/fesm2022/lucca-front-ng-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-sidepanel.mjs +7 -7
- package/fesm2022/lucca-front-ng-sidepanel.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-simple-select.mjs +18 -20
- package/fesm2022/lucca-front-ng-simple-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-skeleton.mjs +77 -16
- package/fesm2022/lucca-front-ng-skeleton.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-statusBadge.mjs +37 -0
- package/fesm2022/lucca-front-ng-statusBadge.mjs.map +1 -0
- package/fesm2022/lucca-front-ng-tag.mjs +3 -3
- package/fesm2022/lucca-front-ng-tag.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-time.mjs +21 -22
- package/fesm2022/lucca-front-ng-time.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-title.mjs +10 -10
- package/fesm2022/lucca-front-ng-title.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-toast.mjs +12 -12
- package/fesm2022/lucca-front-ng-toast.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-tooltip.mjs +104 -141
- package/fesm2022/lucca-front-ng-tooltip.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-user.mjs +85 -94
- package/fesm2022/lucca-front-ng-user.mjs.map +1 -1
- package/form-field/form-field.component.d.ts +29 -33
- package/forms/number-input/number-input.component.d.ts +13 -10
- package/link/index.d.ts +5 -0
- package/link/link.component.d.ts +23 -0
- package/link/link.translate.d.ts +7 -0
- package/link/public-api.d.ts +1 -0
- package/link/translations.d.ts +23 -0
- package/modal/modal-panel.component.d.ts +1 -1
- package/multi-select/displayer/displayer-input.directive.d.ts +2 -2
- package/multi-select/input/panel-ref.factory.d.ts +0 -2
- package/multi-select/input/select-input.component.d.ts +1 -3
- package/multi-select/panel/panel.component.d.ts +0 -1
- package/multi-select/public-api.d.ts +1 -2
- package/multi-select/select.validators.d.ts +5 -0
- package/numeric-badge/numeric-badge.component.d.ts +3 -1
- package/option/picker/option-picker-advanced.component.d.ts +1 -1
- package/option/picker/option-picker.component.d.ts +1 -1
- package/option/picker/tree-option-picker-advanced.component.d.ts +1 -1
- package/option/picker/tree-option-picker.component.d.ts +1 -1
- package/package.json +156 -21
- package/popover2/popover.directive.d.ts +8 -2
- package/popup-employee/popup-employee.translate.d.ts +0 -2
- package/popup-employee/translations.d.ts +0 -16
- package/safe-content/safe-content.module.d.ts +0 -3
- package/safe-content/safe-html.pipe.d.ts +1 -0
- package/schematics/action-icon/index.js +2 -3
- package/schematics/action-icon/migration.js +3 -2
- package/schematics/empty-state-title/index.js +1 -2
- package/schematics/lib/angular-template.js +7 -6
- package/schematics/lib/css-mapper.js +4 -4
- package/schematics/lib/file-update.js +3 -2
- package/schematics/lib/html-ast.js +4 -4
- package/schematics/lib/local-deps/installer.js +2 -1
- package/schematics/lib/local-deps/package-lock.json +30 -30
- package/schematics/lib/local-deps/package.json +2 -2
- package/schematics/lib/local-deps/postcss-selector-parser.js +0 -1
- package/schematics/lib/local-deps/postcss-value-parser.js +0 -1
- package/schematics/lib/migration-test.js +5 -4
- package/schematics/lib/schematics.js +2 -1
- package/schematics/lib/scss-ast.js +11 -10
- package/schematics/lib/typescript-ast.js +2 -1
- package/schematics/new-icons/index.js +3 -4
- package/schematics/new-icons/migration.js +4 -3
- package/schematics/ng-add/index.js +2 -1
- package/schematics/ng-add/tasks.js +5 -4
- package/schematics/palettes/index.js +0 -1
- package/schematics/tokens-spacing/index.js +0 -1
- package/select/input/select-input.component.d.ts +1 -1
- package/simple-select/input/panel-ref.factory.d.ts +0 -2
- package/simple-select/panel/panel.component.d.ts +0 -1
- package/skeleton/public-api.d.ts +4 -1
- package/skeleton/skeleton-data-table/skeleton-data-table.component.d.ts +12 -0
- package/skeleton/skeleton-index-table/skeleton-index-table.component.d.ts +12 -0
- package/skeleton/skeleton-table/skeleton-table.component.d.ts +12 -0
- package/src/components/_dropdown.scss +6 -0
- package/src/components/_popup.scss +1 -1
- package/src/components/_sidepanel.scss +0 -4
- package/src/components/cdk/_overlay.scss +0 -4
- package/statusBadge/index.d.ts +5 -0
- package/statusBadge/public-api.d.ts +1 -0
- package/statusBadge/statusBadge.component.d.ts +12 -0
- package/time/core/base-picker.component.d.ts +1 -1
- package/time/core/date.utils.d.ts +4 -4
- package/time/core/misc.utils.d.ts +1 -1
- package/tooltip/panel/tooltip-panel.component.d.ts +2 -2
- package/tooltip/trigger/tooltip-trigger.directive.d.ts +19 -4
- package/user/picture/user-picture.component.d.ts +1 -1
- package/user/picture/user-picture.module.d.ts +3 -4
- package/user/tile/user-tile.component.d.ts +1 -1
- package/user/tile/user-tile.module.d.ts +4 -4
- package/multi-select/select.utils.d.ts +0 -14
- package/tooltip/trigger/ellipsis.ruler.d.ts +0 -27
|
@@ -21,6 +21,7 @@ export declare class PortalDirective<T = unknown> implements OnChanges, OnDestro
|
|
|
21
21
|
* @see https://github.com/angular/angular/pull/51887
|
|
22
22
|
*/
|
|
23
23
|
private updateEmbeddedViewContext;
|
|
24
|
+
static ngTemplateContextGuard<T>(_dir: PortalDirective<T>, ctx: unknown): ctx is void;
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<PortalDirective<any>, never>;
|
|
25
26
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PortalDirective<any>, "[luPortal]", never, { "luPortal": { "alias": "luPortal"; "required": true; }; "luPortalContext": { "alias": "luPortalContext"; "required": false; }; }, {}, never, never, true, never>;
|
|
26
27
|
}
|
package/core/type/style.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Available CSS palettes
|
|
3
3
|
*/
|
|
4
|
-
export type Palette = 'success' | 'warning' | 'error' | 'product' | '
|
|
4
|
+
export type Palette = 'success' | 'warning' | 'error' | 'product' | 'neutral' | 'none' | 'primary' | 'grey';
|
|
5
5
|
export type DecorativePalette = 'kiwi' | 'lime' | 'cucumber' | 'mint' | 'glacier' | 'lagoon' | 'blueberry' | 'lavender' | 'grape' | 'watermelon' | 'pumpkin' | 'pineapple';
|
|
@@ -35,5 +35,5 @@ export declare abstract class ALuCoreSelectApiDirective<TOption, TParams = Recor
|
|
|
35
35
|
}>;
|
|
36
36
|
ngOnDestroy(): void;
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ALuCoreSelectApiDirective<any, any>, never>;
|
|
38
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ALuCoreSelectApiDirective<any, any>, never, never, {}, {}, never, never,
|
|
38
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ALuCoreSelectApiDirective<any, any>, never, never, {}, {}, never, never, false, never>;
|
|
39
39
|
}
|
|
@@ -76,8 +76,8 @@ export declare abstract class ALuSelectInputComponent<TOption, TValue> implement
|
|
|
76
76
|
protected emptyClue(): void;
|
|
77
77
|
closePanel(): void;
|
|
78
78
|
writeValue(value: TValue): void;
|
|
79
|
-
updateValue(value: TValue, skipPanelOpen?: boolean
|
|
79
|
+
updateValue(value: TValue, skipPanelOpen?: boolean): void;
|
|
80
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<ALuSelectInputComponent<any, any>, never>;
|
|
81
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ALuSelectInputComponent<any, any>, never, never, { "placeholder": { "alias": "placeholder"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "addOptionLabel": { "alias": "addOptionLabel"; "required": false; }; "addOptionStrategy": { "alias": "addOptionStrategy"; "required": false; }; "overlayConfig": { "alias": "overlayConfig"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionComparer": { "alias": "optionComparer"; "required": false; }; "optionKey": { "alias": "optionKey"; "required": false; }; "optionTpl": { "alias": "optionTpl"; "required": false; "isSignal": true; }; "valueTpl": { "alias": "valueTpl"; "required": false; "isSignal": true; }; "panelHeaderTpl": { "alias": "panelHeaderTpl"; "required": false; "isSignal": true; }; }, { "optionTpl": "optionTplChange"; "valueTpl": "valueTplChange"; "panelHeaderTpl": "panelHeaderTplChange"; "clueChange": "clueChange"; "nextPage": "nextPage"; "previousPage": "previousPage"; "addOption": "addOption"; }, never, never,
|
|
81
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ALuSelectInputComponent<any, any>, never, never, { "placeholder": { "alias": "placeholder"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "addOptionLabel": { "alias": "addOptionLabel"; "required": false; }; "addOptionStrategy": { "alias": "addOptionStrategy"; "required": false; }; "overlayConfig": { "alias": "overlayConfig"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionComparer": { "alias": "optionComparer"; "required": false; }; "optionKey": { "alias": "optionKey"; "required": false; }; "optionTpl": { "alias": "optionTpl"; "required": false; "isSignal": true; }; "valueTpl": { "alias": "valueTpl"; "required": false; "isSignal": true; }; "panelHeaderTpl": { "alias": "panelHeaderTpl"; "required": false; "isSignal": true; }; }, { "optionTpl": "optionTplChange"; "valueTpl": "valueTplChange"; "panelHeaderTpl": "panelHeaderTplChange"; "clueChange": "clueChange"; "nextPage": "nextPage"; "previousPage": "previousPage"; "addOption": "addOption"; }, never, never, false, never>;
|
|
82
82
|
static ngAcceptInputType_clearable: unknown;
|
|
83
83
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { OverlayRef } from '@angular/cdk/overlay';
|
|
2
1
|
import { Provider } from '@angular/core';
|
|
3
2
|
export declare function provideLuSelectLabelsAndIds(): Provider[];
|
|
4
|
-
export declare function
|
|
3
|
+
export declare function provideLuSelectOverlayContainer(): Provider[];
|
|
@@ -4,4 +4,4 @@ export type GroupTemplateLocation = 'group-header' | 'option' | 'none';
|
|
|
4
4
|
* In order to avoid a blinking when we go from empty clue to a clue
|
|
5
5
|
* We need to delay the change of group displayer location by waiting for the options to be updated.
|
|
6
6
|
*/
|
|
7
|
-
export declare function getGroupTemplateLocation(hasGrouping: boolean, clueChange$: Observable<string>, options$: Observable<unknown[]
|
|
7
|
+
export declare function getGroupTemplateLocation(hasGrouping: boolean, clueChange$: Observable<string>, options$: Observable<unknown[]>): Observable<GroupTemplateLocation>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const sanitizeClueFilter: (clue: string, delimiter: string) => string;
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Provider, Type } from '@angular/core';
|
|
3
2
|
import { CoreSelectApiTotalCountProvider } from '@lucca-front/ng/core-select';
|
|
4
3
|
import { ALuCoreSelectApiDirective } from '@lucca-front/ng/core-select/api';
|
|
5
4
|
import { LuDisplayFormat } from '@lucca-front/ng/user';
|
|
6
5
|
import { Observable } from 'rxjs';
|
|
7
6
|
import { LuCoreSelectUser, LuCoreSelectWithAdditionnalInformation } from './user-option.model';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare function provideCoreSelectUsersContext(directiveFn: () => Type<LuCoreSelectUsersDirective>): Provider[];
|
|
10
8
|
export declare class LuCoreSelectUsersDirective<T extends LuCoreSelectUser = LuCoreSelectUser> extends ALuCoreSelectApiDirective<LuCoreSelectWithAdditionnalInformation<T>> implements CoreSelectApiTotalCountProvider {
|
|
11
9
|
#private;
|
|
12
10
|
protected httpClient: HttpClient;
|
|
@@ -23,6 +21,7 @@ export declare class LuCoreSelectUsersDirective<T extends LuCoreSelectUser = LuC
|
|
|
23
21
|
searchDelimiter: import("@angular/core").InputSignal<string>;
|
|
24
22
|
constructor();
|
|
25
23
|
protected defaultUrl: import("@angular/core").Signal<string>;
|
|
24
|
+
protected displayMeOption$: Observable<boolean>;
|
|
26
25
|
protected urlOrDefault: import("@angular/core").Signal<string>;
|
|
27
26
|
protected clue: import("@angular/core").Signal<string>;
|
|
28
27
|
protected params$: Observable<Record<string, string | number | boolean>>;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { CalendarMode } from './calendar2/calendar-mode';
|
|
2
|
+
import { CellStatus } from './calendar2/cell-status';
|
|
3
|
+
import { DateRange } from './calendar2/date-range';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare abstract class AbstractDateComponent {
|
|
6
|
+
protected locale: string;
|
|
7
|
+
protected dateFormat: string;
|
|
8
|
+
intlDateTimeFormat: Intl.DateTimeFormat;
|
|
9
|
+
intlDateTimeFormatMonth: Intl.DateTimeFormat;
|
|
10
|
+
intlDateTimeFormatYear: Intl.DateTimeFormat;
|
|
11
|
+
intl: import("./date2.translate").Date2Translate;
|
|
12
|
+
onTouched?: () => void;
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
ranges: import("@angular/core").InputSignal<DateRange[]>;
|
|
15
|
+
hideToday: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
16
|
+
hasTodayButton: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
17
|
+
clearable: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
18
|
+
mode: import("@angular/core").InputSignal<CalendarMode>;
|
|
19
|
+
hideWeekend: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
20
|
+
getCellInfo: import("@angular/core").InputSignal<(day: Date, mode: CalendarMode) => CellStatus>;
|
|
21
|
+
min: import("@angular/core").InputSignal<Date>;
|
|
22
|
+
max: import("@angular/core").InputSignal<Date>;
|
|
23
|
+
calendarMode: import("@angular/core").WritableSignal<CalendarMode>;
|
|
24
|
+
dateFormatLocalized: import("@angular/core").Signal<string>;
|
|
25
|
+
protected currentDate: import("@angular/core").WritableSignal<Date>;
|
|
26
|
+
protected tabbableDate: import("@angular/core").WritableSignal<Date>;
|
|
27
|
+
isInMinMax(date: Date, mode: CalendarMode): boolean;
|
|
28
|
+
isValidDate(date: Date): boolean;
|
|
29
|
+
prev(mode: CalendarMode): void;
|
|
30
|
+
next(mode: CalendarMode): void;
|
|
31
|
+
registerOnTouched(fn: () => void): void;
|
|
32
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
33
|
+
move(direction: 1 | -1, mode: CalendarMode): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDateComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AbstractDateComponent, "ng-component", never, { "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "hideToday": { "alias": "hideToday"; "required": false; "isSignal": true; }; "hasTodayButton": { "alias": "hasTodayButton"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "hideWeekend": { "alias": "hideWeekend"; "required": false; "isSignal": true; }; "getCellInfo": { "alias": "getCellInfo"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
36
|
+
}
|
|
@@ -1,21 +1,24 @@
|
|
|
1
|
-
import { DateRange } from './date-range';
|
|
2
1
|
import { CellStatus } from './cell-status';
|
|
2
|
+
import { DateRange } from './date-range';
|
|
3
|
+
export interface RangeInfo {
|
|
4
|
+
range?: DateRange;
|
|
5
|
+
isStart: boolean;
|
|
6
|
+
isEnd: boolean;
|
|
7
|
+
label?: string;
|
|
8
|
+
}
|
|
3
9
|
export interface CalendarCellInfo {
|
|
4
10
|
day: number;
|
|
5
|
-
isWeekend: boolean;
|
|
6
|
-
isOverflow: boolean;
|
|
7
11
|
date: Date;
|
|
8
12
|
status: CellStatus;
|
|
9
|
-
isCurrent: boolean;
|
|
10
|
-
classes: string[];
|
|
11
13
|
disabled: boolean;
|
|
14
|
+
isWeekend: boolean;
|
|
15
|
+
isCurrent: boolean;
|
|
16
|
+
isOverflow: boolean;
|
|
17
|
+
isSelected: boolean;
|
|
18
|
+
noButton: boolean;
|
|
12
19
|
label?: string;
|
|
13
|
-
rangeInfo:
|
|
14
|
-
|
|
15
|
-
isStart: boolean;
|
|
16
|
-
isEnd: boolean;
|
|
17
|
-
label?: string;
|
|
18
|
-
};
|
|
20
|
+
rangeInfo: RangeInfo;
|
|
21
|
+
ngClasses: Record<string, boolean>;
|
|
19
22
|
}
|
|
20
23
|
export interface CalendarMonthInfo {
|
|
21
24
|
date: Date;
|
|
@@ -23,10 +26,14 @@ export interface CalendarMonthInfo {
|
|
|
23
26
|
long: string;
|
|
24
27
|
isCurrent: boolean;
|
|
25
28
|
status: CellStatus;
|
|
29
|
+
rangeInfo: RangeInfo;
|
|
30
|
+
ngClasses: Record<string, boolean>;
|
|
26
31
|
}
|
|
27
32
|
export interface CalendarYearInfo {
|
|
28
33
|
date: Date;
|
|
29
|
-
|
|
34
|
+
name: string;
|
|
30
35
|
isCurrent: boolean;
|
|
31
36
|
status: CellStatus;
|
|
37
|
+
rangeInfo: RangeInfo;
|
|
38
|
+
ngClasses: Record<string, boolean>;
|
|
32
39
|
}
|
|
@@ -11,9 +11,11 @@ export declare class Calendar2Component implements OnInit {
|
|
|
11
11
|
intl: import("../date2.translate").Date2Translate;
|
|
12
12
|
showOverflow: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
13
13
|
enableOverflow: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
14
|
+
removeYearOverflow: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
14
15
|
hideToday: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
15
16
|
hasTodayButton: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
16
17
|
hideWeekend: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
18
|
+
disableModeChange: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
17
19
|
date: import("@angular/core").ModelSignal<Date>;
|
|
18
20
|
tabbableDate: import("@angular/core").ModelSignal<Date>;
|
|
19
21
|
mode: import("@angular/core").ModelSignal<CalendarMode>;
|
|
@@ -28,6 +30,7 @@ export declare class Calendar2Component implements OnInit {
|
|
|
28
30
|
nextPage: import("@angular/core").OutputEmitterRef<void>;
|
|
29
31
|
previousPage: import("@angular/core").OutputEmitterRef<void>;
|
|
30
32
|
dateClicked: import("@angular/core").OutputEmitterRef<Date>;
|
|
33
|
+
dateHovered: import("@angular/core").ModelSignal<Date>;
|
|
31
34
|
todayLabel: string;
|
|
32
35
|
thisMonthLabel: string;
|
|
33
36
|
thisYearLabel: string;
|
|
@@ -49,7 +52,7 @@ export declare class Calendar2Component implements OnInit {
|
|
|
49
52
|
ngOnInit(): void;
|
|
50
53
|
onCellClicked(date: Date): void;
|
|
51
54
|
dateToCellInfo(date: Date, isOverflow?: boolean): CalendarCellInfo;
|
|
52
|
-
getRangeInfo(date: Date, scope: CalendarMode): {
|
|
55
|
+
getRangeInfo(date: Date, scope: CalendarMode, isOverflow?: boolean): {
|
|
53
56
|
range: DateRange;
|
|
54
57
|
isStart: boolean;
|
|
55
58
|
isEnd: boolean;
|
|
@@ -57,5 +60,5 @@ export declare class Calendar2Component implements OnInit {
|
|
|
57
60
|
class: string;
|
|
58
61
|
};
|
|
59
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<Calendar2Component, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Calendar2Component, "lu-calendar2", never, { "showOverflow": { "alias": "showOverflow"; "required": false; "isSignal": true; }; "enableOverflow": { "alias": "enableOverflow"; "required": false; "isSignal": true; }; "hideToday": { "alias": "hideToday"; "required": false; "isSignal": true; }; "hasTodayButton": { "alias": "hasTodayButton"; "required": false; "isSignal": true; }; "hideWeekend": { "alias": "hideWeekend"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "tabbableDate": { "alias": "tabbableDate"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "displayMode": { "alias": "displayMode"; "required": false; "isSignal": true; }; "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "getCellInfo": { "alias": "getCellInfo"; "required": false; "isSignal": true; }; }, { "date": "dateChange"; "tabbableDate": "tabbableDateChange"; "mode": "modeChange"; "displayMode": "displayModeChange"; "nextPage": "nextPage"; "previousPage": "previousPage"; "dateClicked": "dateClicked"; }, never, never, true, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Calendar2Component, "lu-calendar2", never, { "showOverflow": { "alias": "showOverflow"; "required": false; "isSignal": true; }; "enableOverflow": { "alias": "enableOverflow"; "required": false; "isSignal": true; }; "removeYearOverflow": { "alias": "removeYearOverflow"; "required": false; "isSignal": true; }; "hideToday": { "alias": "hideToday"; "required": false; "isSignal": true; }; "hasTodayButton": { "alias": "hasTodayButton"; "required": false; "isSignal": true; }; "hideWeekend": { "alias": "hideWeekend"; "required": false; "isSignal": true; }; "disableModeChange": { "alias": "disableModeChange"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "tabbableDate": { "alias": "tabbableDate"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "displayMode": { "alias": "displayMode"; "required": false; "isSignal": true; }; "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "getCellInfo": { "alias": "getCellInfo"; "required": false; "isSignal": true; }; "dateHovered": { "alias": "dateHovered"; "required": false; "isSignal": true; }; }, { "date": "dateChange"; "tabbableDate": "tabbableDateChange"; "mode": "modeChange"; "displayMode": "displayModeChange"; "nextPage": "nextPage"; "previousPage": "previousPage"; "dateClicked": "dateClicked"; "dateHovered": "dateHoveredChange"; }, never, never, true, never>;
|
|
61
64
|
}
|
package/date2/date-format.d.ts
CHANGED
|
@@ -2,35 +2,19 @@ import { ConnectionPositionPair } from '@angular/cdk/overlay';
|
|
|
2
2
|
import { ElementRef } from '@angular/core';
|
|
3
3
|
import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
|
|
4
4
|
import { PopoverDirective } from '@lucca-front/ng/popover2';
|
|
5
|
+
import { AbstractDateComponent } from '../abstract-date-component';
|
|
5
6
|
import { CalendarMode } from '../calendar2/calendar-mode';
|
|
6
7
|
import { Calendar2Component } from '../calendar2/calendar2.component';
|
|
7
8
|
import { CellStatus } from '../calendar2/cell-status';
|
|
8
|
-
import { DateRange } from '../calendar2/date-range';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class DateInputComponent implements ControlValueAccessor, Validator {
|
|
10
|
+
export declare class DateInputComponent extends AbstractDateComponent implements ControlValueAccessor, Validator {
|
|
11
11
|
#private;
|
|
12
|
-
intl: import("../date2.translate").Date2Translate;
|
|
13
|
-
onTouched?: () => void;
|
|
14
|
-
disabled: boolean;
|
|
15
|
-
min: import("@angular/core").InputSignal<Date>;
|
|
16
|
-
max: import("@angular/core").InputSignal<Date>;
|
|
17
|
-
ranges: import("@angular/core").InputSignal<DateRange[]>;
|
|
18
|
-
disableOverflow: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
19
|
-
hideOverflow: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
20
|
-
hideToday: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
21
|
-
hasTodayButton: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
22
|
-
clearable: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
23
12
|
placeholder: import("@angular/core").InputSignal<string>;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
getCellInfo: import("@angular/core").InputSignal<(day: Date, mode: CalendarMode) => CellStatus>;
|
|
13
|
+
enableOverflow: import("@angular/core").InputSignal<boolean>;
|
|
14
|
+
showOverflow: import("@angular/core").InputSignal<boolean>;
|
|
27
15
|
popoverPositions: ConnectionPositionPair[];
|
|
28
|
-
calendarMode: import("@angular/core").WritableSignal<CalendarMode>;
|
|
29
16
|
inputFocused: import("@angular/core").WritableSignal<boolean>;
|
|
30
|
-
protected currentDate: import("@angular/core").WritableSignal<Date>;
|
|
31
|
-
protected tabbableDate: import("@angular/core").WritableSignal<Date>;
|
|
32
17
|
selectedDate: import("@angular/core").WritableSignal<Date>;
|
|
33
|
-
dateFromWriteValue: import("@angular/core").WritableSignal<Date>;
|
|
34
18
|
calendar: import("@angular/core").Signal<Calendar2Component>;
|
|
35
19
|
displayValue: import("@angular/core").Signal<string>;
|
|
36
20
|
userTextInput: import("@angular/core").WritableSignal<string>;
|
|
@@ -40,19 +24,11 @@ export declare class DateInputComponent implements ControlValueAccessor, Validat
|
|
|
40
24
|
get isNavigationButtonFocused(): boolean;
|
|
41
25
|
constructor();
|
|
42
26
|
openPopover(ref: PopoverDirective): void;
|
|
43
|
-
arrowDown(popoverRef: PopoverDirective): void;
|
|
44
27
|
validate(control: AbstractControl<Date, Date>): ValidationErrors;
|
|
45
|
-
isValidDate(date: Date): boolean;
|
|
46
|
-
isInMinMax(date: Date, mode: CalendarMode): boolean;
|
|
47
28
|
writeValue(date: Date): void;
|
|
48
29
|
registerOnChange(fn: (value: Date) => void): void;
|
|
49
|
-
registerOnTouched(fn: () => void): void;
|
|
50
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
51
|
-
prev(): void;
|
|
52
|
-
next(): void;
|
|
53
30
|
clear(input: HTMLInputElement): void;
|
|
54
31
|
currentDateChangeFromCalendar(date: Date): void;
|
|
55
|
-
move(direction: 1 | -1): void;
|
|
56
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "lu-date-input", never, { "
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "lu-date-input", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "enableOverflow": { "alias": "enableOverflow"; "required": false; "isSignal": true; }; "showOverflow": { "alias": "showOverflow"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
58
34
|
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { ConnectionPositionPair } from '@angular/cdk/overlay';
|
|
2
|
+
import { ElementRef, Signal } from '@angular/core';
|
|
3
|
+
import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
|
|
4
|
+
import { PortalContent } from '@lucca-front/ng/core';
|
|
5
|
+
import { PopoverDirective } from '@lucca-front/ng/popover2';
|
|
6
|
+
import { AbstractDateComponent } from '../abstract-date-component';
|
|
7
|
+
import { CalendarMode } from '../calendar2/calendar-mode';
|
|
8
|
+
import { Calendar2Component } from '../calendar2/calendar2.component';
|
|
9
|
+
import { CellStatus } from '../calendar2/cell-status';
|
|
10
|
+
import { DateRange } from '../calendar2/date-range';
|
|
11
|
+
import { CalendarShortcut } from './calendar-shortcut';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
export declare class DateRangeInputComponent extends AbstractDateComponent implements ControlValueAccessor, Validator {
|
|
14
|
+
#private;
|
|
15
|
+
hasTwoCalendars: Signal<boolean>;
|
|
16
|
+
idSuffix: number;
|
|
17
|
+
startTextInputRef: Signal<ElementRef<HTMLInputElement>>;
|
|
18
|
+
endTextInputRef: Signal<ElementRef<HTMLInputElement>>;
|
|
19
|
+
selectedRange: import("@angular/core").WritableSignal<DateRange>;
|
|
20
|
+
dateHovered: import("@angular/core").WritableSignal<Date>;
|
|
21
|
+
placeholder: import("@angular/core").InputSignal<string>;
|
|
22
|
+
label: PortalContent;
|
|
23
|
+
popoverPositions: ConnectionPositionPair[];
|
|
24
|
+
inputFocused: import("@angular/core").WritableSignal<boolean>;
|
|
25
|
+
editedField: import("@angular/core").WritableSignal<0 | 1 | -1>;
|
|
26
|
+
highlightedField: import("@angular/core").WritableSignal<0 | 1 | -1>;
|
|
27
|
+
shortcuts: import("@angular/core").InputSignal<CalendarShortcut[]>;
|
|
28
|
+
autocomplete: string;
|
|
29
|
+
protected currentRightDate: Signal<Date>;
|
|
30
|
+
protected currentStartDisplayDate: Signal<Date>;
|
|
31
|
+
protected currentEndDisplayDate: Signal<Date>;
|
|
32
|
+
calendars: Signal<readonly Calendar2Component[]>;
|
|
33
|
+
combinedGetCellInfo: (date: Date, mode: CalendarMode) => CellStatus;
|
|
34
|
+
calendarRanges: Signal<DateRange[]>;
|
|
35
|
+
startLabel: Signal<string>;
|
|
36
|
+
startTextInput: import("@angular/core").WritableSignal<string>;
|
|
37
|
+
endLabel: Signal<string>;
|
|
38
|
+
endTextInput: import("@angular/core").WritableSignal<string>;
|
|
39
|
+
previousButton: Signal<ElementRef<Element>>;
|
|
40
|
+
nextButton: Signal<ElementRef<Element>>;
|
|
41
|
+
focusedCalendarIndex: import("@angular/core").WritableSignal<number>;
|
|
42
|
+
focusedCalendar: Signal<Calendar2Component>;
|
|
43
|
+
get isNavigationButtonFocused(): boolean;
|
|
44
|
+
constructor();
|
|
45
|
+
getNextCalendarDate(date: Date): Date;
|
|
46
|
+
popoverClosed(): void;
|
|
47
|
+
setupInputEffect(inputSignal: Signal<string | null>, rangeProperty: 'start' | 'end'): void;
|
|
48
|
+
inputBlur(): void;
|
|
49
|
+
fixOrderIfNeeded(): void;
|
|
50
|
+
tabbableDateChange(date: Date, calendarIndex: number): void;
|
|
51
|
+
openPopover(ref: PopoverDirective, propertyToFocus?: 'start' | 'end', focusTabbableDate?: boolean): void;
|
|
52
|
+
dateClicked(date: Date, popoverRef: PopoverDirective): void;
|
|
53
|
+
arrowDown(popoverRef: PopoverDirective, fieldToFocus: 'start' | 'end'): void;
|
|
54
|
+
validate(control: AbstractControl<DateRange, DateRange>): ValidationErrors;
|
|
55
|
+
writeValue(value: DateRange): void;
|
|
56
|
+
registerOnChange(fn: (value: DateRange) => void): void;
|
|
57
|
+
clear(start: HTMLInputElement, end: HTMLInputElement): void;
|
|
58
|
+
currentDateChangeFromCalendar(date: Date): void;
|
|
59
|
+
getDateLabelForInput(date: Date): string;
|
|
60
|
+
selectShortcut(shortcut: CalendarShortcut, popover: PopoverDirective): void;
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeInputComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeInputComponent, "lu-date-range-input", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "shortcuts": { "alias": "shortcuts"; "required": false; "isSignal": true; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; }, {}, never, never, true, never>;
|
|
63
|
+
}
|
package/date2/public-api.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from './calendar2/calendar2.component';
|
|
2
2
|
export * from './calendar2/cell-status';
|
|
3
3
|
export * from './date-input/date-input.component';
|
|
4
|
+
export * from './date-range-input/date-range-input.component';
|
|
5
|
+
export * from './date-range-input/calendar-shortcut';
|
|
4
6
|
export * from './date-format';
|
package/date2/utils.d.ts
CHANGED
|
@@ -4,4 +4,5 @@ import { CalendarMode } from './calendar2/calendar-mode';
|
|
|
4
4
|
export declare function getIntlWeekDay(date: Date): CalendarWeekDay;
|
|
5
5
|
export declare function getJSFirstDayOfWeek(weekInfo: CalendarWeekInfo): Day;
|
|
6
6
|
export declare function comparePeriods(mode: CalendarMode, a: Date, b: Date): boolean;
|
|
7
|
+
export declare function compareCalendarPeriods(mode: CalendarMode, a: Date, b: Date): boolean;
|
|
7
8
|
export declare function startOfPeriod(mode: CalendarMode, date: Date): Date;
|
|
@@ -11,7 +11,7 @@ export declare class DialogRoutingComponent<C> implements OnInit {
|
|
|
11
11
|
readonly dialogComponentContent: import("@angular/core").Signal<import("@angular/cdk/portal").ComponentType<C>>;
|
|
12
12
|
protected readonly dialogTemplate: import("@angular/core").Signal<TemplateRef<any>>;
|
|
13
13
|
readonly customInjector: Injector;
|
|
14
|
-
ngOnInit(): void
|
|
14
|
+
ngOnInit(): Promise<void>;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogRoutingComponent<any>, never>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<DialogRoutingComponent<any>, "lu-dialog-routing", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, OnChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DividerComponent implements OnChanges {
|
|
4
|
+
#private;
|
|
5
|
+
content: ElementRef;
|
|
6
|
+
divider: boolean;
|
|
7
|
+
withRole: import("@angular/core").InputSignalWithTransform<boolean, boolean>;
|
|
8
|
+
role: import("@angular/core").Signal<string>;
|
|
9
|
+
get attrRole(): string;
|
|
10
|
+
vertical: false;
|
|
11
|
+
size: 'M' | 'S';
|
|
12
|
+
ngOnChanges(): void;
|
|
13
|
+
updateClasses(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DividerComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DividerComponent, "lu-divider", never, { "withRole": { "alias": "withRole"; "required": false; "isSignal": true; }; "vertical": { "alias": "vertical"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
16
|
+
static ngAcceptInputType_vertical: unknown;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './divider.component';
|
|
@@ -10,5 +10,5 @@ export declare class LuDropdownItemDirective extends ALuDropdownItem implements
|
|
|
10
10
|
focus(): void;
|
|
11
11
|
ngOnDestroy(): void;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownItemDirective, never>;
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LuDropdownItemDirective, "[luDropdownItem]", ["LuDropdownItem"], {}, { "onSelect": "onSelect"; }, never, never,
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LuDropdownItemDirective, "[luDropdownItem]", ["LuDropdownItem"], {}, { "onSelect": "onSelect"; }, never, never, false, never>;
|
|
14
14
|
}
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./dropdown-item.directive";
|
|
3
|
-
/**
|
|
4
|
-
* @deprecated use `LuDropdownItemDirective` instead
|
|
5
|
-
*/
|
|
6
3
|
export declare class LuDropdownItemModule {
|
|
7
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownItemModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownItemModule,
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownItemModule, [typeof i1.LuDropdownItemDirective], never, [typeof i1.LuDropdownItemDirective]>;
|
|
9
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<LuDropdownItemModule>;
|
|
10
7
|
}
|
|
@@ -36,5 +36,5 @@ export declare class LuDropdownPanelComponent extends ALuPopoverPanel implements
|
|
|
36
36
|
onOpen(): void;
|
|
37
37
|
private focusFirstItem;
|
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownPanelComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LuDropdownPanelComponent, "lu-dropdown", ["LuDropdownPanel"], { "inputPanelClasses": { "alias": "panel-classes"; "required": false; }; "inputContentClasses": { "alias": "content-classes"; "required": false; }; }, { "close": "close"; "open": "open"; "hovered": "hovered"; }, ["optionsQL"], ["*"],
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LuDropdownPanelComponent, "lu-dropdown", ["LuDropdownPanel"], { "inputPanelClasses": { "alias": "panel-classes"; "required": false; }; "inputContentClasses": { "alias": "content-classes"; "required": false; }; }, { "close": "close"; "open": "open"; "hovered": "hovered"; }, ["optionsQL"], ["*"], false, never>;
|
|
40
40
|
}
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./dropdown-panel.component";
|
|
3
|
-
|
|
4
|
-
* @deprecated use `LuDropdownPanelComponent` instead
|
|
5
|
-
*/
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
6
4
|
export declare class LuDropdownPanelModule {
|
|
7
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownPanelModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownPanelModule,
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownPanelModule, [typeof i1.LuDropdownPanelComponent], [typeof i2.CommonModule], [typeof i1.LuDropdownPanelComponent]>;
|
|
9
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<LuDropdownPanelModule>;
|
|
10
8
|
}
|
|
@@ -38,5 +38,5 @@ export declare class LuDropdownTriggerDirective<TPanel extends ILuDropdownPanel
|
|
|
38
38
|
protected _emitOpen(): void;
|
|
39
39
|
protected _emitClose(): void;
|
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownTriggerDirective<any>, never>;
|
|
41
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LuDropdownTriggerDirective<any>, "[luDropdown]", ["LuDropdownTrigger"], { "inputPanel": { "alias": "luDropdown"; "required": false; }; "inputPosition": { "alias": "luDropdownPosition"; "required": false; }; "inputAlignment": { "alias": "luDropdownAlignment"; "required": false; }; "inputDisabled": { "alias": "luDropdownDisabled"; "required": false; }; "inputOverlap": { "alias": "luDropdownOverlap"; "required": false; }; }, { "onOpen": "luDropdownOnOpen"; "onClose": "luDropdownOnClose"; }, never, never,
|
|
41
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LuDropdownTriggerDirective<any>, "[luDropdown]", ["LuDropdownTrigger"], { "inputPanel": { "alias": "luDropdown"; "required": false; }; "inputPosition": { "alias": "luDropdownPosition"; "required": false; }; "inputAlignment": { "alias": "luDropdownAlignment"; "required": false; }; "inputDisabled": { "alias": "luDropdownDisabled"; "required": false; }; "inputOverlap": { "alias": "luDropdownOverlap"; "required": false; }; }, { "onOpen": "luDropdownOnOpen"; "onClose": "luDropdownOnClose"; }, never, never, false, never>;
|
|
42
42
|
}
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./dropdown-trigger.directive";
|
|
3
|
-
|
|
4
|
-
* @deprecated use `LuDropdownTriggerDirective` instead
|
|
5
|
-
*/
|
|
3
|
+
import * as i2 from "@angular/cdk/overlay";
|
|
6
4
|
export declare class LuDropdownTriggerModule {
|
|
7
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuDropdownTriggerModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownTriggerModule,
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LuDropdownTriggerModule, [typeof i1.LuDropdownTriggerDirective], [typeof i2.OverlayModule], [typeof i1.LuDropdownTriggerDirective]>;
|
|
9
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<LuDropdownTriggerModule>;
|
|
10
8
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibHVjY2EtZnJvbnQtbmctYTExeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3BhY2thZ2VzL25nL2ExMXkvbHVjY2EtZnJvbnQtbmctYTExeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './skip-links/skip-links.component';
|
|
2
|
+
export * from './skip-links/skip-links.translate';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3BhY2thZ2VzL25nL2ExMXkvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMsbUNBQW1DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NraXAtbGlua3Mvc2tpcC1saW5rcy5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9za2lwLWxpbmtzL3NraXAtbGlua3MudHJhbnNsYXRlJztcbiJdfQ==
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { DOCUMENT } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { getIntl } from '@lucca-front/ng/core';
|
|
4
|
+
import { LU_SKIP_LINKS_TRANSLATIONS } from './skip-links.translate';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export class LuSkipLinksComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.#document = inject(DOCUMENT);
|
|
9
|
+
this.intl = getIntl(LU_SKIP_LINKS_TRANSLATIONS);
|
|
10
|
+
}
|
|
11
|
+
#document;
|
|
12
|
+
anchor(hash, e) {
|
|
13
|
+
e.preventDefault();
|
|
14
|
+
this.#document.location.hash = '';
|
|
15
|
+
this.#document.location.hash = hash;
|
|
16
|
+
}
|
|
17
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: LuSkipLinksComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
18
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.1", type: LuSkipLinksComponent, isStandalone: true, selector: "lu-skip-links", ngImport: i0, template: "<nav role=\"navigation\" id=\"top\" class=\"skipLinks\" [attr.aria-label]=\"intl.Goto\">\n\t<a\n\t\tclass=\"skipLinks-action palette-neutral mod-XS\"\n\t\thref=\"#lucca-banner-solutions-container\"\n\t\t(click)=\"anchor('#lucca-banner-solutions-container', $event)\"\n\t\t>{{ intl.Goto_Nav_Banner }}</a\n\t>\n\t<a class=\"skipLinks-action palette-neutral mod-XS\" href=\"#navSide\" (click)=\"anchor('#navSide', $event)\">{{ intl.Goto_Nav_Navside }}</a>\n\t<a class=\"skipLinks-action palette-neutral mod-XS\" href=\"#main-content\" (click)=\"anchor('#main-content', $event)\"\n\t\t>{{ intl.Goto_Content }}</a\n\t>\n</nav>\n", styles: [".skipLinks{position:fixed;list-style-type:none;justify-content:center;display:flex;margin:0;padding:0;z-index:9010;inset:var(--pr-t-spacings-150);bottom:auto}.skipLinks-action{border:0;margin:0;font-weight:600;border-radius:var(--commons-borderRadius-M);font-size:var(--sizes-XS-fontSize);line-height:var(--sizes-XS-lineHeight);padding:var(--pr-t-spacings-50) var(--pr-t-spacings-100);transition:all var(--commons-animations-durations-fast);background-color:var(--palettes-neutral-600);display:inline-block;position:relative;text-decoration:none;vertical-align:baseline;white-space:nowrap;color:var(--palettes-neutral-0);cursor:pointer}.skipLinks-action:focus-visible{outline:2px solid var(--palettes-product-700);outline-offset:2px}.skipLinks-action:not(:focus-visible){border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;contain:paint}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
19
|
+
}
|
|
20
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: LuSkipLinksComponent, decorators: [{
|
|
21
|
+
type: Component,
|
|
22
|
+
args: [{ selector: 'lu-skip-links', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, encapsulation: ViewEncapsulation.None, template: "<nav role=\"navigation\" id=\"top\" class=\"skipLinks\" [attr.aria-label]=\"intl.Goto\">\n\t<a\n\t\tclass=\"skipLinks-action palette-neutral mod-XS\"\n\t\thref=\"#lucca-banner-solutions-container\"\n\t\t(click)=\"anchor('#lucca-banner-solutions-container', $event)\"\n\t\t>{{ intl.Goto_Nav_Banner }}</a\n\t>\n\t<a class=\"skipLinks-action palette-neutral mod-XS\" href=\"#navSide\" (click)=\"anchor('#navSide', $event)\">{{ intl.Goto_Nav_Navside }}</a>\n\t<a class=\"skipLinks-action palette-neutral mod-XS\" href=\"#main-content\" (click)=\"anchor('#main-content', $event)\"\n\t\t>{{ intl.Goto_Content }}</a\n\t>\n</nav>\n", styles: [".skipLinks{position:fixed;list-style-type:none;justify-content:center;display:flex;margin:0;padding:0;z-index:9010;inset:var(--pr-t-spacings-150);bottom:auto}.skipLinks-action{border:0;margin:0;font-weight:600;border-radius:var(--commons-borderRadius-M);font-size:var(--sizes-XS-fontSize);line-height:var(--sizes-XS-lineHeight);padding:var(--pr-t-spacings-50) var(--pr-t-spacings-100);transition:all var(--commons-animations-durations-fast);background-color:var(--palettes-neutral-600);display:inline-block;position:relative;text-decoration:none;vertical-align:baseline;white-space:nowrap;color:var(--palettes-neutral-0);cursor:pointer}.skipLinks-action:focus-visible{outline:2px solid var(--palettes-product-700);outline-offset:2px}.skipLinks-action:not(:focus-visible){border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;contain:paint}\n"] }]
|
|
23
|
+
}] });
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2tpcC1saW5rcy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hMTF5L3NraXAtbGlua3Mvc2tpcC1saW5rcy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hMTF5L3NraXAtbGlua3Mvc2tpcC1saW5rcy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDM0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUYsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQy9DLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQVVwRSxNQUFNLE9BQU8sb0JBQW9CO0lBUmpDO1FBU0MsY0FBUyxHQUFHLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUVuQixTQUFJLEdBQUcsT0FBTyxDQUFDLDBCQUEwQixDQUFDLENBQUM7S0FPckQ7SUFUQSxTQUFTLENBQW9CO0lBSTdCLE1BQU0sQ0FBQyxJQUFZLEVBQUUsQ0FBUTtRQUM1QixDQUFDLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDbkIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztRQUNsQyxJQUFJLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDO0lBQ3JDLENBQUM7OEdBVFcsb0JBQW9CO2tHQUFwQixvQkFBb0IseUVDYmpDLGluQkFZQTs7MkZEQ2Esb0JBQW9CO2tCQVJoQyxTQUFTOytCQUNDLGVBQWUsbUJBR1IsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLGlCQUNELGlCQUFpQixDQUFDLElBQUkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBET0NVTUVOVCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbmplY3QsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBnZXRJbnRsIH0gZnJvbSAnQGx1Y2NhLWZyb250L25nL2NvcmUnO1xuaW1wb3J0IHsgTFVfU0tJUF9MSU5LU19UUkFOU0xBVElPTlMgfSBmcm9tICcuL3NraXAtbGlua3MudHJhbnNsYXRlJztcblxuQENvbXBvbmVudCh7XG5cdHNlbGVjdG9yOiAnbHUtc2tpcC1saW5rcycsXG5cdHRlbXBsYXRlVXJsOiAnLi9za2lwLWxpbmtzLmNvbXBvbmVudC5odG1sJyxcblx0c3R5bGVVcmxzOiBbJy4vc2tpcC1saW5rcy5jb21wb25lbnQuc2NzcyddLFxuXHRjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcblx0c3RhbmRhbG9uZTogdHJ1ZSxcblx0ZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgTHVTa2lwTGlua3NDb21wb25lbnQge1xuXHQjZG9jdW1lbnQgPSBpbmplY3QoRE9DVU1FTlQpO1xuXG5cdHByb3RlY3RlZCBpbnRsID0gZ2V0SW50bChMVV9TS0lQX0xJTktTX1RSQU5TTEFUSU9OUyk7XG5cblx0YW5jaG9yKGhhc2g6IHN0cmluZywgZTogRXZlbnQpIHtcblx0XHRlLnByZXZlbnREZWZhdWx0KCk7XG5cdFx0dGhpcy4jZG9jdW1lbnQubG9jYXRpb24uaGFzaCA9ICcnO1xuXHRcdHRoaXMuI2RvY3VtZW50LmxvY2F0aW9uLmhhc2ggPSBoYXNoO1xuXHR9XG59XG4iLCI8bmF2IHJvbGU9XCJuYXZpZ2F0aW9uXCIgaWQ9XCJ0b3BcIiBjbGFzcz1cInNraXBMaW5rc1wiIFthdHRyLmFyaWEtbGFiZWxdPVwiaW50bC5Hb3RvXCI+XG5cdDxhXG5cdFx0Y2xhc3M9XCJza2lwTGlua3MtYWN0aW9uIHBhbGV0dGUtbmV1dHJhbCBtb2QtWFNcIlxuXHRcdGhyZWY9XCIjbHVjY2EtYmFubmVyLXNvbHV0aW9ucy1jb250YWluZXJcIlxuXHRcdChjbGljayk9XCJhbmNob3IoJyNsdWNjYS1iYW5uZXItc29sdXRpb25zLWNvbnRhaW5lcicsICRldmVudClcIlxuXHRcdD57eyBpbnRsLkdvdG9fTmF2X0Jhbm5lciB9fTwvYVxuXHQ+XG5cdDxhIGNsYXNzPVwic2tpcExpbmtzLWFjdGlvbiBwYWxldHRlLW5ldXRyYWwgbW9kLVhTXCIgaHJlZj1cIiNuYXZTaWRlXCIgKGNsaWNrKT1cImFuY2hvcignI25hdlNpZGUnLCAkZXZlbnQpXCI+e3sgaW50bC5Hb3RvX05hdl9OYXZzaWRlIH19PC9hPlxuXHQ8YSBjbGFzcz1cInNraXBMaW5rcy1hY3Rpb24gcGFsZXR0ZS1uZXV0cmFsIG1vZC1YU1wiIGhyZWY9XCIjbWFpbi1jb250ZW50XCIgKGNsaWNrKT1cImFuY2hvcignI21haW4tY29udGVudCcsICRldmVudClcIlxuXHRcdD57eyBpbnRsLkdvdG9fQ29udGVudCB9fTwvYVxuXHQ+XG48L25hdj5cbiJdfQ==
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { Translations } from './translations';
|
|
3
|
+
export const LU_SKIP_LINKS_TRANSLATIONS = new InjectionToken('LuModalTranslations', {
|
|
4
|
+
factory: () => luSkipLinksTranslations,
|
|
5
|
+
});
|
|
6
|
+
export class ALuSkipLinksLabel {
|
|
7
|
+
}
|
|
8
|
+
export const luSkipLinksTranslations = Translations;
|
|
9
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2tpcC1saW5rcy50cmFuc2xhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hMTF5L3NraXAtbGlua3Mvc2tpcC1saW5rcy50cmFuc2xhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUvQyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFOUMsTUFBTSxDQUFDLE1BQU0sMEJBQTBCLEdBQUcsSUFBSSxjQUFjLENBQW1DLHFCQUFxQixFQUFFO0lBQ3JILE9BQU8sRUFBRSxHQUFHLEVBQUUsQ0FBQyx1QkFBdUI7Q0FDdEMsQ0FBQyxDQUFDO0FBUUgsTUFBTSxPQUFnQixpQkFBaUI7Q0FLdEM7QUFFRCxNQUFNLENBQUMsTUFBTSx1QkFBdUIsR0FBcUMsWUFBWSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0aW9uVG9rZW4gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEx1VHJhbnNsYXRpb24gfSBmcm9tICdAbHVjY2EtZnJvbnQvbmcvY29yZSc7XG5pbXBvcnQgeyBUcmFuc2xhdGlvbnMgfSBmcm9tICcuL3RyYW5zbGF0aW9ucyc7XG5cbmV4cG9ydCBjb25zdCBMVV9TS0lQX0xJTktTX1RSQU5TTEFUSU9OUyA9IG5ldyBJbmplY3Rpb25Ub2tlbjxMdVRyYW5zbGF0aW9uPElMdVNraXBMaW5rc0xhYmVsPj4oJ0x1TW9kYWxUcmFuc2xhdGlvbnMnLCB7XG5cdGZhY3Rvcnk6ICgpID0+IGx1U2tpcExpbmtzVHJhbnNsYXRpb25zLFxufSk7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSUx1U2tpcExpbmtzTGFiZWwge1xuXHRHb3RvOiBzdHJpbmc7XG5cdEdvdG9fTmF2X0Jhbm5lcjogc3RyaW5nO1xuXHRHb3RvX05hdl9OYXZzaWRlOiBzdHJpbmc7XG5cdEdvdG9fQ29udGVudDogc3RyaW5nO1xufVxuZXhwb3J0IGFic3RyYWN0IGNsYXNzIEFMdVNraXBMaW5rc0xhYmVsIHtcblx0R290bzogc3RyaW5nO1xuXHRHb3RvX05hdl9CYW5uZXI6IHN0cmluZztcblx0R290b19OYXZfTmF2c2lkZTogc3RyaW5nO1xuXHRHb3RvX0NvbnRlbnQ6IHN0cmluZztcbn1cblxuZXhwb3J0IGNvbnN0IGx1U2tpcExpbmtzVHJhbnNsYXRpb25zOiBMdVRyYW5zbGF0aW9uPElMdVNraXBMaW5rc0xhYmVsPiA9IFRyYW5zbGF0aW9ucztcbiJdfQ==
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export const Translations = {
|
|
2
|
+
en: {
|
|
3
|
+
Goto: 'Quick access',
|
|
4
|
+
Goto_Nav_Banner: 'Go to the main navigation menu',
|
|
5
|
+
Goto_Nav_Navside: 'Go to the internal navigation menu',
|
|
6
|
+
Goto_Content: 'Go to content',
|
|
7
|
+
},
|
|
8
|
+
de: {
|
|
9
|
+
Goto: 'Schnellzugriff',
|
|
10
|
+
Goto_Nav_Banner: 'Zur Hauptnavigation',
|
|
11
|
+
Goto_Nav_Navside: 'Zur internen Navigation',
|
|
12
|
+
Goto_Content: 'Zum Inhalt',
|
|
13
|
+
},
|
|
14
|
+
fr: {
|
|
15
|
+
Goto: 'Accès rapides',
|
|
16
|
+
Goto_Nav_Banner: 'Aller à la navigation principale',
|
|
17
|
+
Goto_Nav_Navside: 'Aller à la navigation interne',
|
|
18
|
+
Goto_Content: 'Aller au contenu',
|
|
19
|
+
},
|
|
20
|
+
it: {
|
|
21
|
+
Goto: 'Accesso rapido',
|
|
22
|
+
Goto_Nav_Banner: 'Vai alla navigazione principale',
|
|
23
|
+
Goto_Nav_Navside: 'Vai alla navigazione interna',
|
|
24
|
+
Goto_Content: 'Vai al contenuto',
|
|
25
|
+
},
|
|
26
|
+
nl: {
|
|
27
|
+
Goto: 'Snelle toegang',
|
|
28
|
+
Goto_Nav_Banner: 'Ga naar hoofdnavigatie',
|
|
29
|
+
Goto_Nav_Navside: 'Ga naar interne navigatie',
|
|
30
|
+
Goto_Content: 'Ga naar inhoud',
|
|
31
|
+
},
|
|
32
|
+
'nl-BE': {
|
|
33
|
+
Goto: 'Snelle toegang',
|
|
34
|
+
Goto_Nav_Banner: 'Ga naar hoofdnavigatie',
|
|
35
|
+
Goto_Nav_Navside: 'Ga naar interne navigatie',
|
|
36
|
+
Goto_Content: 'Ga naar inhoud',
|
|
37
|
+
},
|
|
38
|
+
es: {
|
|
39
|
+
Goto: 'Accesos rápidos',
|
|
40
|
+
Goto_Nav_Banner: 'Ir a la navegación principal',
|
|
41
|
+
Goto_Nav_Navside: 'Ir a la navegación interna',
|
|
42
|
+
Goto_Content: 'Ir al contenido',
|
|
43
|
+
},
|
|
44
|
+
pt: {
|
|
45
|
+
Goto: 'Acesso rápido',
|
|
46
|
+
Goto_Nav_Banner: 'Ir para a navegação principal',
|
|
47
|
+
Goto_Nav_Navside: 'Ir para a navegação interna',
|
|
48
|
+
Goto_Content: 'Ir para o conteúdo',
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNsYXRpb25zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvbmcvYTExeS9za2lwLWxpbmtzL3RyYW5zbGF0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxZQUFZLEdBQUc7SUFDM0IsRUFBRSxFQUFFO1FBQ0gsSUFBSSxFQUFFLGNBQWM7UUFDcEIsZUFBZSxFQUFFLGdDQUFnQztRQUNqRCxnQkFBZ0IsRUFBRSxvQ0FBb0M7UUFDdEQsWUFBWSxFQUFFLGVBQWU7S0FDN0I7SUFDRCxFQUFFLEVBQUU7UUFDSCxJQUFJLEVBQUUsZ0JBQWdCO1FBQ3RCLGVBQWUsRUFBRSxxQkFBcUI7UUFDdEMsZ0JBQWdCLEVBQUUseUJBQXlCO1FBQzNDLFlBQVksRUFBRSxZQUFZO0tBQzFCO0lBQ0QsRUFBRSxFQUFFO1FBQ0gsSUFBSSxFQUFFLGVBQWU7UUFDckIsZUFBZSxFQUFFLGtDQUFrQztRQUNuRCxnQkFBZ0IsRUFBRSwrQkFBK0I7UUFDakQsWUFBWSxFQUFFLGtCQUFrQjtLQUNoQztJQUNELEVBQUUsRUFBRTtRQUNILElBQUksRUFBRSxnQkFBZ0I7UUFDdEIsZUFBZSxFQUFFLGlDQUFpQztRQUNsRCxnQkFBZ0IsRUFBRSw4QkFBOEI7UUFDaEQsWUFBWSxFQUFFLGtCQUFrQjtLQUNoQztJQUNELEVBQUUsRUFBRTtRQUNILElBQUksRUFBRSxnQkFBZ0I7UUFDdEIsZUFBZSxFQUFFLHdCQUF3QjtRQUN6QyxnQkFBZ0IsRUFBRSwyQkFBMkI7UUFDN0MsWUFBWSxFQUFFLGdCQUFnQjtLQUM5QjtJQUNELE9BQU8sRUFBRTtRQUNSLElBQUksRUFBRSxnQkFBZ0I7UUFDdEIsZUFBZSxFQUFFLHdCQUF3QjtRQUN6QyxnQkFBZ0IsRUFBRSwyQkFBMkI7UUFDN0MsWUFBWSxFQUFFLGdCQUFnQjtLQUM5QjtJQUNELEVBQUUsRUFBRTtRQUNILElBQUksRUFBRSxpQkFBaUI7UUFDdkIsZUFBZSxFQUFFLDhCQUE4QjtRQUMvQyxnQkFBZ0IsRUFBRSw0QkFBNEI7UUFDOUMsWUFBWSxFQUFFLGlCQUFpQjtLQUMvQjtJQUNELEVBQUUsRUFBRTtRQUNILElBQUksRUFBRSxlQUFlO1FBQ3JCLGVBQWUsRUFBRSwrQkFBK0I7UUFDaEQsZ0JBQWdCLEVBQUUsNkJBQTZCO1FBQy9DLFlBQVksRUFBRSxvQkFBb0I7S0FDbEM7Q0FDRCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IFRyYW5zbGF0aW9ucyA9IHtcblx0ZW46IHtcblx0XHRHb3RvOiAnUXVpY2sgYWNjZXNzJyxcblx0XHRHb3RvX05hdl9CYW5uZXI6ICdHbyB0byB0aGUgbWFpbiBuYXZpZ2F0aW9uIG1lbnUnLFxuXHRcdEdvdG9fTmF2X05hdnNpZGU6ICdHbyB0byB0aGUgaW50ZXJuYWwgbmF2aWdhdGlvbiBtZW51Jyxcblx0XHRHb3RvX0NvbnRlbnQ6ICdHbyB0byBjb250ZW50Jyxcblx0fSxcblx0ZGU6IHtcblx0XHRHb3RvOiAnU2NobmVsbHp1Z3JpZmYnLFxuXHRcdEdvdG9fTmF2X0Jhbm5lcjogJ1p1ciBIYXVwdG5hdmlnYXRpb24nLFxuXHRcdEdvdG9fTmF2X05hdnNpZGU6ICdadXIgaW50ZXJuZW4gTmF2aWdhdGlvbicsXG5cdFx0R290b19Db250ZW50OiAnWnVtIEluaGFsdCcsXG5cdH0sXG5cdGZyOiB7XG5cdFx0R290bzogJ0FjY8OocyByYXBpZGVzJyxcblx0XHRHb3RvX05hdl9CYW5uZXI6ICdBbGxlciDDoCBsYSBuYXZpZ2F0aW9uIHByaW5jaXBhbGUnLFxuXHRcdEdvdG9fTmF2X05hdnNpZGU6ICdBbGxlciDDoCBsYSBuYXZpZ2F0aW9uIGludGVybmUnLFxuXHRcdEdvdG9fQ29udGVudDogJ0FsbGVyIGF1IGNvbnRlbnUnLFxuXHR9LFxuXHRpdDoge1xuXHRcdEdvdG86ICdBY2Nlc3NvIHJhcGlkbycsXG5cdFx0R290b19OYXZfQmFubmVyOiAnVmFpIGFsbGEgbmF2aWdhemlvbmUgcHJpbmNpcGFsZScsXG5cdFx0R290b19OYXZfTmF2c2lkZTogJ1ZhaSBhbGxhIG5hdmlnYXppb25lIGludGVybmEnLFxuXHRcdEdvdG9fQ29udGVudDogJ1ZhaSBhbCBjb250ZW51dG8nLFxuXHR9LFxuXHRubDoge1xuXHRcdEdvdG86ICdTbmVsbGUgdG9lZ2FuZycsXG5cdFx0R290b19OYXZfQmFubmVyOiAnR2EgbmFhciBob29mZG5hdmlnYXRpZScsXG5cdFx0R290b19OYXZfTmF2c2lkZTogJ0dhIG5hYXIgaW50ZXJuZSBuYXZpZ2F0aWUnLFxuXHRcdEdvdG9fQ29udGVudDogJ0dhIG5hYXIgaW5ob3VkJyxcblx0fSxcblx0J25sLUJFJzoge1xuXHRcdEdvdG86ICdTbmVsbGUgdG9lZ2FuZycsXG5cdFx0R290b19OYXZfQmFubmVyOiAnR2EgbmFhciBob29mZG5hdmlnYXRpZScsXG5cdFx0R290b19OYXZfTmF2c2lkZTogJ0dhIG5hYXIgaW50ZXJuZSBuYXZpZ2F0aWUnLFxuXHRcdEdvdG9fQ29udGVudDogJ0dhIG5hYXIgaW5ob3VkJyxcblx0fSxcblx0ZXM6IHtcblx0XHRHb3RvOiAnQWNjZXNvcyByw6FwaWRvcycsXG5cdFx0R290b19OYXZfQmFubmVyOiAnSXIgYSBsYSBuYXZlZ2FjacOzbiBwcmluY2lwYWwnLFxuXHRcdEdvdG9fTmF2X05hdnNpZGU6ICdJciBhIGxhIG5hdmVnYWNpw7NuIGludGVybmEnLFxuXHRcdEdvdG9fQ29udGVudDogJ0lyIGFsIGNvbnRlbmlkbycsXG5cdH0sXG5cdHB0OiB7XG5cdFx0R290bzogJ0FjZXNzbyByw6FwaWRvJyxcblx0XHRHb3RvX05hdl9CYW5uZXI6ICdJciBwYXJhIGEgbmF2ZWdhw6fDo28gcHJpbmNpcGFsJyxcblx0XHRHb3RvX05hdl9OYXZzaWRlOiAnSXIgcGFyYSBhIG5hdmVnYcOnw6NvIGludGVybmEnLFxuXHRcdEdvdG9fQ29udGVudDogJ0lyIHBhcmEgbyBjb250ZcO6ZG8nLFxuXHR9LFxufTtcbiJdfQ==
|