@lucca-front/ng 16.3.0-rc.1 → 16.3.0-rc.3
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/a11y/public-api.d.ts +1 -1
- package/animations/public-api.d.ts +4 -1
- package/api/public-api.d.ts +4 -1
- package/callout/callout.component.d.ts +50 -0
- package/callout/callout.translate.d.ts +7 -0
- package/callout/index.d.ts +5 -0
- package/callout/public-api.d.ts +2 -0
- package/core/public-api.d.ts +7 -1
- package/core/type/index.d.ts +1 -0
- package/core/type/style.d.ts +4 -0
- package/date/public-api.d.ts +6 -1
- package/department/public-api.d.ts +4 -1
- package/dropdown/public-api.d.ts +4 -1
- package/esm2022/a11y/lucca-front-ng-a11y.mjs +1 -1
- package/esm2022/a11y/public-api.mjs +2 -5
- package/esm2022/a11y/skip-links/skip-links.component.mjs +27 -0
- package/esm2022/a11y/skip-links/skip-links.translate.mjs +27 -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 +1 -1
- package/esm2022/animations/public-api.mjs +5 -5
- 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 +17 -0
- package/esm2022/api/lucca-front-ng-api.mjs +1 -1
- package/esm2022/api/public-api.mjs +5 -5
- package/esm2022/api/select/api-select.module.mjs +20 -0
- package/esm2022/api/select/feeder/api-feeder.component.mjs +94 -0
- package/esm2022/api/select/feeder/api-feeder.model.mjs +11 -0
- package/esm2022/api/select/feeder/api-feeder.module.mjs +17 -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 +53 -0
- package/esm2022/api/select/input/api-select-input.module.mjs +17 -0
- package/esm2022/api/select/input/index.mjs +3 -0
- package/esm2022/api/select/pager/api-pager.component.mjs +100 -0
- package/esm2022/api/select/pager/api-pager.model.mjs +56 -0
- package/esm2022/api/select/pager/api-pager.module.mjs +17 -0
- package/esm2022/api/select/pager/index.mjs +4 -0
- package/esm2022/api/select/searcher/api-searcher.component.mjs +237 -0
- package/esm2022/api/select/searcher/api-searcher.model.mjs +67 -0
- package/esm2022/api/select/searcher/api-searcher.module.mjs +17 -0
- package/esm2022/api/select/searcher/index.mjs +4 -0
- package/esm2022/api/service/api-hybrid.service.mjs +66 -0
- package/esm2022/api/service/api-service.model.mjs +3 -0
- package/esm2022/api/service/api-v3.service.mjs +73 -0
- package/esm2022/api/service/api-v4.service.mjs +72 -0
- package/esm2022/api/service/index.mjs +5 -0
- package/esm2022/callout/callout.component.mjs +81 -0
- package/esm2022/callout/callout.translate.mjs +16 -0
- package/esm2022/callout/lucca-front-ng-callout.mjs +5 -0
- package/esm2022/callout/public-api.mjs +3 -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 +233 -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 +84 -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 +1 -1
- package/esm2022/core/public-api.mjs +8 -5
- package/esm2022/core/translate/index.mjs +3 -0
- package/esm2022/core/translate/intl.model.mjs +17 -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/index.mjs +2 -0
- package/esm2022/core/type/style.mjs +2 -0
- package/esm2022/date/adapter/date-adapter.module.mjs +17 -0
- package/esm2022/date/adapter/date-adapter.pipe.mjs +26 -0
- package/esm2022/date/adapter/index.mjs +3 -0
- package/esm2022/date/calendar/calendar-input.component.mjs +333 -0
- package/esm2022/date/calendar/calendar-input.module.mjs +17 -0
- package/esm2022/date/calendar/calendar-item.class.mjs +43 -0
- package/esm2022/date/calendar/calendar-item.factory.mjs +38 -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 +21 -0
- package/esm2022/date/input/date-input.directive.mjs +138 -0
- package/esm2022/date/input/date-input.module.mjs +17 -0
- package/esm2022/date/input/date-input.translate.mjs +39 -0
- package/esm2022/date/input/index.mjs +4 -0
- package/esm2022/date/lucca-front-ng-date.mjs +1 -1
- package/esm2022/date/picker/date-picker.component.mjs +110 -0
- package/esm2022/date/picker/date-picker.module.mjs +17 -0
- package/esm2022/date/picker/index.mjs +3 -0
- package/esm2022/date/public-api.mjs +7 -5
- package/esm2022/date/select/date-select-input.component.mjs +101 -0
- package/esm2022/date/select/date-select-input.module.mjs +17 -0
- package/esm2022/date/select/date-select-input.translate.mjs +31 -0
- package/esm2022/date/select/index.mjs +4 -0
- package/esm2022/department/department.model.mjs +2 -0
- package/esm2022/department/department.module.mjs +17 -0
- package/esm2022/department/lucca-front-ng-department.mjs +1 -1
- package/esm2022/department/public-api.mjs +5 -5
- package/esm2022/department/select/department-select.module.mjs +18 -0
- package/esm2022/department/select/feeder/department-feeder.component.mjs +83 -0
- package/esm2022/department/select/feeder/department-feeder.module.mjs +17 -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 +68 -0
- package/esm2022/department/select/input/department-select-input.module.mjs +17 -0
- package/esm2022/department/select/input/department-select-input.translate.mjs +16 -0
- package/esm2022/department/select/input/index.mjs +4 -0
- package/esm2022/department/service/department-service.model.mjs +4 -0
- package/esm2022/department/service/department-v3.service.mjs +44 -0
- package/esm2022/department/service/index.mjs +3 -0
- package/esm2022/dropdown/dropdown.module.mjs +19 -0
- package/esm2022/dropdown/item/dropdown-item.directive.mjs +56 -0
- package/esm2022/dropdown/item/dropdown-item.model.mjs +3 -0
- package/esm2022/dropdown/item/dropdown-item.module.mjs +18 -0
- package/esm2022/dropdown/item/index.mjs +4 -0
- package/esm2022/dropdown/lucca-front-ng-dropdown.mjs +1 -1
- package/esm2022/dropdown/panel/dropdown-panel.component.mjs +112 -0
- package/esm2022/dropdown/panel/dropdown-panel.model.mjs +2 -0
- package/esm2022/dropdown/panel/dropdown-panel.module.mjs +19 -0
- package/esm2022/dropdown/panel/index.mjs +4 -0
- package/esm2022/dropdown/public-api.mjs +5 -5
- package/esm2022/dropdown/trigger/dropdown-trigger.directive.mjs +122 -0
- package/esm2022/dropdown/trigger/dropdown-trigger.module.mjs +19 -0
- package/esm2022/dropdown/trigger/index.mjs +3 -0
- package/esm2022/establishment/establishment.model.mjs +2 -0
- package/esm2022/establishment/establishment.module.mjs +17 -0
- package/esm2022/establishment/lucca-front-ng-establishment.mjs +1 -1
- package/esm2022/establishment/public-api.mjs +5 -5
- package/esm2022/establishment/select/establishment-select.module.mjs +21 -0
- package/esm2022/establishment/select/for-legal-units/for-legal-units.directive.mjs +48 -0
- package/esm2022/establishment/select/for-legal-units/for-legal-units.module.mjs +17 -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 +127 -0
- package/esm2022/establishment/select/input/establishment-select-input.module.mjs +17 -0
- package/esm2022/establishment/select/input/establishment-select-input.translate.mjs +16 -0
- package/esm2022/establishment/select/input/index.mjs +4 -0
- package/esm2022/establishment/select/legal-unit-selector/index.mjs +3 -0
- package/esm2022/establishment/select/legal-unit-selector/legal-unit-selector.directive.mjs +105 -0
- package/esm2022/establishment/select/legal-unit-selector/legal-unit-selector.module.mjs +17 -0
- package/esm2022/establishment/select/searcher/establishment-searcher.component.mjs +148 -0
- package/esm2022/establishment/select/searcher/establishment-searcher.module.mjs +17 -0
- package/esm2022/establishment/select/searcher/index.mjs +3 -0
- package/esm2022/establishment/select/select-all/establishment-select-all.component.mjs +96 -0
- package/esm2022/establishment/select/select-all/establishment-select-all.module.mjs +17 -0
- package/esm2022/establishment/select/select-all/establishment-select-all.translate.mjs +23 -0
- package/esm2022/establishment/select/select-all/index.mjs +4 -0
- package/esm2022/establishment/service/establishment-service.model.mjs +4 -0
- package/esm2022/establishment/service/establishment.service.mjs +38 -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 +38 -0
- package/esm2022/formly/formly.config.mjs +79 -0
- package/esm2022/formly/formly.module.mjs +109 -0
- package/esm2022/formly/formly.utils.mjs +10 -0
- package/esm2022/formly/lucca-front-ng-formly.mjs +1 -1
- package/esm2022/formly/public-api.mjs +5 -5
- 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/inline-message/inline-message.component.mjs +24 -0
- package/esm2022/inline-message/lucca-front-ng-inline-message.mjs +5 -0
- package/esm2022/inline-message/public-api.mjs +2 -0
- package/esm2022/input/clearer/clearer.component.mjs +36 -0
- package/esm2022/input/clearer/clearer.model.mjs +3 -0
- package/esm2022/input/clearer/clearer.module.mjs +17 -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 +60 -0
- package/esm2022/input/displayer/input-displayer.model.mjs +6 -0
- package/esm2022/input/displayer/input-displayer.module.mjs +17 -0
- package/esm2022/input/input.directive.mjs +43 -0
- package/esm2022/input/input.model.mjs +54 -0
- package/esm2022/input/input.module.mjs +19 -0
- package/esm2022/input/lucca-front-ng-input.mjs +1 -1
- package/esm2022/input/public-api.mjs +6 -5
- package/esm2022/modal/lucca-front-ng-modal.mjs +1 -1
- 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 +125 -0
- package/esm2022/modal/modal-ref.factory.mjs +61 -0
- package/esm2022/modal/modal-ref.model.mjs +11 -0
- package/esm2022/modal/modal.model.mjs +2 -0
- package/esm2022/modal/modal.module.mjs +27 -0
- package/esm2022/modal/modal.service.mjs +22 -0
- package/esm2022/modal/modal.token.mjs +9 -0
- package/esm2022/modal/modal.translate.mjs +22 -0
- package/esm2022/modal/modal.utils.mjs +9 -0
- package/esm2022/modal/public-api.mjs +12 -5
- package/esm2022/new-badge/lucca-front-ng-new-badge.mjs +5 -0
- package/esm2022/new-badge/new-badge.component.mjs +15 -0
- package/esm2022/new-badge/public-api.mjs +2 -0
- package/esm2022/number/lucca-front-ng-number.mjs +1 -1
- package/esm2022/number/number.module.mjs +17 -0
- package/esm2022/number/number.pipe.mjs +37 -0
- package/esm2022/number/public-api.mjs +3 -5
- package/esm2022/numeric-badge/lucca-front-ng-numeric-badge.mjs +5 -0
- package/esm2022/numeric-badge/numeric-badge/numeric-badge.component.mjs +37 -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 +77 -0
- package/esm2022/option/item/option-item.model.mjs +3 -0
- package/esm2022/option/item/option-item.module.mjs +17 -0
- package/esm2022/option/item/tree-option-item.component.mjs +137 -0
- package/esm2022/option/item/tree-option-item.model.mjs +7 -0
- package/esm2022/option/item/tree-option-item.module.mjs +17 -0
- package/esm2022/option/item/tree-option-item.translate.mjs +15 -0
- package/esm2022/option/lucca-front-ng-option.mjs +1 -1
- package/esm2022/option/operator/feeder/index.mjs +5 -0
- package/esm2022/option/operator/feeder/option-feeder.component.mjs +34 -0
- package/esm2022/option/operator/feeder/option-feeder.module.mjs +17 -0
- package/esm2022/option/operator/feeder/tree-option-feeder.component.mjs +34 -0
- package/esm2022/option/operator/feeder/tree-option-feeder.module.mjs +17 -0
- package/esm2022/option/operator/for-groups/for-groups.directive.mjs +90 -0
- package/esm2022/option/operator/for-groups/for-groups.module.mjs +17 -0
- package/esm2022/option/operator/for-groups/index.mjs +3 -0
- package/esm2022/option/operator/for-options/for-options.directive.mjs +51 -0
- package/esm2022/option/operator/for-options/for-options.module.mjs +17 -0
- package/esm2022/option/operator/for-options/for-tree-options.directive.mjs +30 -0
- package/esm2022/option/operator/for-options/for-tree-options.module.mjs +17 -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 +21 -0
- package/esm2022/option/operator/pager/index.mjs +5 -0
- package/esm2022/option/operator/pager/option-pager.component.mjs +54 -0
- package/esm2022/option/operator/pager/option-pager.module.mjs +17 -0
- package/esm2022/option/operator/pager/tree-option-pager.component.mjs +72 -0
- package/esm2022/option/operator/pager/tree-option-pager.module.mjs +17 -0
- package/esm2022/option/operator/searcher/index.mjs +5 -0
- package/esm2022/option/operator/searcher/option-searcher.component.mjs +67 -0
- package/esm2022/option/operator/searcher/option-searcher.module.mjs +17 -0
- package/esm2022/option/operator/searcher/tree-option-searcher.component.mjs +84 -0
- package/esm2022/option/operator/searcher/tree-option-searcher.module.mjs +17 -0
- package/esm2022/option/operator/tree-option-operator.model.mjs +4 -0
- package/esm2022/option/operator/tree-option-operator.module.mjs +20 -0
- package/esm2022/option/option.module.mjs +64 -0
- package/esm2022/option/picker/index.mjs +9 -0
- package/esm2022/option/picker/option-picker-advanced.component.mjs +152 -0
- package/esm2022/option/picker/option-picker.component.mjs +316 -0
- package/esm2022/option/picker/option-picker.model.mjs +69 -0
- package/esm2022/option/picker/option-picker.module.mjs +19 -0
- package/esm2022/option/picker/tree-option-picker-advanced.component.mjs +142 -0
- package/esm2022/option/picker/tree-option-picker.component.mjs +171 -0
- package/esm2022/option/picker/tree-option-picker.model.mjs +4 -0
- package/esm2022/option/picker/tree-option-picker.module.mjs +22 -0
- package/esm2022/option/placeholder/index.mjs +4 -0
- package/esm2022/option/placeholder/option-placeholder.component.mjs +24 -0
- package/esm2022/option/placeholder/option-placeholder.module.mjs +17 -0
- package/esm2022/option/placeholder/option-placeholder.translate.mjs +19 -0
- package/esm2022/option/public-api.mjs +8 -5
- package/esm2022/option/selector/all/index.mjs +6 -0
- package/esm2022/option/selector/all/select-all.component.mjs +62 -0
- package/esm2022/option/selector/all/select-all.module.mjs +17 -0
- package/esm2022/option/selector/all/select-all.translate.mjs +27 -0
- package/esm2022/option/selector/all/tree-select-all.component.mjs +65 -0
- package/esm2022/option/selector/all/tree-select-all.module.mjs +17 -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 +17 -0
- package/esm2022/option/selector/tree-option-selector.model.mjs +4 -0
- package/esm2022/option/selector/tree-option-selector.module.mjs +17 -0
- package/esm2022/option/tree-option.module.mjs +20 -0
- package/esm2022/picker/input-picker.model.mjs +4 -0
- package/esm2022/picker/lucca-front-ng-picker.mjs +1 -1
- package/esm2022/picker/public-api.mjs +2 -5
- 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 +1 -1
- package/esm2022/popover/panel/index.mjs +4 -0
- package/esm2022/popover/panel/popover-panel.component.mjs +127 -0
- package/esm2022/popover/panel/popover-panel.model.mjs +120 -0
- package/esm2022/popover/panel/popover-panel.module.mjs +17 -0
- package/esm2022/popover/popover.module.mjs +19 -0
- package/esm2022/popover/public-api.mjs +6 -5
- package/esm2022/popover/target/index.mjs +4 -0
- package/esm2022/popover/target/popover-target.directive.mjs +54 -0
- package/esm2022/popover/target/popover-target.model.mjs +65 -0
- package/esm2022/popover/target/popover-target.module.mjs +17 -0
- package/esm2022/popover/trigger/index.mjs +4 -0
- package/esm2022/popover/trigger/popover-trigger.directive.mjs +187 -0
- package/esm2022/popover/trigger/popover-trigger.model.mjs +469 -0
- package/esm2022/popover/trigger/popover-trigger.module.mjs +18 -0
- package/esm2022/popup/lucca-front-ng-popup.mjs +1 -1
- 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 +29 -0
- package/esm2022/popup/popup-ref.model.mjs +139 -0
- package/esm2022/popup/popup.module.mjs +22 -0
- package/esm2022/popup/popup.service.mjs +22 -0
- package/esm2022/popup/popup.token.mjs +8 -0
- package/esm2022/popup/public-api.mjs +8 -5
- package/esm2022/qualification/lucca-front-ng-qualification.mjs +1 -1
- package/esm2022/qualification/public-api.mjs +4 -5
- package/esm2022/qualification/qualification.model.mjs +2 -0
- package/esm2022/qualification/qualification.module.mjs +17 -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 +58 -0
- package/esm2022/qualification/select/input/qualification-select-input.module.mjs +17 -0
- package/esm2022/qualification/select/input/qualification-select-input.translate.mjs +16 -0
- package/esm2022/qualification/select/qualification-select.module.mjs +17 -0
- package/esm2022/safe-content/lucca-front-ng-safe-content.mjs +1 -1
- package/esm2022/safe-content/public-api.mjs +3 -5
- package/esm2022/safe-content/safe-content.module.mjs +20 -0
- package/esm2022/safe-content/safe-html.pipe.mjs +20 -0
- package/esm2022/scroll/lucca-front-ng-scroll.mjs +1 -1
- package/esm2022/scroll/public-api.mjs +4 -5
- package/esm2022/scroll/scroll.directive.mjs +78 -0
- package/esm2022/scroll/scroll.model.mjs +2 -0
- package/esm2022/scroll/scroll.module.mjs +17 -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 +17 -0
- package/esm2022/select/lucca-front-ng-select.mjs +1 -1
- package/esm2022/select/public-api.mjs +3 -5
- package/esm2022/select/select.module.mjs +17 -0
- package/esm2022/sidepanel/lucca-front-ng-sidepanel.mjs +1 -1
- package/esm2022/sidepanel/public-api.mjs +4 -5
- package/esm2022/sidepanel/sidepanel.model.mjs +32 -0
- package/esm2022/sidepanel/sidepanel.module.mjs +21 -0
- package/esm2022/sidepanel/sidepanel.service.mjs +26 -0
- package/esm2022/simple-select/api/api-v3.directive.mjs +58 -0
- package/esm2022/simple-select/api/api-v4.directive.mjs +51 -0
- package/esm2022/simple-select/api/api.directive.mjs +41 -0
- package/esm2022/simple-select/api/lucca-front-ng-simple-select-api.mjs +1 -1
- package/esm2022/simple-select/api/public-api.mjs +4 -4
- package/esm2022/simple-select/input/index.mjs +2 -0
- package/esm2022/simple-select/input/panel-ref.factory.mjs +91 -0
- package/esm2022/simple-select/input/select-input.component.mjs +226 -0
- package/esm2022/simple-select/input/select-input.models.mjs +60 -0
- package/esm2022/simple-select/lucca-front-ng-simple-select.mjs +1 -1
- package/esm2022/simple-select/option/default-option.component.mjs +22 -0
- package/esm2022/simple-select/option/disabled.directive.mjs +27 -0
- package/esm2022/simple-select/option/displayer.directive.mjs +27 -0
- package/esm2022/simple-select/option/index.mjs +6 -0
- package/esm2022/simple-select/option/option-outlet.directive.mjs +71 -0
- package/esm2022/simple-select/option/option.component.mjs +78 -0
- package/esm2022/simple-select/option/option.directive.mjs +27 -0
- package/esm2022/simple-select/option/option.token.mjs +22 -0
- package/esm2022/simple-select/panel/index.mjs +3 -0
- package/esm2022/simple-select/panel/panel.component.mjs +95 -0
- package/esm2022/simple-select/panel/panel.models.mjs +23 -0
- package/esm2022/simple-select/public-api.mjs +5 -5
- package/esm2022/simple-select/select.model.mjs +6 -0
- package/esm2022/simple-select/select.translate.mjs +37 -0
- package/esm2022/title/lucca-front-ng-title.mjs +1 -1
- package/esm2022/title/public-api.mjs +6 -2
- package/esm2022/title/title-translate.service.mjs +3 -0
- package/esm2022/title/title.model.mjs +2 -0
- package/esm2022/title/title.module.mjs +21 -0
- package/esm2022/title/title.service.mjs +56 -0
- package/esm2022/title/title.strategy.mjs +61 -0
- package/esm2022/toast/lucca-front-ng-toast.mjs +1 -1
- package/esm2022/toast/public-api.mjs +1 -1
- package/esm2022/toast/toasts.component.mjs +3 -3
- package/esm2022/toast/toasts.model.mjs +1 -1
- package/esm2022/toast/toasts.module.mjs +1 -1
- package/esm2022/toast/toasts.service.mjs +1 -1
- package/esm2022/toast/toasts.translate.mjs +1 -1
- 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 +1 -1
- package/esm2022/tooltip/panel/index.mjs +3 -0
- package/esm2022/tooltip/panel/tooltip-panel.component.mjs +60 -0
- package/esm2022/tooltip/panel/tooltip-panel.module.mjs +17 -0
- package/esm2022/tooltip/public-api.mjs +5 -5
- package/esm2022/tooltip/tooltip.module.mjs +18 -0
- package/esm2022/tooltip/trigger/index.mjs +3 -0
- package/esm2022/tooltip/trigger/tooltip-trigger.directive.mjs +182 -0
- package/esm2022/tooltip/trigger/tooltip-trigger.module.mjs +18 -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 +18 -0
- package/esm2022/user/display/user-display.pipe.mjs +73 -0
- package/esm2022/user/lucca-front-ng-user.mjs +1 -1
- package/esm2022/user/picture/index.mjs +3 -0
- package/esm2022/user/picture/user-picture.component.mjs +69 -0
- package/esm2022/user/picture/user-picture.module.mjs +20 -0
- package/esm2022/user/public-api.mjs +8 -5
- package/esm2022/user/select/homonyms/index.mjs +4 -0
- package/esm2022/user/select/homonyms/user-homonyms.component.mjs +73 -0
- package/esm2022/user/select/homonyms/user-homonyms.module.mjs +17 -0
- package/esm2022/user/select/homonyms/user-homonyms.service.mjs +54 -0
- package/esm2022/user/select/index.mjs +6 -0
- package/esm2022/user/select/input/index.mjs +4 -0
- package/esm2022/user/select/input/user-select-input.component.mjs +87 -0
- package/esm2022/user/select/input/user-select-input.module.mjs +17 -0
- package/esm2022/user/select/input/user-select-input.translate.mjs +19 -0
- package/esm2022/user/select/me/index.mjs +3 -0
- package/esm2022/user/select/me/me-option.directive.mjs +124 -0
- package/esm2022/user/select/me/me-option.module.mjs +17 -0
- package/esm2022/user/select/searcher/index.mjs +4 -0
- package/esm2022/user/select/searcher/user-searcher.component.mjs +188 -0
- package/esm2022/user/select/searcher/user-searcher.module.mjs +17 -0
- package/esm2022/user/select/searcher/user-searcher.translate.mjs +16 -0
- package/esm2022/user/select/user-select.module.mjs +20 -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 +52 -0
- package/esm2022/user/tile/index.mjs +3 -0
- package/esm2022/user/tile/user-tile.component.mjs +68 -0
- package/esm2022/user/tile/user-tile.module.mjs +21 -0
- package/esm2022/user/user.model.mjs +2 -0
- package/esm2022/user/user.module.mjs +20 -0
- package/establishment/public-api.d.ts +4 -1
- package/fesm2022/lucca-front-ng-a11y.mjs +0 -4
- package/fesm2022/lucca-front-ng-a11y.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-animations.mjs +0 -4
- package/fesm2022/lucca-front-ng-animations.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-api.mjs +2 -6
- package/fesm2022/lucca-front-ng-api.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-callout.mjs +101 -0
- package/fesm2022/lucca-front-ng-callout.mjs.map +1 -0
- package/fesm2022/lucca-front-ng-core.mjs +0 -4
- package/fesm2022/lucca-front-ng-core.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-date.mjs +4 -8
- package/fesm2022/lucca-front-ng-date.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-department.mjs +2 -6
- package/fesm2022/lucca-front-ng-department.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-dropdown.mjs +0 -4
- package/fesm2022/lucca-front-ng-dropdown.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-establishment.mjs +3 -7
- package/fesm2022/lucca-front-ng-establishment.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-formly.mjs +0 -4
- package/fesm2022/lucca-front-ng-formly.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-inline-message.mjs +30 -0
- package/fesm2022/lucca-front-ng-inline-message.mjs.map +1 -0
- package/fesm2022/lucca-front-ng-input.mjs +2 -6
- package/fesm2022/lucca-front-ng-input.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-modal.mjs +4 -8
- package/fesm2022/lucca-front-ng-modal.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-new-badge.mjs +21 -0
- package/fesm2022/lucca-front-ng-new-badge.mjs.map +1 -0
- package/fesm2022/lucca-front-ng-number.mjs +0 -4
- package/fesm2022/lucca-front-ng-number.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-numeric-badge.mjs +43 -0
- package/fesm2022/lucca-front-ng-numeric-badge.mjs.map +1 -0
- package/fesm2022/lucca-front-ng-option.mjs +0 -4
- package/fesm2022/lucca-front-ng-option.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-picker.mjs +0 -4
- package/fesm2022/lucca-front-ng-picker.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-popover.mjs +0 -4
- package/fesm2022/lucca-front-ng-popover.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-popup.mjs +0 -4
- package/fesm2022/lucca-front-ng-popup.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-qualification.mjs +2 -6
- package/fesm2022/lucca-front-ng-qualification.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-safe-content.mjs +0 -4
- package/fesm2022/lucca-front-ng-safe-content.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-scroll.mjs +0 -4
- package/fesm2022/lucca-front-ng-scroll.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-select.mjs +2 -6
- package/fesm2022/lucca-front-ng-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-sidepanel.mjs +0 -4
- package/fesm2022/lucca-front-ng-sidepanel.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-simple-select-api.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-simple-select.mjs +2 -6
- package/fesm2022/lucca-front-ng-simple-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-title.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-toast.mjs +2 -2
- package/fesm2022/lucca-front-ng-toast.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-tooltip.mjs +2 -6
- package/fesm2022/lucca-front-ng-tooltip.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-user.mjs +2 -6
- package/fesm2022/lucca-front-ng-user.mjs.map +1 -1
- package/formly/public-api.d.ts +4 -1
- package/inline-message/index.d.ts +5 -0
- package/inline-message/inline-message.component.d.ts +8 -0
- package/inline-message/public-api.d.ts +1 -0
- package/input/public-api.d.ts +5 -1
- package/material/style/_components.scss +3 -1
- package/material/style/components/_autocomplete.scss +2 -0
- package/material/style/components/_buttons.scss +2 -0
- package/material/style/components/_datepicker.scss +3 -1
- package/material/style/components/_dialog.scss +2 -0
- package/material/style/components/_input.scss +2 -0
- package/material/style/components/_menu.scss +2 -0
- package/material/style/components/_mixins.scss +2 -0
- package/material/style/components/_options.scss +2 -0
- package/material/style/components/_select.scss +2 -0
- package/material/style/components/_tooltip.scss +2 -0
- package/material/style/main.scss +2 -0
- package/modal/public-api.d.ts +11 -1
- package/new-badge/index.d.ts +5 -0
- package/new-badge/new-badge.component.d.ts +6 -0
- package/new-badge/public-api.d.ts +1 -0
- package/number/public-api.d.ts +2 -1
- package/numeric-badge/index.d.ts +5 -0
- package/numeric-badge/numeric-badge/numeric-badge.component.d.ts +19 -0
- package/numeric-badge/public-api.d.ts +1 -0
- package/option/public-api.d.ts +7 -1
- package/package.json +38 -20
- package/picker/public-api.d.ts +1 -1
- package/popover/public-api.d.ts +5 -1
- package/popup/public-api.d.ts +7 -1
- package/qualification/public-api.d.ts +3 -1
- package/safe-content/public-api.d.ts +2 -1
- package/scroll/public-api.d.ts +3 -1
- package/select/public-api.d.ts +2 -1
- package/sidepanel/public-api.d.ts +3 -1
- package/simple-select/api/public-api.d.ts +3 -3
- package/simple-select/public-api.d.ts +4 -1
- package/src/definitions/option/_option-item.scss +1 -1
- package/src/definitions/select/_select-input.scss +9 -9
- package/src/definitions/tooltip/_tooltip.scss +1 -0
- package/src/definitions/user/user-picture.scss +3 -3
- package/title/public-api.d.ts +5 -1
- package/tooltip/public-api.d.ts +4 -1
- package/user/public-api.d.ts +7 -1
- package/a11y/lib/index.d.ts +0 -1
- package/animations/README.md +0 -24
- package/animations/lib/index.d.ts +0 -4
- package/api/lib/index.d.ts +0 -4
- package/core/lib/index.d.ts +0 -6
- package/date/lib/index.d.ts +0 -6
- package/department/lib/index.d.ts +0 -4
- package/dropdown/lib/index.d.ts +0 -4
- package/esm2022/a11y/lib/index.mjs +0 -2
- package/esm2022/a11y/lib/skip-links/skip-links.component.mjs +0 -27
- package/esm2022/a11y/lib/skip-links/skip-links.translate.mjs +0 -27
- package/esm2022/animations/lib/animation.factory.mjs +0 -15
- package/esm2022/animations/lib/fade.animation.mjs +0 -8
- package/esm2022/animations/lib/index.mjs +0 -5
- package/esm2022/animations/lib/scale.animation.mjs +0 -126
- package/esm2022/animations/lib/slide.animation.mjs +0 -110
- package/esm2022/api/lib/api.model.mjs +0 -2
- package/esm2022/api/lib/api.module.mjs +0 -17
- package/esm2022/api/lib/index.mjs +0 -5
- package/esm2022/api/lib/select/api-select.module.mjs +0 -20
- package/esm2022/api/lib/select/feeder/api-feeder.component.mjs +0 -94
- package/esm2022/api/lib/select/feeder/api-feeder.model.mjs +0 -11
- package/esm2022/api/lib/select/feeder/api-feeder.module.mjs +0 -17
- package/esm2022/api/lib/select/feeder/index.mjs +0 -4
- package/esm2022/api/lib/select/index.mjs +0 -6
- package/esm2022/api/lib/select/input/api-select-input.component.mjs +0 -53
- package/esm2022/api/lib/select/input/api-select-input.module.mjs +0 -17
- package/esm2022/api/lib/select/input/index.mjs +0 -3
- package/esm2022/api/lib/select/pager/api-pager.component.mjs +0 -100
- package/esm2022/api/lib/select/pager/api-pager.model.mjs +0 -56
- package/esm2022/api/lib/select/pager/api-pager.module.mjs +0 -17
- package/esm2022/api/lib/select/pager/index.mjs +0 -4
- package/esm2022/api/lib/select/searcher/api-searcher.component.mjs +0 -237
- package/esm2022/api/lib/select/searcher/api-searcher.model.mjs +0 -67
- package/esm2022/api/lib/select/searcher/api-searcher.module.mjs +0 -17
- package/esm2022/api/lib/select/searcher/index.mjs +0 -4
- package/esm2022/api/lib/service/api-hybrid.service.mjs +0 -66
- package/esm2022/api/lib/service/api-service.model.mjs +0 -3
- package/esm2022/api/lib/service/api-v3.service.mjs +0 -73
- package/esm2022/api/lib/service/api-v4.service.mjs +0 -72
- package/esm2022/api/lib/service/index.mjs +0 -5
- package/esm2022/core/lib/date/date-adapter.class.mjs +0 -54
- package/esm2022/core/lib/date/date-adapter.interface.mjs +0 -2
- package/esm2022/core/lib/date/date-granularity.enum.mjs +0 -8
- package/esm2022/core/lib/date/index.mjs +0 -6
- package/esm2022/core/lib/date/native/index.mjs +0 -3
- package/esm2022/core/lib/date/native/native-date.adapter.mjs +0 -233
- package/esm2022/core/lib/date/native/native-date.option.mjs +0 -6
- package/esm2022/core/lib/date/string/index.mjs +0 -2
- package/esm2022/core/lib/date/string/string-date.adapter.mjs +0 -84
- package/esm2022/core/lib/event/index.mjs +0 -4
- package/esm2022/core/lib/event/on-close.subscriber.mjs +0 -3
- package/esm2022/core/lib/event/on-open.subscriber.mjs +0 -3
- package/esm2022/core/lib/event/on-scroll-bottom.subscriber.mjs +0 -3
- package/esm2022/core/lib/group/group.interface.mjs +0 -2
- package/esm2022/core/lib/group/index.mjs +0 -2
- package/esm2022/core/lib/id/id.generator.mjs +0 -9
- package/esm2022/core/lib/id/index.mjs +0 -2
- package/esm2022/core/lib/index.mjs +0 -7
- package/esm2022/core/lib/translate/index.mjs +0 -3
- package/esm2022/core/lib/translate/intl.model.mjs +0 -17
- package/esm2022/core/lib/translate/translation.model.mjs +0 -2
- package/esm2022/core/lib/tree/index.mjs +0 -2
- package/esm2022/core/lib/tree/tree.model.mjs +0 -2
- package/esm2022/date/lib/adapter/date-adapter.module.mjs +0 -17
- package/esm2022/date/lib/adapter/date-adapter.pipe.mjs +0 -26
- package/esm2022/date/lib/adapter/index.mjs +0 -3
- package/esm2022/date/lib/calendar/calendar-input.component.mjs +0 -333
- package/esm2022/date/lib/calendar/calendar-input.module.mjs +0 -17
- package/esm2022/date/lib/calendar/calendar-item.class.mjs +0 -43
- package/esm2022/date/lib/calendar/calendar-item.factory.mjs +0 -38
- package/esm2022/date/lib/calendar/calendar-item.interface.mjs +0 -2
- package/esm2022/date/lib/calendar/index.mjs +0 -3
- package/esm2022/date/lib/date.module.mjs +0 -21
- package/esm2022/date/lib/index.mjs +0 -7
- package/esm2022/date/lib/input/date-input.directive.mjs +0 -138
- package/esm2022/date/lib/input/date-input.module.mjs +0 -17
- package/esm2022/date/lib/input/date-input.translate.mjs +0 -39
- package/esm2022/date/lib/input/index.mjs +0 -4
- package/esm2022/date/lib/picker/date-picker.component.mjs +0 -110
- package/esm2022/date/lib/picker/date-picker.module.mjs +0 -17
- package/esm2022/date/lib/picker/index.mjs +0 -3
- package/esm2022/date/lib/select/date-select-input.component.mjs +0 -101
- package/esm2022/date/lib/select/date-select-input.module.mjs +0 -17
- package/esm2022/date/lib/select/date-select-input.translate.mjs +0 -31
- package/esm2022/date/lib/select/index.mjs +0 -4
- package/esm2022/department/lib/department.model.mjs +0 -2
- package/esm2022/department/lib/department.module.mjs +0 -17
- package/esm2022/department/lib/index.mjs +0 -5
- package/esm2022/department/lib/select/department-select.module.mjs +0 -18
- package/esm2022/department/lib/select/feeder/department-feeder.component.mjs +0 -83
- package/esm2022/department/lib/select/feeder/department-feeder.module.mjs +0 -17
- package/esm2022/department/lib/select/feeder/index.mjs +0 -3
- package/esm2022/department/lib/select/index.mjs +0 -4
- package/esm2022/department/lib/select/input/department-select-input.component.mjs +0 -68
- package/esm2022/department/lib/select/input/department-select-input.module.mjs +0 -17
- package/esm2022/department/lib/select/input/department-select-input.translate.mjs +0 -16
- package/esm2022/department/lib/select/input/index.mjs +0 -4
- package/esm2022/department/lib/service/department-service.model.mjs +0 -4
- package/esm2022/department/lib/service/department-v3.service.mjs +0 -44
- package/esm2022/department/lib/service/index.mjs +0 -3
- package/esm2022/dropdown/lib/dropdown.module.mjs +0 -19
- package/esm2022/dropdown/lib/index.mjs +0 -5
- package/esm2022/dropdown/lib/item/dropdown-item.directive.mjs +0 -56
- package/esm2022/dropdown/lib/item/dropdown-item.model.mjs +0 -3
- package/esm2022/dropdown/lib/item/dropdown-item.module.mjs +0 -18
- package/esm2022/dropdown/lib/item/index.mjs +0 -4
- package/esm2022/dropdown/lib/panel/dropdown-panel.component.mjs +0 -112
- package/esm2022/dropdown/lib/panel/dropdown-panel.model.mjs +0 -2
- package/esm2022/dropdown/lib/panel/dropdown-panel.module.mjs +0 -19
- package/esm2022/dropdown/lib/panel/index.mjs +0 -4
- package/esm2022/dropdown/lib/trigger/dropdown-trigger.directive.mjs +0 -122
- package/esm2022/dropdown/lib/trigger/dropdown-trigger.module.mjs +0 -19
- package/esm2022/dropdown/lib/trigger/index.mjs +0 -3
- package/esm2022/establishment/lib/establishment.model.mjs +0 -2
- package/esm2022/establishment/lib/establishment.module.mjs +0 -17
- package/esm2022/establishment/lib/index.mjs +0 -5
- package/esm2022/establishment/lib/select/establishment-select.module.mjs +0 -21
- package/esm2022/establishment/lib/select/for-legal-units/for-legal-units.directive.mjs +0 -48
- package/esm2022/establishment/lib/select/for-legal-units/for-legal-units.module.mjs +0 -17
- package/esm2022/establishment/lib/select/for-legal-units/index.mjs +0 -3
- package/esm2022/establishment/lib/select/index.mjs +0 -7
- package/esm2022/establishment/lib/select/input/establishment-select-input.component.mjs +0 -127
- package/esm2022/establishment/lib/select/input/establishment-select-input.module.mjs +0 -17
- package/esm2022/establishment/lib/select/input/establishment-select-input.translate.mjs +0 -16
- package/esm2022/establishment/lib/select/input/index.mjs +0 -4
- package/esm2022/establishment/lib/select/legal-unit-selector/index.mjs +0 -3
- package/esm2022/establishment/lib/select/legal-unit-selector/legal-unit-selector.directive.mjs +0 -105
- package/esm2022/establishment/lib/select/legal-unit-selector/legal-unit-selector.module.mjs +0 -17
- package/esm2022/establishment/lib/select/searcher/establishment-searcher.component.mjs +0 -148
- package/esm2022/establishment/lib/select/searcher/establishment-searcher.module.mjs +0 -17
- package/esm2022/establishment/lib/select/searcher/index.mjs +0 -3
- package/esm2022/establishment/lib/select/select-all/establishment-select-all.component.mjs +0 -96
- package/esm2022/establishment/lib/select/select-all/establishment-select-all.module.mjs +0 -17
- package/esm2022/establishment/lib/select/select-all/establishment-select-all.translate.mjs +0 -23
- package/esm2022/establishment/lib/select/select-all/index.mjs +0 -4
- package/esm2022/establishment/lib/service/establishment-service.model.mjs +0 -4
- package/esm2022/establishment/lib/service/establishment.service.mjs +0 -38
- package/esm2022/establishment/lib/service/index.mjs +0 -5
- package/esm2022/establishment/lib/service/legal-unit-service.model.mjs +0 -4
- package/esm2022/establishment/lib/service/legal-unit.service.mjs +0 -38
- package/esm2022/formly/lib/formly.config.mjs +0 -79
- package/esm2022/formly/lib/formly.module.mjs +0 -109
- package/esm2022/formly/lib/formly.utils.mjs +0 -10
- package/esm2022/formly/lib/index.mjs +0 -5
- package/esm2022/formly/lib/types/api.mjs +0 -37
- package/esm2022/formly/lib/types/checkbox.mjs +0 -22
- package/esm2022/formly/lib/types/date.mjs +0 -22
- package/esm2022/formly/lib/types/department.mjs +0 -22
- package/esm2022/formly/lib/types/establishment.mjs +0 -22
- package/esm2022/formly/lib/types/index.mjs +0 -12
- package/esm2022/formly/lib/types/input.mjs +0 -26
- package/esm2022/formly/lib/types/qualification.mjs +0 -22
- package/esm2022/formly/lib/types/radios.mjs +0 -25
- package/esm2022/formly/lib/types/select.mjs +0 -28
- package/esm2022/formly/lib/types/textarea.mjs +0 -22
- package/esm2022/formly/lib/types/user.mjs +0 -22
- package/esm2022/formly/lib/wrappers/checkbox-layout.mjs +0 -30
- package/esm2022/formly/lib/wrappers/error.mjs +0 -57
- package/esm2022/formly/lib/wrappers/helper.mjs +0 -19
- package/esm2022/formly/lib/wrappers/icon.mjs +0 -19
- package/esm2022/formly/lib/wrappers/index.mjs +0 -8
- package/esm2022/formly/lib/wrappers/radiosfield-layout.mjs +0 -30
- package/esm2022/formly/lib/wrappers/suffix.mjs +0 -19
- package/esm2022/formly/lib/wrappers/textfield-layout.mjs +0 -39
- package/esm2022/input/lib/clearer/clearer.component.mjs +0 -36
- package/esm2022/input/lib/clearer/clearer.model.mjs +0 -3
- package/esm2022/input/lib/clearer/clearer.module.mjs +0 -17
- package/esm2022/input/lib/clearer/index.mjs +0 -4
- package/esm2022/input/lib/displayer/index.mjs +0 -4
- package/esm2022/input/lib/displayer/input-displayer.directive.mjs +0 -60
- package/esm2022/input/lib/displayer/input-displayer.model.mjs +0 -6
- package/esm2022/input/lib/displayer/input-displayer.module.mjs +0 -17
- package/esm2022/input/lib/index.mjs +0 -6
- package/esm2022/input/lib/input.directive.mjs +0 -43
- package/esm2022/input/lib/input.model.mjs +0 -54
- package/esm2022/input/lib/input.module.mjs +0 -19
- package/esm2022/material/lib/index.mjs +0 -2
- package/esm2022/material/lib/module.mjs +0 -13
- package/esm2022/material/lucca-front-ng-material.mjs +0 -5
- package/esm2022/material/public-api.mjs +0 -5
- package/esm2022/modal/lib/index.mjs +0 -12
- package/esm2022/modal/lib/modal-config.default.mjs +0 -17
- package/esm2022/modal/lib/modal-config.model.mjs +0 -5
- package/esm2022/modal/lib/modal-panel.component.mjs +0 -125
- package/esm2022/modal/lib/modal-ref.factory.mjs +0 -61
- package/esm2022/modal/lib/modal-ref.model.mjs +0 -11
- package/esm2022/modal/lib/modal.model.mjs +0 -2
- package/esm2022/modal/lib/modal.module.mjs +0 -27
- package/esm2022/modal/lib/modal.service.mjs +0 -22
- package/esm2022/modal/lib/modal.token.mjs +0 -9
- package/esm2022/modal/lib/modal.translate.mjs +0 -22
- package/esm2022/modal/lib/modal.utils.mjs +0 -9
- package/esm2022/number/lib/index.mjs +0 -3
- package/esm2022/number/lib/number.module.mjs +0 -17
- package/esm2022/number/lib/number.pipe.mjs +0 -37
- package/esm2022/option/lib/index.mjs +0 -8
- package/esm2022/option/lib/item/index.mjs +0 -8
- package/esm2022/option/lib/item/option-item.component.mjs +0 -77
- package/esm2022/option/lib/item/option-item.model.mjs +0 -3
- package/esm2022/option/lib/item/option-item.module.mjs +0 -17
- package/esm2022/option/lib/item/tree-option-item.component.mjs +0 -137
- package/esm2022/option/lib/item/tree-option-item.model.mjs +0 -7
- package/esm2022/option/lib/item/tree-option-item.module.mjs +0 -17
- package/esm2022/option/lib/item/tree-option-item.translate.mjs +0 -15
- package/esm2022/option/lib/operator/feeder/index.mjs +0 -5
- package/esm2022/option/lib/operator/feeder/option-feeder.component.mjs +0 -34
- package/esm2022/option/lib/operator/feeder/option-feeder.module.mjs +0 -17
- package/esm2022/option/lib/operator/feeder/tree-option-feeder.component.mjs +0 -34
- package/esm2022/option/lib/operator/feeder/tree-option-feeder.module.mjs +0 -17
- package/esm2022/option/lib/operator/for-groups/for-groups.directive.mjs +0 -90
- package/esm2022/option/lib/operator/for-groups/for-groups.module.mjs +0 -17
- package/esm2022/option/lib/operator/for-groups/index.mjs +0 -3
- package/esm2022/option/lib/operator/for-options/for-options.directive.mjs +0 -51
- package/esm2022/option/lib/operator/for-options/for-options.module.mjs +0 -17
- package/esm2022/option/lib/operator/for-options/for-tree-options.directive.mjs +0 -30
- package/esm2022/option/lib/operator/for-options/for-tree-options.module.mjs +0 -17
- package/esm2022/option/lib/operator/for-options/index.mjs +0 -5
- package/esm2022/option/lib/operator/index.mjs +0 -10
- package/esm2022/option/lib/operator/option-operator.model.mjs +0 -3
- package/esm2022/option/lib/operator/option-operator.module.mjs +0 -21
- package/esm2022/option/lib/operator/pager/index.mjs +0 -5
- package/esm2022/option/lib/operator/pager/option-pager.component.mjs +0 -54
- package/esm2022/option/lib/operator/pager/option-pager.module.mjs +0 -17
- package/esm2022/option/lib/operator/pager/tree-option-pager.component.mjs +0 -72
- package/esm2022/option/lib/operator/pager/tree-option-pager.module.mjs +0 -17
- package/esm2022/option/lib/operator/searcher/index.mjs +0 -5
- package/esm2022/option/lib/operator/searcher/option-searcher.component.mjs +0 -67
- package/esm2022/option/lib/operator/searcher/option-searcher.module.mjs +0 -17
- package/esm2022/option/lib/operator/searcher/tree-option-searcher.component.mjs +0 -84
- package/esm2022/option/lib/operator/searcher/tree-option-searcher.module.mjs +0 -17
- package/esm2022/option/lib/operator/tree-option-operator.model.mjs +0 -4
- package/esm2022/option/lib/operator/tree-option-operator.module.mjs +0 -20
- package/esm2022/option/lib/option.module.mjs +0 -64
- package/esm2022/option/lib/picker/index.mjs +0 -9
- package/esm2022/option/lib/picker/option-picker-advanced.component.mjs +0 -152
- package/esm2022/option/lib/picker/option-picker.component.mjs +0 -316
- package/esm2022/option/lib/picker/option-picker.model.mjs +0 -69
- package/esm2022/option/lib/picker/option-picker.module.mjs +0 -19
- package/esm2022/option/lib/picker/tree-option-picker-advanced.component.mjs +0 -142
- package/esm2022/option/lib/picker/tree-option-picker.component.mjs +0 -171
- package/esm2022/option/lib/picker/tree-option-picker.model.mjs +0 -4
- package/esm2022/option/lib/picker/tree-option-picker.module.mjs +0 -22
- package/esm2022/option/lib/placeholder/index.mjs +0 -4
- package/esm2022/option/lib/placeholder/option-placeholder.component.mjs +0 -24
- package/esm2022/option/lib/placeholder/option-placeholder.module.mjs +0 -17
- package/esm2022/option/lib/placeholder/option-placeholder.translate.mjs +0 -19
- package/esm2022/option/lib/selector/all/index.mjs +0 -6
- package/esm2022/option/lib/selector/all/select-all.component.mjs +0 -62
- package/esm2022/option/lib/selector/all/select-all.module.mjs +0 -17
- package/esm2022/option/lib/selector/all/select-all.translate.mjs +0 -27
- package/esm2022/option/lib/selector/all/tree-select-all.component.mjs +0 -65
- package/esm2022/option/lib/selector/all/tree-select-all.module.mjs +0 -17
- package/esm2022/option/lib/selector/index.mjs +0 -6
- package/esm2022/option/lib/selector/option-selector.model.mjs +0 -3
- package/esm2022/option/lib/selector/option-selector.module.mjs +0 -17
- package/esm2022/option/lib/selector/tree-option-selector.model.mjs +0 -4
- package/esm2022/option/lib/selector/tree-option-selector.module.mjs +0 -17
- package/esm2022/option/lib/tree-option.module.mjs +0 -20
- package/esm2022/picker/lib/index.mjs +0 -2
- package/esm2022/picker/lib/input-picker.model.mjs +0 -4
- package/esm2022/popover/lib/animation/index.mjs +0 -2
- package/esm2022/popover/lib/animation/popover.animation.mjs +0 -16
- package/esm2022/popover/lib/index.mjs +0 -6
- package/esm2022/popover/lib/panel/index.mjs +0 -4
- package/esm2022/popover/lib/panel/popover-panel.component.mjs +0 -127
- package/esm2022/popover/lib/panel/popover-panel.model.mjs +0 -120
- package/esm2022/popover/lib/panel/popover-panel.module.mjs +0 -17
- package/esm2022/popover/lib/popover.module.mjs +0 -19
- package/esm2022/popover/lib/target/index.mjs +0 -4
- package/esm2022/popover/lib/target/popover-target.directive.mjs +0 -54
- package/esm2022/popover/lib/target/popover-target.model.mjs +0 -65
- package/esm2022/popover/lib/target/popover-target.module.mjs +0 -17
- package/esm2022/popover/lib/trigger/index.mjs +0 -4
- package/esm2022/popover/lib/trigger/popover-trigger.directive.mjs +0 -187
- package/esm2022/popover/lib/trigger/popover-trigger.model.mjs +0 -469
- package/esm2022/popover/lib/trigger/popover-trigger.module.mjs +0 -18
- package/esm2022/popup/lib/index.mjs +0 -8
- package/esm2022/popup/lib/popup-config.default.mjs +0 -9
- package/esm2022/popup/lib/popup-config.model.mjs +0 -2
- package/esm2022/popup/lib/popup-ref.factory.mjs +0 -29
- package/esm2022/popup/lib/popup-ref.model.mjs +0 -139
- package/esm2022/popup/lib/popup.module.mjs +0 -22
- package/esm2022/popup/lib/popup.service.mjs +0 -22
- package/esm2022/popup/lib/popup.token.mjs +0 -8
- package/esm2022/qualification/lib/index.mjs +0 -4
- package/esm2022/qualification/lib/qualification.model.mjs +0 -2
- package/esm2022/qualification/lib/qualification.module.mjs +0 -17
- package/esm2022/qualification/lib/select/index.mjs +0 -3
- package/esm2022/qualification/lib/select/input/index.mjs +0 -4
- package/esm2022/qualification/lib/select/input/qualification-select-input.component.mjs +0 -58
- package/esm2022/qualification/lib/select/input/qualification-select-input.module.mjs +0 -17
- package/esm2022/qualification/lib/select/input/qualification-select-input.translate.mjs +0 -16
- package/esm2022/qualification/lib/select/qualification-select.module.mjs +0 -17
- package/esm2022/safe-content/lib/index.mjs +0 -3
- package/esm2022/safe-content/lib/safe-content.module.mjs +0 -20
- package/esm2022/safe-content/lib/safe-html.pipe.mjs +0 -20
- package/esm2022/scroll/lib/index.mjs +0 -4
- package/esm2022/scroll/lib/scroll.directive.mjs +0 -78
- package/esm2022/scroll/lib/scroll.model.mjs +0 -2
- package/esm2022/scroll/lib/scroll.module.mjs +0 -17
- package/esm2022/select/lib/index.mjs +0 -3
- package/esm2022/select/lib/input/index.mjs +0 -4
- package/esm2022/select/lib/input/select-input.component.mjs +0 -249
- package/esm2022/select/lib/input/select-input.model.mjs +0 -179
- package/esm2022/select/lib/input/select-input.module.mjs +0 -17
- package/esm2022/select/lib/select.module.mjs +0 -17
- package/esm2022/sidepanel/lib/index.mjs +0 -4
- package/esm2022/sidepanel/lib/sidepanel.model.mjs +0 -32
- package/esm2022/sidepanel/lib/sidepanel.module.mjs +0 -21
- package/esm2022/sidepanel/lib/sidepanel.service.mjs +0 -26
- package/esm2022/simple-select/api/lib/api-v3.directive.mjs +0 -58
- package/esm2022/simple-select/api/lib/api-v4.directive.mjs +0 -51
- package/esm2022/simple-select/api/lib/api.directive.mjs +0 -41
- package/esm2022/simple-select/lib/index.mjs +0 -5
- package/esm2022/simple-select/lib/input/index.mjs +0 -2
- package/esm2022/simple-select/lib/input/panel-ref.factory.mjs +0 -91
- package/esm2022/simple-select/lib/input/select-input.component.mjs +0 -226
- package/esm2022/simple-select/lib/input/select-input.models.mjs +0 -60
- package/esm2022/simple-select/lib/option/default-option.component.mjs +0 -22
- package/esm2022/simple-select/lib/option/disabled.directive.mjs +0 -27
- package/esm2022/simple-select/lib/option/displayer.directive.mjs +0 -27
- package/esm2022/simple-select/lib/option/index.mjs +0 -6
- package/esm2022/simple-select/lib/option/option-outlet.directive.mjs +0 -71
- package/esm2022/simple-select/lib/option/option.component.mjs +0 -78
- package/esm2022/simple-select/lib/option/option.directive.mjs +0 -27
- package/esm2022/simple-select/lib/option/option.token.mjs +0 -22
- package/esm2022/simple-select/lib/panel/index.mjs +0 -3
- package/esm2022/simple-select/lib/panel/panel.component.mjs +0 -95
- package/esm2022/simple-select/lib/panel/panel.models.mjs +0 -23
- package/esm2022/simple-select/lib/select.model.mjs +0 -6
- package/esm2022/simple-select/lib/select.translate.mjs +0 -37
- package/esm2022/title/lib/index.mjs +0 -6
- package/esm2022/title/lib/title-translate.service.mjs +0 -3
- package/esm2022/title/lib/title.model.mjs +0 -2
- package/esm2022/title/lib/title.module.mjs +0 -21
- package/esm2022/title/lib/title.service.mjs +0 -56
- package/esm2022/title/lib/title.strategy.mjs +0 -61
- package/esm2022/tooltip/lib/animation/index.mjs +0 -2
- package/esm2022/tooltip/lib/animation/tooltip.animation.mjs +0 -16
- package/esm2022/tooltip/lib/index.mjs +0 -5
- package/esm2022/tooltip/lib/panel/index.mjs +0 -3
- package/esm2022/tooltip/lib/panel/tooltip-panel.component.mjs +0 -60
- package/esm2022/tooltip/lib/panel/tooltip-panel.module.mjs +0 -17
- package/esm2022/tooltip/lib/tooltip.module.mjs +0 -18
- package/esm2022/tooltip/lib/trigger/index.mjs +0 -3
- package/esm2022/tooltip/lib/trigger/tooltip-trigger.directive.mjs +0 -182
- package/esm2022/tooltip/lib/trigger/tooltip-trigger.module.mjs +0 -18
- package/esm2022/user/lib/display/display-format.model.mjs +0 -25
- package/esm2022/user/lib/display/index.mjs +0 -4
- package/esm2022/user/lib/display/user-display.module.mjs +0 -18
- package/esm2022/user/lib/display/user-display.pipe.mjs +0 -73
- package/esm2022/user/lib/index.mjs +0 -8
- package/esm2022/user/lib/picture/index.mjs +0 -3
- package/esm2022/user/lib/picture/user-picture.component.mjs +0 -69
- package/esm2022/user/lib/picture/user-picture.module.mjs +0 -20
- package/esm2022/user/lib/select/homonyms/index.mjs +0 -4
- package/esm2022/user/lib/select/homonyms/user-homonyms.component.mjs +0 -73
- package/esm2022/user/lib/select/homonyms/user-homonyms.module.mjs +0 -17
- package/esm2022/user/lib/select/homonyms/user-homonyms.service.mjs +0 -54
- package/esm2022/user/lib/select/index.mjs +0 -6
- package/esm2022/user/lib/select/input/index.mjs +0 -4
- package/esm2022/user/lib/select/input/user-select-input.component.mjs +0 -87
- package/esm2022/user/lib/select/input/user-select-input.module.mjs +0 -17
- package/esm2022/user/lib/select/input/user-select-input.translate.mjs +0 -19
- package/esm2022/user/lib/select/me/index.mjs +0 -3
- package/esm2022/user/lib/select/me/me-option.directive.mjs +0 -124
- package/esm2022/user/lib/select/me/me-option.module.mjs +0 -17
- package/esm2022/user/lib/select/searcher/index.mjs +0 -4
- package/esm2022/user/lib/select/searcher/user-searcher.component.mjs +0 -188
- package/esm2022/user/lib/select/searcher/user-searcher.module.mjs +0 -17
- package/esm2022/user/lib/select/searcher/user-searcher.translate.mjs +0 -16
- package/esm2022/user/lib/select/user-select.module.mjs +0 -20
- package/esm2022/user/lib/service/index.mjs +0 -3
- package/esm2022/user/lib/service/user-service.model.mjs +0 -4
- package/esm2022/user/lib/service/user-v3.service.mjs +0 -52
- package/esm2022/user/lib/tile/index.mjs +0 -3
- package/esm2022/user/lib/tile/user-tile.component.mjs +0 -68
- package/esm2022/user/lib/tile/user-tile.module.mjs +0 -21
- package/esm2022/user/lib/user.model.mjs +0 -2
- package/esm2022/user/lib/user.module.mjs +0 -20
- package/establishment/lib/index.d.ts +0 -4
- package/fesm2022/lucca-front-ng-material.mjs +0 -23
- package/fesm2022/lucca-front-ng-material.mjs.map +0 -1
- package/formly/lib/index.d.ts +0 -4
- package/formly/src/lib/types/formly-field.common.scss +0 -6
- package/formly/src/lib/types/select.scss +0 -17
- package/formly/src/lib/wrappers/flex-layout.scss +0 -6
- package/formly/src/lib/wrappers/suffixes.common.scss +0 -5
- package/formly/src/lib/wrappers/wrappers.common.scss +0 -3
- package/input/lib/index.d.ts +0 -5
- package/material/index.d.ts +0 -5
- package/material/lib/index.d.ts +0 -1
- package/material/lib/module.d.ts +0 -6
- package/material/public-api.d.ts +0 -1
- package/modal/lib/index.d.ts +0 -11
- package/number/lib/index.d.ts +0 -2
- package/option/lib/index.d.ts +0 -7
- package/picker/lib/index.d.ts +0 -1
- package/popover/lib/index.d.ts +0 -5
- package/popup/lib/index.d.ts +0 -7
- package/qualification/lib/index.d.ts +0 -3
- package/safe-content/lib/index.d.ts +0 -2
- package/scroll/README.md +0 -24
- package/scroll/lib/index.d.ts +0 -3
- package/select/lib/index.d.ts +0 -2
- package/sidepanel/lib/index.d.ts +0 -3
- package/simple-select/lib/index.d.ts +0 -4
- package/title/lib/index.d.ts +0 -5
- package/tooltip/lib/index.d.ts +0 -4
- package/user/lib/index.d.ts +0 -7
- /package/a11y/{lib/skip-links → skip-links}/skip-links.component.d.ts +0 -0
- /package/a11y/{lib/skip-links → skip-links}/skip-links.translate.d.ts +0 -0
- /package/animations/{lib/animation.factory.d.ts → animation.factory.d.ts} +0 -0
- /package/animations/{lib/fade.animation.d.ts → fade.animation.d.ts} +0 -0
- /package/animations/{lib/scale.animation.d.ts → scale.animation.d.ts} +0 -0
- /package/animations/{lib/slide.animation.d.ts → slide.animation.d.ts} +0 -0
- /package/api/{lib/api.model.d.ts → api.model.d.ts} +0 -0
- /package/api/{lib/api.module.d.ts → api.module.d.ts} +0 -0
- /package/api/{lib/select → select}/api-select.module.d.ts +0 -0
- /package/api/{lib/select → select}/feeder/api-feeder.component.d.ts +0 -0
- /package/api/{lib/select → select}/feeder/api-feeder.model.d.ts +0 -0
- /package/api/{lib/select → select}/feeder/api-feeder.module.d.ts +0 -0
- /package/api/{lib/select → select}/feeder/index.d.ts +0 -0
- /package/api/{lib/select → select}/index.d.ts +0 -0
- /package/api/{lib/select → select}/input/api-select-input.component.d.ts +0 -0
- /package/api/{lib/select → select}/input/api-select-input.module.d.ts +0 -0
- /package/api/{lib/select → select}/input/index.d.ts +0 -0
- /package/api/{lib/select → select}/pager/api-pager.component.d.ts +0 -0
- /package/api/{lib/select → select}/pager/api-pager.model.d.ts +0 -0
- /package/api/{lib/select → select}/pager/api-pager.module.d.ts +0 -0
- /package/api/{lib/select → select}/pager/index.d.ts +0 -0
- /package/api/{lib/select → select}/searcher/api-searcher.component.d.ts +0 -0
- /package/api/{lib/select → select}/searcher/api-searcher.model.d.ts +0 -0
- /package/api/{lib/select → select}/searcher/api-searcher.module.d.ts +0 -0
- /package/api/{lib/select → select}/searcher/index.d.ts +0 -0
- /package/api/{lib/service → service}/api-hybrid.service.d.ts +0 -0
- /package/api/{lib/service → service}/api-service.model.d.ts +0 -0
- /package/api/{lib/service → service}/api-v3.service.d.ts +0 -0
- /package/api/{lib/service → service}/api-v4.service.d.ts +0 -0
- /package/api/{lib/service → service}/index.d.ts +0 -0
- /package/core/{lib/date → date}/date-adapter.class.d.ts +0 -0
- /package/core/{lib/date → date}/date-adapter.interface.d.ts +0 -0
- /package/core/{lib/date → date}/date-granularity.enum.d.ts +0 -0
- /package/core/{lib/date → date}/index.d.ts +0 -0
- /package/core/{lib/date → date}/native/index.d.ts +0 -0
- /package/core/{lib/date → date}/native/native-date.adapter.d.ts +0 -0
- /package/core/{lib/date → date}/native/native-date.option.d.ts +0 -0
- /package/core/{lib/date → date}/string/index.d.ts +0 -0
- /package/core/{lib/date → date}/string/string-date.adapter.d.ts +0 -0
- /package/core/{lib/event → event}/index.d.ts +0 -0
- /package/core/{lib/event → event}/on-close.subscriber.d.ts +0 -0
- /package/core/{lib/event → event}/on-open.subscriber.d.ts +0 -0
- /package/core/{lib/event → event}/on-scroll-bottom.subscriber.d.ts +0 -0
- /package/core/{lib/group → group}/group.interface.d.ts +0 -0
- /package/core/{lib/group → group}/index.d.ts +0 -0
- /package/core/{lib/id → id}/id.generator.d.ts +0 -0
- /package/core/{lib/id → id}/index.d.ts +0 -0
- /package/core/{lib/translate → translate}/index.d.ts +0 -0
- /package/core/{lib/translate → translate}/intl.model.d.ts +0 -0
- /package/core/{lib/translate → translate}/translation.model.d.ts +0 -0
- /package/core/{lib/tree → tree}/index.d.ts +0 -0
- /package/core/{lib/tree → tree}/tree.model.d.ts +0 -0
- /package/date/{lib/adapter → adapter}/date-adapter.module.d.ts +0 -0
- /package/date/{lib/adapter → adapter}/date-adapter.pipe.d.ts +0 -0
- /package/date/{lib/adapter → adapter}/index.d.ts +0 -0
- /package/date/{lib/calendar → calendar}/calendar-input.component.d.ts +0 -0
- /package/date/{lib/calendar → calendar}/calendar-input.module.d.ts +0 -0
- /package/date/{lib/calendar → calendar}/calendar-item.class.d.ts +0 -0
- /package/date/{lib/calendar → calendar}/calendar-item.factory.d.ts +0 -0
- /package/date/{lib/calendar → calendar}/calendar-item.interface.d.ts +0 -0
- /package/date/{lib/calendar → calendar}/index.d.ts +0 -0
- /package/date/{lib/date.module.d.ts → date.module.d.ts} +0 -0
- /package/date/{lib/input → input}/date-input.directive.d.ts +0 -0
- /package/date/{lib/input → input}/date-input.module.d.ts +0 -0
- /package/date/{lib/input → input}/date-input.translate.d.ts +0 -0
- /package/date/{lib/input → input}/index.d.ts +0 -0
- /package/date/{lib/picker → picker}/date-picker.component.d.ts +0 -0
- /package/date/{lib/picker → picker}/date-picker.module.d.ts +0 -0
- /package/date/{lib/picker → picker}/index.d.ts +0 -0
- /package/date/{lib/select → select}/date-select-input.component.d.ts +0 -0
- /package/date/{lib/select → select}/date-select-input.module.d.ts +0 -0
- /package/date/{lib/select → select}/date-select-input.translate.d.ts +0 -0
- /package/date/{lib/select → select}/index.d.ts +0 -0
- /package/department/{lib/department.model.d.ts → department.model.d.ts} +0 -0
- /package/department/{lib/department.module.d.ts → department.module.d.ts} +0 -0
- /package/department/{lib/select → select}/department-select.module.d.ts +0 -0
- /package/department/{lib/select → select}/feeder/department-feeder.component.d.ts +0 -0
- /package/department/{lib/select → select}/feeder/department-feeder.module.d.ts +0 -0
- /package/department/{lib/select → select}/feeder/index.d.ts +0 -0
- /package/department/{lib/select → select}/index.d.ts +0 -0
- /package/department/{lib/select → select}/input/department-select-input.component.d.ts +0 -0
- /package/department/{lib/select → select}/input/department-select-input.module.d.ts +0 -0
- /package/department/{lib/select → select}/input/department-select-input.translate.d.ts +0 -0
- /package/department/{lib/select → select}/input/index.d.ts +0 -0
- /package/department/{lib/service → service}/department-service.model.d.ts +0 -0
- /package/department/{lib/service → service}/department-v3.service.d.ts +0 -0
- /package/department/{lib/service → service}/index.d.ts +0 -0
- /package/dropdown/{lib/dropdown.module.d.ts → dropdown.module.d.ts} +0 -0
- /package/dropdown/{lib/item → item}/dropdown-item.directive.d.ts +0 -0
- /package/dropdown/{lib/item → item}/dropdown-item.model.d.ts +0 -0
- /package/dropdown/{lib/item → item}/dropdown-item.module.d.ts +0 -0
- /package/dropdown/{lib/item → item}/index.d.ts +0 -0
- /package/dropdown/{lib/panel → panel}/dropdown-panel.component.d.ts +0 -0
- /package/dropdown/{lib/panel → panel}/dropdown-panel.model.d.ts +0 -0
- /package/dropdown/{lib/panel → panel}/dropdown-panel.module.d.ts +0 -0
- /package/dropdown/{lib/panel → panel}/index.d.ts +0 -0
- /package/dropdown/{lib/trigger → trigger}/dropdown-trigger.directive.d.ts +0 -0
- /package/dropdown/{lib/trigger → trigger}/dropdown-trigger.module.d.ts +0 -0
- /package/dropdown/{lib/trigger → trigger}/index.d.ts +0 -0
- /package/establishment/{lib/establishment.model.d.ts → establishment.model.d.ts} +0 -0
- /package/establishment/{lib/establishment.module.d.ts → establishment.module.d.ts} +0 -0
- /package/establishment/{lib/select → select}/establishment-select.module.d.ts +0 -0
- /package/establishment/{lib/select → select}/for-legal-units/for-legal-units.directive.d.ts +0 -0
- /package/establishment/{lib/select → select}/for-legal-units/for-legal-units.module.d.ts +0 -0
- /package/establishment/{lib/select → select}/for-legal-units/index.d.ts +0 -0
- /package/establishment/{lib/select → select}/index.d.ts +0 -0
- /package/establishment/{lib/select → select}/input/establishment-select-input.component.d.ts +0 -0
- /package/establishment/{lib/select → select}/input/establishment-select-input.module.d.ts +0 -0
- /package/establishment/{lib/select → select}/input/establishment-select-input.translate.d.ts +0 -0
- /package/establishment/{lib/select → select}/input/index.d.ts +0 -0
- /package/establishment/{lib/select → select}/legal-unit-selector/index.d.ts +0 -0
- /package/establishment/{lib/select → select}/legal-unit-selector/legal-unit-selector.directive.d.ts +0 -0
- /package/establishment/{lib/select → select}/legal-unit-selector/legal-unit-selector.module.d.ts +0 -0
- /package/establishment/{lib/select → select}/searcher/establishment-searcher.component.d.ts +0 -0
- /package/establishment/{lib/select → select}/searcher/establishment-searcher.module.d.ts +0 -0
- /package/establishment/{lib/select → select}/searcher/index.d.ts +0 -0
- /package/establishment/{lib/select → select}/select-all/establishment-select-all.component.d.ts +0 -0
- /package/establishment/{lib/select → select}/select-all/establishment-select-all.module.d.ts +0 -0
- /package/establishment/{lib/select → select}/select-all/establishment-select-all.translate.d.ts +0 -0
- /package/establishment/{lib/select → select}/select-all/index.d.ts +0 -0
- /package/establishment/{lib/service → service}/establishment-service.model.d.ts +0 -0
- /package/establishment/{lib/service → service}/establishment.service.d.ts +0 -0
- /package/establishment/{lib/service → service}/index.d.ts +0 -0
- /package/establishment/{lib/service → service}/legal-unit-service.model.d.ts +0 -0
- /package/establishment/{lib/service → service}/legal-unit.service.d.ts +0 -0
- /package/formly/{lib/formly.config.d.ts → formly.config.d.ts} +0 -0
- /package/formly/{lib/formly.module.d.ts → formly.module.d.ts} +0 -0
- /package/formly/{lib/formly.utils.d.ts → formly.utils.d.ts} +0 -0
- /package/formly/{lib/types → types}/api.d.ts +0 -0
- /package/formly/{lib/types → types}/checkbox.d.ts +0 -0
- /package/formly/{lib/types → types}/date.d.ts +0 -0
- /package/formly/{lib/types → types}/department.d.ts +0 -0
- /package/formly/{lib/types → types}/establishment.d.ts +0 -0
- /package/formly/{lib/types → types}/index.d.ts +0 -0
- /package/formly/{lib/types → types}/input.d.ts +0 -0
- /package/formly/{lib/types → types}/qualification.d.ts +0 -0
- /package/formly/{lib/types → types}/radios.d.ts +0 -0
- /package/formly/{lib/types → types}/select.d.ts +0 -0
- /package/formly/{lib/types → types}/textarea.d.ts +0 -0
- /package/formly/{lib/types → types}/user.d.ts +0 -0
- /package/formly/{lib/wrappers → wrappers}/checkbox-layout.d.ts +0 -0
- /package/formly/{lib/wrappers → wrappers}/error.d.ts +0 -0
- /package/formly/{lib/wrappers → wrappers}/helper.d.ts +0 -0
- /package/formly/{lib/wrappers → wrappers}/icon.d.ts +0 -0
- /package/formly/{lib/wrappers → wrappers}/index.d.ts +0 -0
- /package/formly/{lib/wrappers → wrappers}/radiosfield-layout.d.ts +0 -0
- /package/formly/{lib/wrappers → wrappers}/suffix.d.ts +0 -0
- /package/formly/{lib/wrappers → wrappers}/textfield-layout.d.ts +0 -0
- /package/input/{lib/clearer → clearer}/clearer.component.d.ts +0 -0
- /package/input/{lib/clearer → clearer}/clearer.model.d.ts +0 -0
- /package/input/{lib/clearer → clearer}/clearer.module.d.ts +0 -0
- /package/input/{lib/clearer → clearer}/index.d.ts +0 -0
- /package/input/{lib/displayer → displayer}/index.d.ts +0 -0
- /package/input/{lib/displayer → displayer}/input-displayer.directive.d.ts +0 -0
- /package/input/{lib/displayer → displayer}/input-displayer.model.d.ts +0 -0
- /package/input/{lib/displayer → displayer}/input-displayer.module.d.ts +0 -0
- /package/input/{lib/input.directive.d.ts → input.directive.d.ts} +0 -0
- /package/input/{lib/input.model.d.ts → input.model.d.ts} +0 -0
- /package/input/{lib/input.module.d.ts → input.module.d.ts} +0 -0
- /package/modal/{lib/modal-config.default.d.ts → modal-config.default.d.ts} +0 -0
- /package/modal/{lib/modal-config.model.d.ts → modal-config.model.d.ts} +0 -0
- /package/modal/{lib/modal-panel.component.d.ts → modal-panel.component.d.ts} +0 -0
- /package/modal/{lib/modal-ref.factory.d.ts → modal-ref.factory.d.ts} +0 -0
- /package/modal/{lib/modal-ref.model.d.ts → modal-ref.model.d.ts} +0 -0
- /package/modal/{lib/modal.model.d.ts → modal.model.d.ts} +0 -0
- /package/modal/{lib/modal.module.d.ts → modal.module.d.ts} +0 -0
- /package/modal/{lib/modal.service.d.ts → modal.service.d.ts} +0 -0
- /package/modal/{lib/modal.token.d.ts → modal.token.d.ts} +0 -0
- /package/modal/{lib/modal.translate.d.ts → modal.translate.d.ts} +0 -0
- /package/modal/{lib/modal.utils.d.ts → modal.utils.d.ts} +0 -0
- /package/number/{lib/number.module.d.ts → number.module.d.ts} +0 -0
- /package/number/{lib/number.pipe.d.ts → number.pipe.d.ts} +0 -0
- /package/option/{lib/item → item}/index.d.ts +0 -0
- /package/option/{lib/item → item}/option-item.component.d.ts +0 -0
- /package/option/{lib/item → item}/option-item.model.d.ts +0 -0
- /package/option/{lib/item → item}/option-item.module.d.ts +0 -0
- /package/option/{lib/item → item}/tree-option-item.component.d.ts +0 -0
- /package/option/{lib/item → item}/tree-option-item.model.d.ts +0 -0
- /package/option/{lib/item → item}/tree-option-item.module.d.ts +0 -0
- /package/option/{lib/item → item}/tree-option-item.translate.d.ts +0 -0
- /package/option/{lib/operator → operator}/feeder/index.d.ts +0 -0
- /package/option/{lib/operator → operator}/feeder/option-feeder.component.d.ts +0 -0
- /package/option/{lib/operator → operator}/feeder/option-feeder.module.d.ts +0 -0
- /package/option/{lib/operator → operator}/feeder/tree-option-feeder.component.d.ts +0 -0
- /package/option/{lib/operator → operator}/feeder/tree-option-feeder.module.d.ts +0 -0
- /package/option/{lib/operator → operator}/for-groups/for-groups.directive.d.ts +0 -0
- /package/option/{lib/operator → operator}/for-groups/for-groups.module.d.ts +0 -0
- /package/option/{lib/operator → operator}/for-groups/index.d.ts +0 -0
- /package/option/{lib/operator → operator}/for-options/for-options.directive.d.ts +0 -0
- /package/option/{lib/operator → operator}/for-options/for-options.module.d.ts +0 -0
- /package/option/{lib/operator → operator}/for-options/for-tree-options.directive.d.ts +0 -0
- /package/option/{lib/operator → operator}/for-options/for-tree-options.module.d.ts +0 -0
- /package/option/{lib/operator → operator}/for-options/index.d.ts +0 -0
- /package/option/{lib/operator → operator}/index.d.ts +0 -0
- /package/option/{lib/operator → operator}/option-operator.model.d.ts +0 -0
- /package/option/{lib/operator → operator}/option-operator.module.d.ts +0 -0
- /package/option/{lib/operator → operator}/pager/index.d.ts +0 -0
- /package/option/{lib/operator → operator}/pager/option-pager.component.d.ts +0 -0
- /package/option/{lib/operator → operator}/pager/option-pager.module.d.ts +0 -0
- /package/option/{lib/operator → operator}/pager/tree-option-pager.component.d.ts +0 -0
- /package/option/{lib/operator → operator}/pager/tree-option-pager.module.d.ts +0 -0
- /package/option/{lib/operator → operator}/searcher/index.d.ts +0 -0
- /package/option/{lib/operator → operator}/searcher/option-searcher.component.d.ts +0 -0
- /package/option/{lib/operator → operator}/searcher/option-searcher.module.d.ts +0 -0
- /package/option/{lib/operator → operator}/searcher/tree-option-searcher.component.d.ts +0 -0
- /package/option/{lib/operator → operator}/searcher/tree-option-searcher.module.d.ts +0 -0
- /package/option/{lib/operator → operator}/tree-option-operator.model.d.ts +0 -0
- /package/option/{lib/operator → operator}/tree-option-operator.module.d.ts +0 -0
- /package/option/{lib/option.module.d.ts → option.module.d.ts} +0 -0
- /package/option/{lib/picker → picker}/index.d.ts +0 -0
- /package/option/{lib/picker → picker}/option-picker-advanced.component.d.ts +0 -0
- /package/option/{lib/picker → picker}/option-picker.component.d.ts +0 -0
- /package/option/{lib/picker → picker}/option-picker.model.d.ts +0 -0
- /package/option/{lib/picker → picker}/option-picker.module.d.ts +0 -0
- /package/option/{lib/picker → picker}/tree-option-picker-advanced.component.d.ts +0 -0
- /package/option/{lib/picker → picker}/tree-option-picker.component.d.ts +0 -0
- /package/option/{lib/picker → picker}/tree-option-picker.model.d.ts +0 -0
- /package/option/{lib/picker → picker}/tree-option-picker.module.d.ts +0 -0
- /package/option/{lib/placeholder → placeholder}/index.d.ts +0 -0
- /package/option/{lib/placeholder → placeholder}/option-placeholder.component.d.ts +0 -0
- /package/option/{lib/placeholder → placeholder}/option-placeholder.module.d.ts +0 -0
- /package/option/{lib/placeholder → placeholder}/option-placeholder.translate.d.ts +0 -0
- /package/option/{lib/selector → selector}/all/index.d.ts +0 -0
- /package/option/{lib/selector → selector}/all/select-all.component.d.ts +0 -0
- /package/option/{lib/selector → selector}/all/select-all.module.d.ts +0 -0
- /package/option/{lib/selector → selector}/all/select-all.translate.d.ts +0 -0
- /package/option/{lib/selector → selector}/all/tree-select-all.component.d.ts +0 -0
- /package/option/{lib/selector → selector}/all/tree-select-all.module.d.ts +0 -0
- /package/option/{lib/selector → selector}/index.d.ts +0 -0
- /package/option/{lib/selector → selector}/option-selector.model.d.ts +0 -0
- /package/option/{lib/selector → selector}/option-selector.module.d.ts +0 -0
- /package/option/{lib/selector → selector}/tree-option-selector.model.d.ts +0 -0
- /package/option/{lib/selector → selector}/tree-option-selector.module.d.ts +0 -0
- /package/option/{lib/tree-option.module.d.ts → tree-option.module.d.ts} +0 -0
- /package/picker/{lib/input-picker.model.d.ts → input-picker.model.d.ts} +0 -0
- /package/popover/{lib/animation → animation}/index.d.ts +0 -0
- /package/popover/{lib/animation → animation}/popover.animation.d.ts +0 -0
- /package/popover/{lib/panel → panel}/index.d.ts +0 -0
- /package/popover/{lib/panel → panel}/popover-panel.component.d.ts +0 -0
- /package/popover/{lib/panel → panel}/popover-panel.model.d.ts +0 -0
- /package/popover/{lib/panel → panel}/popover-panel.module.d.ts +0 -0
- /package/popover/{lib/popover.module.d.ts → popover.module.d.ts} +0 -0
- /package/popover/{lib/target → target}/index.d.ts +0 -0
- /package/popover/{lib/target → target}/popover-target.directive.d.ts +0 -0
- /package/popover/{lib/target → target}/popover-target.model.d.ts +0 -0
- /package/popover/{lib/target → target}/popover-target.module.d.ts +0 -0
- /package/popover/{lib/trigger → trigger}/index.d.ts +0 -0
- /package/popover/{lib/trigger → trigger}/popover-trigger.directive.d.ts +0 -0
- /package/popover/{lib/trigger → trigger}/popover-trigger.model.d.ts +0 -0
- /package/popover/{lib/trigger → trigger}/popover-trigger.module.d.ts +0 -0
- /package/popup/{lib/popup-config.default.d.ts → popup-config.default.d.ts} +0 -0
- /package/popup/{lib/popup-config.model.d.ts → popup-config.model.d.ts} +0 -0
- /package/popup/{lib/popup-ref.factory.d.ts → popup-ref.factory.d.ts} +0 -0
- /package/popup/{lib/popup-ref.model.d.ts → popup-ref.model.d.ts} +0 -0
- /package/popup/{lib/popup.module.d.ts → popup.module.d.ts} +0 -0
- /package/popup/{lib/popup.service.d.ts → popup.service.d.ts} +0 -0
- /package/popup/{lib/popup.token.d.ts → popup.token.d.ts} +0 -0
- /package/qualification/{lib/qualification.model.d.ts → qualification.model.d.ts} +0 -0
- /package/qualification/{lib/qualification.module.d.ts → qualification.module.d.ts} +0 -0
- /package/qualification/{lib/select → select}/index.d.ts +0 -0
- /package/qualification/{lib/select → select}/input/index.d.ts +0 -0
- /package/qualification/{lib/select → select}/input/qualification-select-input.component.d.ts +0 -0
- /package/qualification/{lib/select → select}/input/qualification-select-input.module.d.ts +0 -0
- /package/qualification/{lib/select → select}/input/qualification-select-input.translate.d.ts +0 -0
- /package/qualification/{lib/select → select}/qualification-select.module.d.ts +0 -0
- /package/safe-content/{lib/safe-content.module.d.ts → safe-content.module.d.ts} +0 -0
- /package/safe-content/{lib/safe-html.pipe.d.ts → safe-html.pipe.d.ts} +0 -0
- /package/scroll/{lib/scroll.directive.d.ts → scroll.directive.d.ts} +0 -0
- /package/scroll/{lib/scroll.model.d.ts → scroll.model.d.ts} +0 -0
- /package/scroll/{lib/scroll.module.d.ts → scroll.module.d.ts} +0 -0
- /package/select/{lib/input → input}/index.d.ts +0 -0
- /package/select/{lib/input → input}/select-input.component.d.ts +0 -0
- /package/select/{lib/input → input}/select-input.model.d.ts +0 -0
- /package/select/{lib/input → input}/select-input.module.d.ts +0 -0
- /package/select/{lib/select.module.d.ts → select.module.d.ts} +0 -0
- /package/sidepanel/{lib/sidepanel.model.d.ts → sidepanel.model.d.ts} +0 -0
- /package/sidepanel/{lib/sidepanel.module.d.ts → sidepanel.module.d.ts} +0 -0
- /package/sidepanel/{lib/sidepanel.service.d.ts → sidepanel.service.d.ts} +0 -0
- /package/simple-select/api/{lib/api-v3.directive.d.ts → api-v3.directive.d.ts} +0 -0
- /package/simple-select/api/{lib/api-v4.directive.d.ts → api-v4.directive.d.ts} +0 -0
- /package/simple-select/api/{lib/api.directive.d.ts → api.directive.d.ts} +0 -0
- /package/simple-select/{lib/input → input}/index.d.ts +0 -0
- /package/simple-select/{lib/input → input}/panel-ref.factory.d.ts +0 -0
- /package/simple-select/{lib/input → input}/select-input.component.d.ts +0 -0
- /package/simple-select/{lib/input → input}/select-input.models.d.ts +0 -0
- /package/simple-select/{lib/option → option}/default-option.component.d.ts +0 -0
- /package/simple-select/{lib/option → option}/disabled.directive.d.ts +0 -0
- /package/simple-select/{lib/option → option}/displayer.directive.d.ts +0 -0
- /package/simple-select/{lib/option → option}/index.d.ts +0 -0
- /package/simple-select/{lib/option → option}/option-outlet.directive.d.ts +0 -0
- /package/simple-select/{lib/option → option}/option.component.d.ts +0 -0
- /package/simple-select/{lib/option → option}/option.directive.d.ts +0 -0
- /package/simple-select/{lib/option → option}/option.token.d.ts +0 -0
- /package/simple-select/{lib/panel → panel}/index.d.ts +0 -0
- /package/simple-select/{lib/panel → panel}/panel.component.d.ts +0 -0
- /package/simple-select/{lib/panel → panel}/panel.models.d.ts +0 -0
- /package/simple-select/{lib/select.model.d.ts → select.model.d.ts} +0 -0
- /package/simple-select/{lib/select.translate.d.ts → select.translate.d.ts} +0 -0
- /package/title/{lib/title-translate.service.d.ts → title-translate.service.d.ts} +0 -0
- /package/title/{lib/title.model.d.ts → title.model.d.ts} +0 -0
- /package/title/{lib/title.module.d.ts → title.module.d.ts} +0 -0
- /package/title/{lib/title.service.d.ts → title.service.d.ts} +0 -0
- /package/title/{lib/title.strategy.d.ts → title.strategy.d.ts} +0 -0
- /package/tooltip/{lib/animation → animation}/index.d.ts +0 -0
- /package/tooltip/{lib/animation → animation}/tooltip.animation.d.ts +0 -0
- /package/tooltip/{lib/panel → panel}/index.d.ts +0 -0
- /package/tooltip/{lib/panel → panel}/tooltip-panel.component.d.ts +0 -0
- /package/tooltip/{lib/panel → panel}/tooltip-panel.module.d.ts +0 -0
- /package/tooltip/{lib/tooltip.module.d.ts → tooltip.module.d.ts} +0 -0
- /package/tooltip/{lib/trigger → trigger}/index.d.ts +0 -0
- /package/tooltip/{lib/trigger → trigger}/tooltip-trigger.directive.d.ts +0 -0
- /package/tooltip/{lib/trigger → trigger}/tooltip-trigger.module.d.ts +0 -0
- /package/user/{lib/display → display}/display-format.model.d.ts +0 -0
- /package/user/{lib/display → display}/index.d.ts +0 -0
- /package/user/{lib/display → display}/user-display.module.d.ts +0 -0
- /package/user/{lib/display → display}/user-display.pipe.d.ts +0 -0
- /package/user/{lib/picture → picture}/index.d.ts +0 -0
- /package/user/{lib/picture → picture}/user-picture.component.d.ts +0 -0
- /package/user/{lib/picture → picture}/user-picture.module.d.ts +0 -0
- /package/user/{lib/select → select}/homonyms/index.d.ts +0 -0
- /package/user/{lib/select → select}/homonyms/user-homonyms.component.d.ts +0 -0
- /package/user/{lib/select → select}/homonyms/user-homonyms.module.d.ts +0 -0
- /package/user/{lib/select → select}/homonyms/user-homonyms.service.d.ts +0 -0
- /package/user/{lib/select → select}/index.d.ts +0 -0
- /package/user/{lib/select → select}/input/index.d.ts +0 -0
- /package/user/{lib/select → select}/input/user-select-input.component.d.ts +0 -0
- /package/user/{lib/select → select}/input/user-select-input.module.d.ts +0 -0
- /package/user/{lib/select → select}/input/user-select-input.translate.d.ts +0 -0
- /package/user/{lib/select → select}/me/index.d.ts +0 -0
- /package/user/{lib/select → select}/me/me-option.directive.d.ts +0 -0
- /package/user/{lib/select → select}/me/me-option.module.d.ts +0 -0
- /package/user/{lib/select → select}/searcher/index.d.ts +0 -0
- /package/user/{lib/select → select}/searcher/user-searcher.component.d.ts +0 -0
- /package/user/{lib/select → select}/searcher/user-searcher.module.d.ts +0 -0
- /package/user/{lib/select → select}/searcher/user-searcher.translate.d.ts +0 -0
- /package/user/{lib/select → select}/user-select.module.d.ts +0 -0
- /package/user/{lib/service → service}/index.d.ts +0 -0
- /package/user/{lib/service → service}/user-service.model.d.ts +0 -0
- /package/user/{lib/service → service}/user-v3.service.d.ts +0 -0
- /package/user/{lib/tile → tile}/index.d.ts +0 -0
- /package/user/{lib/tile → tile}/user-tile.component.d.ts +0 -0
- /package/user/{lib/tile → tile}/user-tile.module.d.ts +0 -0
- /package/user/{lib/user.model.d.ts → user.model.d.ts} +0 -0
- /package/user/{lib/user.module.d.ts → user.module.d.ts} +0 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, forwardRef, Inject, Input, Optional, Self, SkipSelf } from '@angular/core';
|
|
2
|
+
import { ALuOnOpenSubscriber } from '@lucca-front/ng/core';
|
|
3
|
+
import { ALuOptionOperator } from '@lucca-front/ng/option';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { ALuApiService, LuApiHybridService } from '../../service/index';
|
|
6
|
+
import { ALuApiOptionFeeder } from './api-feeder.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../service/index";
|
|
9
|
+
class LuApiFeederComponent extends ALuApiOptionFeeder {
|
|
10
|
+
constructor(hostService, selfService) {
|
|
11
|
+
super(hostService || selfService);
|
|
12
|
+
this.outOptions$ = new BehaviorSubject([]);
|
|
13
|
+
}
|
|
14
|
+
set standard(standard) {
|
|
15
|
+
this._service.standard = standard;
|
|
16
|
+
}
|
|
17
|
+
set api(api) {
|
|
18
|
+
this._service.api = api;
|
|
19
|
+
}
|
|
20
|
+
set fields(fields) {
|
|
21
|
+
this._service.fields = fields;
|
|
22
|
+
}
|
|
23
|
+
set filters(filters) {
|
|
24
|
+
this._service.filters = filters;
|
|
25
|
+
}
|
|
26
|
+
set orderBy(orderBy) {
|
|
27
|
+
this._service.orderBy = orderBy;
|
|
28
|
+
}
|
|
29
|
+
set sort(sort) {
|
|
30
|
+
this._service.sort = sort;
|
|
31
|
+
}
|
|
32
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiFeederComponent, deps: [{ token: ALuApiService, optional: true, skipSelf: true }, { token: ALuApiService, self: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
33
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.3", type: LuApiFeederComponent, isStandalone: true, selector: "lu-api-feeder", inputs: { standard: "standard", api: "api", fields: "fields", filters: "filters", orderBy: "orderBy", sort: "sort" }, providers: [
|
|
34
|
+
{
|
|
35
|
+
provide: ALuOptionOperator,
|
|
36
|
+
useExisting: forwardRef(() => LuApiFeederComponent),
|
|
37
|
+
multi: true,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
provide: ALuOnOpenSubscriber,
|
|
41
|
+
useExisting: forwardRef(() => LuApiFeederComponent),
|
|
42
|
+
multi: true,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
provide: ALuApiService,
|
|
46
|
+
useClass: LuApiHybridService,
|
|
47
|
+
},
|
|
48
|
+
], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
49
|
+
}
|
|
50
|
+
export { LuApiFeederComponent };
|
|
51
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiFeederComponent, decorators: [{
|
|
52
|
+
type: Component,
|
|
53
|
+
args: [{ selector: 'lu-api-feeder', template: '', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, providers: [
|
|
54
|
+
{
|
|
55
|
+
provide: ALuOptionOperator,
|
|
56
|
+
useExisting: forwardRef(() => LuApiFeederComponent),
|
|
57
|
+
multi: true,
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
provide: ALuOnOpenSubscriber,
|
|
61
|
+
useExisting: forwardRef(() => LuApiFeederComponent),
|
|
62
|
+
multi: true,
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
provide: ALuApiService,
|
|
66
|
+
useClass: LuApiHybridService,
|
|
67
|
+
},
|
|
68
|
+
] }]
|
|
69
|
+
}], ctorParameters: function () { return [{ type: i1.LuApiHybridService, decorators: [{
|
|
70
|
+
type: Inject,
|
|
71
|
+
args: [ALuApiService]
|
|
72
|
+
}, {
|
|
73
|
+
type: Optional
|
|
74
|
+
}, {
|
|
75
|
+
type: SkipSelf
|
|
76
|
+
}] }, { type: i1.LuApiHybridService, decorators: [{
|
|
77
|
+
type: Inject,
|
|
78
|
+
args: [ALuApiService]
|
|
79
|
+
}, {
|
|
80
|
+
type: Self
|
|
81
|
+
}] }]; }, propDecorators: { standard: [{
|
|
82
|
+
type: Input
|
|
83
|
+
}], api: [{
|
|
84
|
+
type: Input
|
|
85
|
+
}], fields: [{
|
|
86
|
+
type: Input
|
|
87
|
+
}], filters: [{
|
|
88
|
+
type: Input
|
|
89
|
+
}], orderBy: [{
|
|
90
|
+
type: Input
|
|
91
|
+
}], sort: [{
|
|
92
|
+
type: Input
|
|
93
|
+
}] } });
|
|
94
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLWZlZWRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hcGkvc2VsZWN0L2ZlZWRlci9hcGktZmVlZGVyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLFFBQVEsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3hILE9BQU8sRUFBRSxtQkFBbUIsRUFBdUIsTUFBTSxzQkFBc0IsQ0FBQztBQUNoRixPQUFPLEVBQUUsaUJBQWlCLEVBQXFCLE1BQU0sd0JBQXdCLENBQUM7QUFDOUUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUV2QyxPQUFPLEVBQUUsYUFBYSxFQUFFLGtCQUFrQixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDeEUsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7OztBQUN4RCxNQXVCYSxvQkFBd0QsU0FBUSxrQkFBNEM7SUFFeEgsWUFJQyxXQUFrQyxFQUNILFdBQWtDO1FBRWpFLEtBQUssQ0FBQyxXQUFXLElBQUksV0FBVyxDQUFDLENBQUM7UUFSMUIsZ0JBQVcsR0FBRyxJQUFJLGVBQWUsQ0FBTSxFQUFFLENBQUMsQ0FBQztJQVNwRCxDQUFDO0lBRUQsSUFBYSxRQUFRLENBQUMsUUFBcUI7UUFDMUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLEdBQUcsUUFBUSxDQUFDO0lBQ25DLENBQUM7SUFDRCxJQUFhLEdBQUcsQ0FBQyxHQUFXO1FBQzNCLElBQUksQ0FBQyxRQUFRLENBQUMsR0FBRyxHQUFHLEdBQUcsQ0FBQztJQUN6QixDQUFDO0lBQ0QsSUFBYSxNQUFNLENBQUMsTUFBYztRQUNqQyxJQUFJLENBQUMsUUFBUSxDQUFDLE1BQU0sR0FBRyxNQUFNLENBQUM7SUFDL0IsQ0FBQztJQUNELElBQWEsT0FBTyxDQUFDLE9BQWlCO1FBQ3JDLElBQUksQ0FBQyxRQUFRLENBQUMsT0FBTyxHQUFHLE9BQU8sQ0FBQztJQUNqQyxDQUFDO0lBQ0QsSUFBYSxPQUFPLENBQUMsT0FBZTtRQUNuQyxJQUFJLENBQUMsUUFBUSxDQUFDLE9BQU8sR0FBRyxPQUFPLENBQUM7SUFDakMsQ0FBQztJQUNELElBQWEsSUFBSSxDQUFDLElBQVk7UUFDN0IsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDO0lBQzNCLENBQUM7OEdBN0JXLG9CQUFvQixrQkFHdkIsYUFBYSw2Q0FJYixhQUFhO2tHQVBWLG9CQUFvQixrTEFqQnJCO1lBQ1Y7Z0JBQ0MsT0FBTyxFQUFFLGlCQUFpQjtnQkFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxvQkFBb0IsQ0FBQztnQkFDbkQsS0FBSyxFQUFFLElBQUk7YUFDWDtZQUNEO2dCQUNDLE9BQU8sRUFBRSxtQkFBbUI7Z0JBQzVCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMsb0JBQW9CLENBQUM7Z0JBQ25ELEtBQUssRUFBRSxJQUFJO2FBQ1g7WUFDRDtnQkFDQyxPQUFPLEVBQUUsYUFBYTtnQkFDdEIsUUFBUSxFQUFFLGtCQUFrQjthQUM1QjtTQUNELGlEQW5CUyxFQUFFOztTQXFCQSxvQkFBb0I7MkZBQXBCLG9CQUFvQjtrQkF2QmhDLFNBQVM7K0JBQ0MsZUFBZSxZQUNmLEVBQUUsbUJBRUssdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLGFBQ0w7d0JBQ1Y7NEJBQ0MsT0FBTyxFQUFFLGlCQUFpQjs0QkFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUscUJBQXFCLENBQUM7NEJBQ25ELEtBQUssRUFBRSxJQUFJO3lCQUNYO3dCQUNEOzRCQUNDLE9BQU8sRUFBRSxtQkFBbUI7NEJBQzVCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBRyxFQUFFLHFCQUFxQixDQUFDOzRCQUNuRCxLQUFLLEVBQUUsSUFBSTt5QkFDWDt3QkFDRDs0QkFDQyxPQUFPLEVBQUUsYUFBYTs0QkFDdEIsUUFBUSxFQUFFLGtCQUFrQjt5QkFDNUI7cUJBQ0Q7OzBCQUtDLE1BQU07MkJBQUMsYUFBYTs7MEJBQ3BCLFFBQVE7OzBCQUNSLFFBQVE7OzBCQUVSLE1BQU07MkJBQUMsYUFBYTs7MEJBQUcsSUFBSTs0Q0FLaEIsUUFBUTtzQkFBcEIsS0FBSztnQkFHTyxHQUFHO3NCQUFmLEtBQUs7Z0JBR08sTUFBTTtzQkFBbEIsS0FBSztnQkFHTyxPQUFPO3NCQUFuQixLQUFLO2dCQUdPLE9BQU87c0JBQW5CLEtBQUs7Z0JBR08sSUFBSTtzQkFBaEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGZvcndhcmRSZWYsIEluamVjdCwgSW5wdXQsIE9wdGlvbmFsLCBTZWxmLCBTa2lwU2VsZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBBTHVPbk9wZW5TdWJzY3JpYmVyLCBJTHVPbk9wZW5TdWJzY3JpYmVyIH0gZnJvbSAnQGx1Y2NhLWZyb250L25nL2NvcmUnO1xyXG5pbXBvcnQgeyBBTHVPcHRpb25PcGVyYXRvciwgSUx1T3B0aW9uT3BlcmF0b3IgfSBmcm9tICdAbHVjY2EtZnJvbnQvbmcvb3B0aW9uJztcclxuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0IH0gZnJvbSAncnhqcyc7XHJcbmltcG9ydCB7IElMdUFwaUl0ZW0gfSBmcm9tICcuLi8uLi9hcGkubW9kZWwnO1xyXG5pbXBvcnQgeyBBTHVBcGlTZXJ2aWNlLCBMdUFwaUh5YnJpZFNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlL2luZGV4JztcclxuaW1wb3J0IHsgQUx1QXBpT3B0aW9uRmVlZGVyIH0gZnJvbSAnLi9hcGktZmVlZGVyLm1vZGVsJztcclxuQENvbXBvbmVudCh7XHJcblx0c2VsZWN0b3I6ICdsdS1hcGktZmVlZGVyJyxcclxuXHR0ZW1wbGF0ZTogJycsXHJcblx0c3R5bGVVcmxzOiBbXSxcclxuXHRjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxuXHRzdGFuZGFsb25lOiB0cnVlLFxyXG5cdHByb3ZpZGVyczogW1xyXG5cdFx0e1xyXG5cdFx0XHRwcm92aWRlOiBBTHVPcHRpb25PcGVyYXRvcixcclxuXHRcdFx0dXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gTHVBcGlGZWVkZXJDb21wb25lbnQpLFxyXG5cdFx0XHRtdWx0aTogdHJ1ZSxcclxuXHRcdH0sXHJcblx0XHR7XHJcblx0XHRcdHByb3ZpZGU6IEFMdU9uT3BlblN1YnNjcmliZXIsXHJcblx0XHRcdHVzZUV4aXN0aW5nOiBmb3J3YXJkUmVmKCgpID0+IEx1QXBpRmVlZGVyQ29tcG9uZW50KSxcclxuXHRcdFx0bXVsdGk6IHRydWUsXHJcblx0XHR9LFxyXG5cdFx0e1xyXG5cdFx0XHRwcm92aWRlOiBBTHVBcGlTZXJ2aWNlLFxyXG5cdFx0XHR1c2VDbGFzczogTHVBcGlIeWJyaWRTZXJ2aWNlLFxyXG5cdFx0fSxcclxuXHRdLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgTHVBcGlGZWVkZXJDb21wb25lbnQ8VCBleHRlbmRzIElMdUFwaUl0ZW0gPSBJTHVBcGlJdGVtPiBleHRlbmRzIEFMdUFwaU9wdGlvbkZlZWRlcjxULCBMdUFwaUh5YnJpZFNlcnZpY2U8VD4+IGltcGxlbWVudHMgSUx1T3B0aW9uT3BlcmF0b3I8VD4sIElMdU9uT3BlblN1YnNjcmliZXIge1xyXG5cdG92ZXJyaWRlIG91dE9wdGlvbnMkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxUW10+KFtdKTtcclxuXHRjb25zdHJ1Y3RvcihcclxuXHRcdEBJbmplY3QoQUx1QXBpU2VydmljZSlcclxuXHRcdEBPcHRpb25hbCgpXHJcblx0XHRAU2tpcFNlbGYoKVxyXG5cdFx0aG9zdFNlcnZpY2U6IEx1QXBpSHlicmlkU2VydmljZTxUPixcclxuXHRcdEBJbmplY3QoQUx1QXBpU2VydmljZSkgQFNlbGYoKSBzZWxmU2VydmljZTogTHVBcGlIeWJyaWRTZXJ2aWNlPFQ+LFxyXG5cdCkge1xyXG5cdFx0c3VwZXIoaG9zdFNlcnZpY2UgfHwgc2VsZlNlcnZpY2UpO1xyXG5cdH1cclxuXHJcblx0QElucHV0KCkgc2V0IHN0YW5kYXJkKHN0YW5kYXJkOiAndjMnIHwgJ3Y0Jykge1xyXG5cdFx0dGhpcy5fc2VydmljZS5zdGFuZGFyZCA9IHN0YW5kYXJkO1xyXG5cdH1cclxuXHRASW5wdXQoKSBzZXQgYXBpKGFwaTogc3RyaW5nKSB7XHJcblx0XHR0aGlzLl9zZXJ2aWNlLmFwaSA9IGFwaTtcclxuXHR9XHJcblx0QElucHV0KCkgc2V0IGZpZWxkcyhmaWVsZHM6IHN0cmluZykge1xyXG5cdFx0dGhpcy5fc2VydmljZS5maWVsZHMgPSBmaWVsZHM7XHJcblx0fVxyXG5cdEBJbnB1dCgpIHNldCBmaWx0ZXJzKGZpbHRlcnM6IHN0cmluZ1tdKSB7XHJcblx0XHR0aGlzLl9zZXJ2aWNlLmZpbHRlcnMgPSBmaWx0ZXJzO1xyXG5cdH1cclxuXHRASW5wdXQoKSBzZXQgb3JkZXJCeShvcmRlckJ5OiBzdHJpbmcpIHtcclxuXHRcdHRoaXMuX3NlcnZpY2Uub3JkZXJCeSA9IG9yZGVyQnk7XHJcblx0fVxyXG5cdEBJbnB1dCgpIHNldCBzb3J0KHNvcnQ6IHN0cmluZykge1xyXG5cdFx0dGhpcy5fc2VydmljZS5zb3J0ID0gc29ydDtcclxuXHR9XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
export class ALuApiOptionFeeder {
|
|
3
|
+
constructor(service) {
|
|
4
|
+
this.outOptions$ = new BehaviorSubject([]);
|
|
5
|
+
this._service = service;
|
|
6
|
+
}
|
|
7
|
+
onOpen() {
|
|
8
|
+
this._service.getAll().subscribe((items) => this.outOptions$.next(items));
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLWZlZWRlci5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL25nL2FwaS9zZWxlY3QvZmVlZGVyL2FwaS1mZWVkZXIubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLGVBQWUsRUFBYyxNQUFNLE1BQU0sQ0FBQztBQVNuRCxNQUFNLE9BQWdCLGtCQUFrQjtJQUd2QyxZQUFZLE9BQVU7UUFGdEIsZ0JBQVcsR0FBRyxJQUFJLGVBQWUsQ0FBTSxFQUFFLENBQUMsQ0FBQztRQUcxQyxJQUFJLENBQUMsUUFBUSxHQUFHLE9BQU8sQ0FBQztJQUN6QixDQUFDO0lBQ0QsTUFBTTtRQUNMLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxFQUFFLENBQUMsU0FBUyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQzNFLENBQUM7Q0FDRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IElMdU9wdGlvbk9wZXJhdG9yIH0gZnJvbSAnQGx1Y2NhLWZyb250L25nL29wdGlvbic7XHJcbmltcG9ydCB7IEJlaGF2aW9yU3ViamVjdCwgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xyXG5pbXBvcnQgeyBJTHVBcGlJdGVtIH0gZnJvbSAnLi4vLi4vYXBpLm1vZGVsJztcclxuaW1wb3J0IHsgSUx1QXBpU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2UvaW5kZXgnO1xyXG5cclxuZXhwb3J0IHR5cGUgSUx1QXBpT3B0aW9uRmVlZGVyPFQgZXh0ZW5kcyBJTHVBcGlJdGVtID0gSUx1QXBpSXRlbT4gPSBJTHVPcHRpb25PcGVyYXRvcjxUPjtcclxuZXhwb3J0IGludGVyZmFjZSBJTHVBcGlGZWVkZXJTZXJ2aWNlPFQgZXh0ZW5kcyBJTHVBcGlJdGVtID0gSUx1QXBpSXRlbT4ge1xyXG5cdGdldEFsbCgpOiBPYnNlcnZhYmxlPFRbXT47XHJcbn1cclxuXHJcbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBBTHVBcGlPcHRpb25GZWVkZXI8VCBleHRlbmRzIElMdUFwaUl0ZW0gPSBJTHVBcGlJdGVtLCBTIGV4dGVuZHMgSUx1QXBpU2VydmljZTxUPiA9IElMdUFwaVNlcnZpY2U8VD4+IGltcGxlbWVudHMgSUx1QXBpT3B0aW9uRmVlZGVyPFQ+IHtcclxuXHRvdXRPcHRpb25zJCA9IG5ldyBCZWhhdmlvclN1YmplY3Q8VFtdPihbXSk7XHJcblx0cHJvdGVjdGVkIF9zZXJ2aWNlOiBTO1xyXG5cdGNvbnN0cnVjdG9yKHNlcnZpY2U6IFMpIHtcclxuXHRcdHRoaXMuX3NlcnZpY2UgPSBzZXJ2aWNlO1xyXG5cdH1cclxuXHRvbk9wZW4oKSB7XHJcblx0XHR0aGlzLl9zZXJ2aWNlLmdldEFsbCgpLnN1YnNjcmliZSgoaXRlbXMpID0+IHRoaXMub3V0T3B0aW9ucyQubmV4dChpdGVtcykpO1xyXG5cdH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { LuApiFeederComponent } from './api-feeder.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
class LuApiFeederModule {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiFeederModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.3", ngImport: i0, type: LuApiFeederModule, imports: [LuApiFeederComponent], exports: [LuApiFeederComponent] }); }
|
|
7
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiFeederModule }); }
|
|
8
|
+
}
|
|
9
|
+
export { LuApiFeederModule };
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiFeederModule, decorators: [{
|
|
11
|
+
type: NgModule,
|
|
12
|
+
args: [{
|
|
13
|
+
imports: [LuApiFeederComponent],
|
|
14
|
+
exports: [LuApiFeederComponent],
|
|
15
|
+
}]
|
|
16
|
+
}] });
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLWZlZWRlci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hcGkvc2VsZWN0L2ZlZWRlci9hcGktZmVlZGVyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQUU5RCxNQUlhLGlCQUFpQjs4R0FBakIsaUJBQWlCOytHQUFqQixpQkFBaUIsWUFIbkIsb0JBQW9CLGFBQ3BCLG9CQUFvQjsrR0FFbEIsaUJBQWlCOztTQUFqQixpQkFBaUI7MkZBQWpCLGlCQUFpQjtrQkFKN0IsUUFBUTttQkFBQztvQkFDVCxPQUFPLEVBQUUsQ0FBQyxvQkFBb0IsQ0FBQztvQkFDL0IsT0FBTyxFQUFFLENBQUMsb0JBQW9CLENBQUM7aUJBQy9CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTHVBcGlGZWVkZXJDb21wb25lbnQgfSBmcm9tICcuL2FwaS1mZWVkZXIuY29tcG9uZW50JztcclxuXHJcbkBOZ01vZHVsZSh7XHJcblx0aW1wb3J0czogW0x1QXBpRmVlZGVyQ29tcG9uZW50XSxcclxuXHRleHBvcnRzOiBbTHVBcGlGZWVkZXJDb21wb25lbnRdLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgTHVBcGlGZWVkZXJNb2R1bGUge31cclxuIl19
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './api-feeder.model';
|
|
2
|
+
export * from './api-feeder.module';
|
|
3
|
+
export * from './api-feeder.component';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hcGkvc2VsZWN0L2ZlZWRlci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyx3QkFBd0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYXBpLWZlZWRlci5tb2RlbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vYXBpLWZlZWRlci5tb2R1bGUnO1xyXG5leHBvcnQgKiBmcm9tICcuL2FwaS1mZWVkZXIuY29tcG9uZW50JztcclxuIl19
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from './api-select.module';
|
|
2
|
+
export * from './feeder/index';
|
|
3
|
+
export * from './searcher/index';
|
|
4
|
+
export * from './pager/index';
|
|
5
|
+
export * from './input/index';
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hcGkvc2VsZWN0L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsZUFBZSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9hcGktc2VsZWN0Lm1vZHVsZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vZmVlZGVyL2luZGV4JztcclxuZXhwb3J0ICogZnJvbSAnLi9zZWFyY2hlci9pbmRleCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vcGFnZXIvaW5kZXgnO1xyXG5leHBvcnQgKiBmcm9tICcuL2lucHV0L2luZGV4JztcclxuIl19
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, forwardRef, Input } from '@angular/core';
|
|
3
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
|
+
import { LuInputClearerComponent, LuInputDisplayerDirective } from '@lucca-front/ng/input';
|
|
5
|
+
import { LuForOptionsDirective, LuOptionItemComponent, LuOptionPickerAdvancedComponent } from '@lucca-front/ng/option';
|
|
6
|
+
import { ALuSelectInputComponent } from '@lucca-front/ng/select';
|
|
7
|
+
import { LuApiPagedSearcherComponent } from '../searcher';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "@angular/cdk/overlay";
|
|
10
|
+
class LuApiSelectInputComponent extends ALuSelectInputComponent {
|
|
11
|
+
constructor(_changeDetectorRef, _overlay, _elementRef, _viewContainerRef, _renderer) {
|
|
12
|
+
super(_changeDetectorRef, _overlay, _elementRef, _viewContainerRef, _renderer);
|
|
13
|
+
this._changeDetectorRef = _changeDetectorRef;
|
|
14
|
+
this._overlay = _overlay;
|
|
15
|
+
this._elementRef = _elementRef;
|
|
16
|
+
this._viewContainerRef = _viewContainerRef;
|
|
17
|
+
this._renderer = _renderer;
|
|
18
|
+
this.standard = 'v3';
|
|
19
|
+
this.byId = (option1, option2) => option1 && option2 && option1.id === option2.id;
|
|
20
|
+
}
|
|
21
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiSelectInputComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.Overlay }, { token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
22
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.3", type: LuApiSelectInputComponent, isStandalone: true, selector: "lu-api-select", inputs: { standard: "standard", api: "api", fields: "fields", filters: "filters", orderBy: "orderBy", sort: "sort" }, providers: [
|
|
23
|
+
{
|
|
24
|
+
provide: NG_VALUE_ACCESSOR,
|
|
25
|
+
useExisting: forwardRef(() => LuApiSelectInputComponent),
|
|
26
|
+
multi: true,
|
|
27
|
+
},
|
|
28
|
+
], usesInheritance: true, ngImport: i0, template: "<div class=\"lu-select-placeholder\">{{ placeholder }}</div>\r\n<div class=\"lu-select-value\">\r\n\t<div class=\"lu-select-display-wrapper\">\r\n\t\t<ng-container #display></ng-container>\r\n\t</div>\r\n</div>\r\n<div class=\"lu-select-suffix\">\r\n\t<lu-input-clearer></lu-input-clearer>\r\n</div>\r\n<span [class.chip]=\"multiple\" *luDisplayer=\"let option\">{{ option.name }}</span>\r\n<lu-option-picker-advanced [option-comparer]=\"byId\">\r\n\t<header class=\"lu-picker-header\">\r\n\t\t<lu-api-paged-searcher\r\n\t\t\t[standard]=\"standard\"\r\n\t\t\t[api]=\"api\"\r\n\t\t\t[fields]=\"fields\"\r\n\t\t\t[filters]=\"filters\"\r\n\t\t\t[orderBy]=\"orderBy\"\r\n\t\t\t[sort]=\"sort\"\r\n\t\t></lu-api-paged-searcher>\r\n\t</header>\r\n\t<div class=\"lu-picker-content-option\">\r\n\t\t<lu-option *luForOptions=\"let option\" [value]=\"option\">{{ option.name }}</lu-option>\r\n\t</div>\r\n</lu-option-picker-advanced>\r\n", styles: [":root{--components-options-item-padding-vertical: var(--spacings-XS);--components-options-item-padding-horizontal: var(--spacings-XS);--components-options-item-multiple-padding: 2.25rem;--components-options-item-icon-color: var(--palettes-grey-800);--components-options-checkbox-left: .5rem;--components-options-checkbox-size: 1.25rem;--components-options-checkbox-color: var(--palettes-primary-700);--components-options-checkbox-border-radius: 6px;--components-options-checkbox-border-color: var(--palettes-grey-700);--components-options-establishment-multiple-padding: 2rem}:host{--components-select-chip-background: var(--palettes-primary-700);--components-select-chip-text: var(--colors-white-color);--components-select-input-padding-horizontal: var(--spacings-XS);--components-select-input-padding-vertical: var(--spacings-XS);--components-select-framed-color: var(--palettes-grey-500);--components-select-framed-color50: var(--palettes-grey-50);--components-select-framed-see-through: var(--palettes-grey-50);--components-select-framed-text: var(--palettes-grey-800);--components-select-framed-placeholder: #cccccc;--components-select-framed-side-padding: var(--spacings-S);--components-select-framed-top-padding: var(--spacings-L);--components-select-framed-bottom-padding: var(--spacings-S);--components-select-framed-label-top-offset: var(--spacings-XS);cursor:pointer;outline:none;padding:0;gap:0!important}:host:after{display:inline-block;vertical-align:text-bottom;font-style:normal;font-family:Lucca icons;color:var(--palettes-grey-600);bottom:var(--components-select-input-padding-vertical);font-size:var(--sizes-M-lineHeight);line-height:var(--sizes-M-lineHeight);pointer-events:none;position:absolute;right:var(--components-select-input-padding-horizontal)}@supports (content: \"*\"/\"\"){:host:after{content:\"\\e9b5\"/\"\"}}@supports not (content: \"*\"/\"\"){:host:after{content:\"\\e9b5\"}}:host[disabled]{cursor:not-allowed;pointer-events:all}:host.is-disabled{cursor:not-allowed;pointer-events:all}.lu-select-display-wrapper{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lu-select-value{line-height:var(--sizes-M-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-M-lineHeight));padding:var(--components-select-input-padding-vertical) 3.5rem var(--components-select-input-padding-vertical) var(--components-select-input-padding-horizontal);transition:all var(--commons-animations-durations-standard);display:none}.lu-select-placeholder{color:var(--palettes-grey-400);line-height:var(--sizes-M-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-M-lineHeight));padding:var(--components-select-input-padding-vertical) 3.5rem var(--components-select-input-padding-vertical) var(--components-select-input-padding-horizontal);transition:all var(--commons-animations-durations-standard);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lu-select-suffix,.lu-select-clearer{position:absolute;bottom:.75rem;right:2.25rem}::ng-deep .lu-select-value .label{padding:var(--spacings-XXS) var(--spacings-XS);margin-left:0}::ng-deep .lu-select-value .chip{background-color:var(--components-select-chip-background);color:var(--components-select-chip-text);vertical-align:baseline;max-width:100%;height:var(--sizes-M-lineHeight);line-height:var(--sizes-M-lineHeight);padding:0 var(--spacings-XS);margin:0 var(--spacings-XXS) var(--spacings-XXS) 0;text-overflow:ellipsis;overflow:hidden;vertical-align:top;white-space:nowrap}:host-context(.textfield.mod-S) .lu-select-value,:host-context(.textfield.mod-S) .lu-select-placeholder{font-size:var(--sizes-S-fontSize);line-height:var(--sizes-XS-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-XS-lineHeight))}:host-context(.textfield.mod-S):after{line-height:var(--sizes-XS-lineHeight);font-size:var(--sizes-S-lineHeight)}:host-context(.textfield.mod-S) .lu-select-suffix{bottom:.5rem;right:2rem}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .label{font-size:var(--sizes-S-fontSize);line-height:var(--sizes-S-lineHeight);font-weight:600;margin:0;padding:0;background-color:transparent}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .chip{height:var(--sizes-XS-lineHeight);line-height:var(--sizes-XS-lineHeight);font-size:var(--sizes-XS-fontSize)}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .numericBadge{--components-numericBadge-size: 1.25rem;--components-numericBadge-borderRadius: 6px;--components-numericBadge-fontSize: var(--sizes-XS-fontSize);--components-numericBadge-lineHeight: var(--sizes-XS-lineHeight)}:host-context(.textfield.mod-framed).textfield-input,:host-context(.form.mod-framed).textfield-input{padding:var(--components-select-framed-top-padding) 0 0}:host-context(.textfield.mod-framed).textfield-input:after,:host-context(.form.mod-framed).textfield-input:after{color:var(--palettes-grey-500);bottom:var(--components-select-framed-bottom-padding);right:var(--spacings-XS)}:host-context(.textfield.mod-framed).textfield-input .lu-select-value,:host-context(.form.mod-framed).textfield-input .lu-select-value{padding:0 calc(var(--components-select-framed-side-padding) * 3) var(--components-select-framed-bottom-padding) var(--components-select-framed-side-padding)}:host-context(.textfield.mod-framed).textfield-input .lu-select-placeholder,:host-context(.form.mod-framed).textfield-input .lu-select-placeholder{color:var(--palettes-grey-400);padding:0 calc(var(--components-select-framed-side-padding) * 3) var(--components-select-framed-bottom-padding) var(--components-select-framed-side-padding)}:host-context(.textfield.mod-framed).textfield-input .lu-select-suffix,:host-context(.form.mod-framed).textfield-input .lu-select-suffix{bottom:var(--components-select-framed-bottom-padding);right:1.7rem}:host-context(.textfield.mod-filter) .lu-select-value,:host-context(.textfield.mod-filter) .lu-select-placeholder{padding:0;height:auto;padding-top:var(--spacings-S);color:var(--palettes-grey-800)}:host-context(.textfield.mod-material):after{color:var(--palettes-grey-500);bottom:.6rem;right:0}:host-context(.textfield.mod-material) .lu-select-value,:host-context(.textfield.mod-material) .lu-select-placeholder{padding-left:0;padding-right:.8rem}:host-context(.textfield.mod-material) .lu-select-suffix{right:calc(2 * var(--components-select-input-padding-horizontal))}:host-context(.textfield.mod-material).is-select .lu-select-placeholder{display:none}:host-context(.textfield.mod-material).mod-search:after{bottom:0}:host-context(.textfield.mod-material).mod-search .lu-select-suffix{right:calc(2.75 * var(--components-select-input-padding-horizontal))}:host-context(.textfield.mod-material .textfield-input.is-focused) .lu-select-placeholder{display:none}:host(.mod-multiple) .lu-select-value{height:auto;align-items:center}:host(.mod-multiple) .lu-select-display-wrapper{overflow:hidden;white-space:normal;margin-bottom:calc(var(--spacings-XXS) * -1)}:host-context(.textfield.mod-outlined).textfield-input:after{color:var(--palettes-grey-600)}:host-context(.textfield.mod-outlined).textfield-input .lu-select-placeholder{color:var(--palettes-grey-400)}:host-context(.textfield.mod-outlined) :host-context(.textfield-input.is-error):after{color:var(--palettes-error-600)}:host-context(.textfield.mod-outlined) :host-context(.textfield-input.is-error) .lu-select-placeholder{color:var(--palettes-error-400)}:host-context(.textfield-input.is-filled) .lu-select-placeholder{display:none}:host-context(.textfield-input.is-filled) .lu-select-value{display:flex;align-items:flex-start}:host-context(.textfield-input.is-clearable) .lu-select-value{padding-right:3.5rem}:host-context(.textfield-input.is-error):after{color:var(--palettes-error-700)}:host-context(.textfield-input.is-error) .lu-select-placeholder{color:var(--palettes-error-400)}:host-context(.textfield-input.is-disabled,.textfield-input[disabled]):after{color:var(--commons-disabled-color)}:host-context(.textfield-input.is-disabled,.textfield-input[disabled]) .lu-select-placeholder{color:var(--commons-disabled-placeholder)}.lu-select-value{padding-right:3rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: LuInputClearerComponent, selector: "lu-input-clearer", outputs: ["onClear"], exportAs: ["luClearer"] }, { kind: "component", type: LuOptionPickerAdvancedComponent, selector: "lu-option-picker-advanced", exportAs: ["LuOptionPickerAdvanced"] }, { kind: "component", type: LuApiPagedSearcherComponent, selector: "lu-api-paged-searcher", inputs: ["standard", "api", "fields", "filters", "orderBy", "sort", "debounceTime"] }, { kind: "component", type: LuOptionItemComponent, selector: "lu-option", inputs: ["selected", "highlighted", "value", "disabled"], outputs: ["onSelect"] }, { kind: "directive", type: LuForOptionsDirective, selector: "[luForOptions]", inputs: ["luForOptionsTrackBy"] }, { kind: "directive", type: LuInputDisplayerDirective, selector: "[luDisplayer]", inputs: ["luDisplayerMultiple", "multiple"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
29
|
+
}
|
|
30
|
+
export { LuApiSelectInputComponent };
|
|
31
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiSelectInputComponent, decorators: [{
|
|
32
|
+
type: Component,
|
|
33
|
+
args: [{ selector: 'lu-api-select', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule, LuInputClearerComponent, LuOptionPickerAdvancedComponent, LuApiPagedSearcherComponent, LuOptionItemComponent, LuForOptionsDirective, LuInputDisplayerDirective], providers: [
|
|
34
|
+
{
|
|
35
|
+
provide: NG_VALUE_ACCESSOR,
|
|
36
|
+
useExisting: forwardRef(() => LuApiSelectInputComponent),
|
|
37
|
+
multi: true,
|
|
38
|
+
},
|
|
39
|
+
], template: "<div class=\"lu-select-placeholder\">{{ placeholder }}</div>\r\n<div class=\"lu-select-value\">\r\n\t<div class=\"lu-select-display-wrapper\">\r\n\t\t<ng-container #display></ng-container>\r\n\t</div>\r\n</div>\r\n<div class=\"lu-select-suffix\">\r\n\t<lu-input-clearer></lu-input-clearer>\r\n</div>\r\n<span [class.chip]=\"multiple\" *luDisplayer=\"let option\">{{ option.name }}</span>\r\n<lu-option-picker-advanced [option-comparer]=\"byId\">\r\n\t<header class=\"lu-picker-header\">\r\n\t\t<lu-api-paged-searcher\r\n\t\t\t[standard]=\"standard\"\r\n\t\t\t[api]=\"api\"\r\n\t\t\t[fields]=\"fields\"\r\n\t\t\t[filters]=\"filters\"\r\n\t\t\t[orderBy]=\"orderBy\"\r\n\t\t\t[sort]=\"sort\"\r\n\t\t></lu-api-paged-searcher>\r\n\t</header>\r\n\t<div class=\"lu-picker-content-option\">\r\n\t\t<lu-option *luForOptions=\"let option\" [value]=\"option\">{{ option.name }}</lu-option>\r\n\t</div>\r\n</lu-option-picker-advanced>\r\n", styles: [":root{--components-options-item-padding-vertical: var(--spacings-XS);--components-options-item-padding-horizontal: var(--spacings-XS);--components-options-item-multiple-padding: 2.25rem;--components-options-item-icon-color: var(--palettes-grey-800);--components-options-checkbox-left: .5rem;--components-options-checkbox-size: 1.25rem;--components-options-checkbox-color: var(--palettes-primary-700);--components-options-checkbox-border-radius: 6px;--components-options-checkbox-border-color: var(--palettes-grey-700);--components-options-establishment-multiple-padding: 2rem}:host{--components-select-chip-background: var(--palettes-primary-700);--components-select-chip-text: var(--colors-white-color);--components-select-input-padding-horizontal: var(--spacings-XS);--components-select-input-padding-vertical: var(--spacings-XS);--components-select-framed-color: var(--palettes-grey-500);--components-select-framed-color50: var(--palettes-grey-50);--components-select-framed-see-through: var(--palettes-grey-50);--components-select-framed-text: var(--palettes-grey-800);--components-select-framed-placeholder: #cccccc;--components-select-framed-side-padding: var(--spacings-S);--components-select-framed-top-padding: var(--spacings-L);--components-select-framed-bottom-padding: var(--spacings-S);--components-select-framed-label-top-offset: var(--spacings-XS);cursor:pointer;outline:none;padding:0;gap:0!important}:host:after{display:inline-block;vertical-align:text-bottom;font-style:normal;font-family:Lucca icons;color:var(--palettes-grey-600);bottom:var(--components-select-input-padding-vertical);font-size:var(--sizes-M-lineHeight);line-height:var(--sizes-M-lineHeight);pointer-events:none;position:absolute;right:var(--components-select-input-padding-horizontal)}@supports (content: \"*\"/\"\"){:host:after{content:\"\\e9b5\"/\"\"}}@supports not (content: \"*\"/\"\"){:host:after{content:\"\\e9b5\"}}:host[disabled]{cursor:not-allowed;pointer-events:all}:host.is-disabled{cursor:not-allowed;pointer-events:all}.lu-select-display-wrapper{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lu-select-value{line-height:var(--sizes-M-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-M-lineHeight));padding:var(--components-select-input-padding-vertical) 3.5rem var(--components-select-input-padding-vertical) var(--components-select-input-padding-horizontal);transition:all var(--commons-animations-durations-standard);display:none}.lu-select-placeholder{color:var(--palettes-grey-400);line-height:var(--sizes-M-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-M-lineHeight));padding:var(--components-select-input-padding-vertical) 3.5rem var(--components-select-input-padding-vertical) var(--components-select-input-padding-horizontal);transition:all var(--commons-animations-durations-standard);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lu-select-suffix,.lu-select-clearer{position:absolute;bottom:.75rem;right:2.25rem}::ng-deep .lu-select-value .label{padding:var(--spacings-XXS) var(--spacings-XS);margin-left:0}::ng-deep .lu-select-value .chip{background-color:var(--components-select-chip-background);color:var(--components-select-chip-text);vertical-align:baseline;max-width:100%;height:var(--sizes-M-lineHeight);line-height:var(--sizes-M-lineHeight);padding:0 var(--spacings-XS);margin:0 var(--spacings-XXS) var(--spacings-XXS) 0;text-overflow:ellipsis;overflow:hidden;vertical-align:top;white-space:nowrap}:host-context(.textfield.mod-S) .lu-select-value,:host-context(.textfield.mod-S) .lu-select-placeholder{font-size:var(--sizes-S-fontSize);line-height:var(--sizes-XS-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-XS-lineHeight))}:host-context(.textfield.mod-S):after{line-height:var(--sizes-XS-lineHeight);font-size:var(--sizes-S-lineHeight)}:host-context(.textfield.mod-S) .lu-select-suffix{bottom:.5rem;right:2rem}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .label{font-size:var(--sizes-S-fontSize);line-height:var(--sizes-S-lineHeight);font-weight:600;margin:0;padding:0;background-color:transparent}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .chip{height:var(--sizes-XS-lineHeight);line-height:var(--sizes-XS-lineHeight);font-size:var(--sizes-XS-fontSize)}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .numericBadge{--components-numericBadge-size: 1.25rem;--components-numericBadge-borderRadius: 6px;--components-numericBadge-fontSize: var(--sizes-XS-fontSize);--components-numericBadge-lineHeight: var(--sizes-XS-lineHeight)}:host-context(.textfield.mod-framed).textfield-input,:host-context(.form.mod-framed).textfield-input{padding:var(--components-select-framed-top-padding) 0 0}:host-context(.textfield.mod-framed).textfield-input:after,:host-context(.form.mod-framed).textfield-input:after{color:var(--palettes-grey-500);bottom:var(--components-select-framed-bottom-padding);right:var(--spacings-XS)}:host-context(.textfield.mod-framed).textfield-input .lu-select-value,:host-context(.form.mod-framed).textfield-input .lu-select-value{padding:0 calc(var(--components-select-framed-side-padding) * 3) var(--components-select-framed-bottom-padding) var(--components-select-framed-side-padding)}:host-context(.textfield.mod-framed).textfield-input .lu-select-placeholder,:host-context(.form.mod-framed).textfield-input .lu-select-placeholder{color:var(--palettes-grey-400);padding:0 calc(var(--components-select-framed-side-padding) * 3) var(--components-select-framed-bottom-padding) var(--components-select-framed-side-padding)}:host-context(.textfield.mod-framed).textfield-input .lu-select-suffix,:host-context(.form.mod-framed).textfield-input .lu-select-suffix{bottom:var(--components-select-framed-bottom-padding);right:1.7rem}:host-context(.textfield.mod-filter) .lu-select-value,:host-context(.textfield.mod-filter) .lu-select-placeholder{padding:0;height:auto;padding-top:var(--spacings-S);color:var(--palettes-grey-800)}:host-context(.textfield.mod-material):after{color:var(--palettes-grey-500);bottom:.6rem;right:0}:host-context(.textfield.mod-material) .lu-select-value,:host-context(.textfield.mod-material) .lu-select-placeholder{padding-left:0;padding-right:.8rem}:host-context(.textfield.mod-material) .lu-select-suffix{right:calc(2 * var(--components-select-input-padding-horizontal))}:host-context(.textfield.mod-material).is-select .lu-select-placeholder{display:none}:host-context(.textfield.mod-material).mod-search:after{bottom:0}:host-context(.textfield.mod-material).mod-search .lu-select-suffix{right:calc(2.75 * var(--components-select-input-padding-horizontal))}:host-context(.textfield.mod-material .textfield-input.is-focused) .lu-select-placeholder{display:none}:host(.mod-multiple) .lu-select-value{height:auto;align-items:center}:host(.mod-multiple) .lu-select-display-wrapper{overflow:hidden;white-space:normal;margin-bottom:calc(var(--spacings-XXS) * -1)}:host-context(.textfield.mod-outlined).textfield-input:after{color:var(--palettes-grey-600)}:host-context(.textfield.mod-outlined).textfield-input .lu-select-placeholder{color:var(--palettes-grey-400)}:host-context(.textfield.mod-outlined) :host-context(.textfield-input.is-error):after{color:var(--palettes-error-600)}:host-context(.textfield.mod-outlined) :host-context(.textfield-input.is-error) .lu-select-placeholder{color:var(--palettes-error-400)}:host-context(.textfield-input.is-filled) .lu-select-placeholder{display:none}:host-context(.textfield-input.is-filled) .lu-select-value{display:flex;align-items:flex-start}:host-context(.textfield-input.is-clearable) .lu-select-value{padding-right:3.5rem}:host-context(.textfield-input.is-error):after{color:var(--palettes-error-700)}:host-context(.textfield-input.is-error) .lu-select-placeholder{color:var(--palettes-error-400)}:host-context(.textfield-input.is-disabled,.textfield-input[disabled]):after{color:var(--commons-disabled-color)}:host-context(.textfield-input.is-disabled,.textfield-input[disabled]) .lu-select-placeholder{color:var(--commons-disabled-placeholder)}.lu-select-value{padding-right:3rem}\n"] }]
|
|
40
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i1.Overlay }, { type: i0.ElementRef }, { type: i0.ViewContainerRef }, { type: i0.Renderer2 }]; }, propDecorators: { standard: [{
|
|
41
|
+
type: Input
|
|
42
|
+
}], api: [{
|
|
43
|
+
type: Input
|
|
44
|
+
}], fields: [{
|
|
45
|
+
type: Input
|
|
46
|
+
}], filters: [{
|
|
47
|
+
type: Input
|
|
48
|
+
}], orderBy: [{
|
|
49
|
+
type: Input
|
|
50
|
+
}], sort: [{
|
|
51
|
+
type: Input
|
|
52
|
+
}] } });
|
|
53
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXNlbGVjdC1pbnB1dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hcGkvc2VsZWN0L2lucHV0L2FwaS1zZWxlY3QtaW5wdXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvbmcvYXBpL3NlbGVjdC9pbnB1dC9hcGktc2VsZWN0LWlucHV0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQWlCLHVCQUF1QixFQUFxQixTQUFTLEVBQWMsVUFBVSxFQUFFLEtBQUssRUFBK0IsTUFBTSxlQUFlLENBQUM7QUFDakssT0FBTyxFQUF3QixpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3pFLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSx5QkFBeUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzNGLE9BQU8sRUFBaUIscUJBQXFCLEVBQW9CLHFCQUFxQixFQUFFLCtCQUErQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDeEosT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDakUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sYUFBYSxDQUFDOzs7QUFFMUQsTUFlYSx5QkFDWixTQUFRLHVCQUFnRjtJQW9CeEYsWUFDb0Isa0JBQXFDLEVBQ3JDLFFBQWlCLEVBQ2pCLFdBQW9DLEVBQ3BDLGlCQUFtQyxFQUNuQyxTQUFvQjtRQUV2QyxLQUFLLENBQUMsa0JBQWtCLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxpQkFBaUIsRUFBRSxTQUFTLENBQUMsQ0FBQztRQU41RCx1QkFBa0IsR0FBbEIsa0JBQWtCLENBQW1CO1FBQ3JDLGFBQVEsR0FBUixRQUFRLENBQVM7UUFDakIsZ0JBQVcsR0FBWCxXQUFXLENBQXlCO1FBQ3BDLHNCQUFpQixHQUFqQixpQkFBaUIsQ0FBa0I7UUFDbkMsY0FBUyxHQUFULFNBQVMsQ0FBVztRQXRCL0IsYUFBUSxHQUFnQixJQUFJLENBQUM7UUFnQnRDLFNBQUksR0FBd0IsQ0FBQyxPQUFVLEVBQUUsT0FBVSxFQUFFLEVBQUUsQ0FBQyxPQUFPLElBQUksT0FBTyxJQUFJLE9BQU8sQ0FBQyxFQUFFLEtBQUssT0FBTyxDQUFDLEVBQUUsQ0FBQztJQVN4RyxDQUFDOzhHQTdCVyx5QkFBeUI7a0dBQXpCLHlCQUF5QixrTEFSMUI7WUFDVjtnQkFDQyxPQUFPLEVBQUUsaUJBQWlCO2dCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLHlCQUF5QixDQUFDO2dCQUN4RCxLQUFLLEVBQUUsSUFBSTthQUNYO1NBQ0QsaURDdEJGLGc2QkF5QkEsOGlRRFZXLFlBQVksK0JBQUUsdUJBQXVCLDRHQUFFLCtCQUErQiw0R0FBRSwyQkFBMkIsdUpBQUUscUJBQXFCLHVJQUFFLHFCQUFxQiw0RkFBRSx5QkFBeUI7O1NBUzFLLHlCQUF5QjsyRkFBekIseUJBQXlCO2tCQWZyQyxTQUFTOytCQUNDLGVBQWUsbUJBR1IsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1AsQ0FBQyxZQUFZLEVBQUUsdUJBQXVCLEVBQUUsK0JBQStCLEVBQUUsMkJBQTJCLEVBQUUscUJBQXFCLEVBQUUscUJBQXFCLEVBQUUseUJBQXlCLENBQUMsYUFDNUs7d0JBQ1Y7NEJBQ0MsT0FBTyxFQUFFLGlCQUFpQjs0QkFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsMEJBQTBCLENBQUM7NEJBQ3hELEtBQUssRUFBRSxJQUFJO3lCQUNYO3FCQUNEOzhNQU1RLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csR0FBRztzQkFBWCxLQUFLO2dCQUlHLE1BQU07c0JBQWQsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBSUcsT0FBTztzQkFBZixLQUFLO2dCQUlHLElBQUk7c0JBQVosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE92ZXJsYXkgfSBmcm9tICdAYW5ndWxhci9jZGsvb3ZlcmxheSc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IEFmdGVyVmlld0luaXQsIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDaGFuZ2VEZXRlY3RvclJlZiwgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBmb3J3YXJkUmVmLCBJbnB1dCwgUmVuZGVyZXIyLCBWaWV3Q29udGFpbmVyUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IENvbnRyb2xWYWx1ZUFjY2Vzc29yLCBOR19WQUxVRV9BQ0NFU1NPUiB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgTHVJbnB1dENsZWFyZXJDb21wb25lbnQsIEx1SW5wdXREaXNwbGF5ZXJEaXJlY3RpdmUgfSBmcm9tICdAbHVjY2EtZnJvbnQvbmcvaW5wdXQnO1xyXG5pbXBvcnQgeyBJTHVPcHRpb25JdGVtLCBMdUZvck9wdGlvbnNEaXJlY3RpdmUsIEx1T3B0aW9uQ29tcGFyZXIsIEx1T3B0aW9uSXRlbUNvbXBvbmVudCwgTHVPcHRpb25QaWNrZXJBZHZhbmNlZENvbXBvbmVudCB9IGZyb20gJ0BsdWNjYS1mcm9udC9uZy9vcHRpb24nO1xyXG5pbXBvcnQgeyBBTHVTZWxlY3RJbnB1dENvbXBvbmVudCB9IGZyb20gJ0BsdWNjYS1mcm9udC9uZy9zZWxlY3QnO1xyXG5pbXBvcnQgeyBMdUFwaVBhZ2VkU2VhcmNoZXJDb21wb25lbnQgfSBmcm9tICcuLi9zZWFyY2hlcic7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuXHRzZWxlY3RvcjogJ2x1LWFwaS1zZWxlY3QnLFxyXG5cdHRlbXBsYXRlVXJsOiAnLi9hcGktc2VsZWN0LWlucHV0LmNvbXBvbmVudC5odG1sJyxcclxuXHRzdHlsZVVybHM6IFsnLi9hcGktc2VsZWN0LWlucHV0LmNvbXBvbmVudC5zY3NzJ10sXHJcblx0Y2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXHJcblx0c3RhbmRhbG9uZTogdHJ1ZSxcclxuXHRpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBMdUlucHV0Q2xlYXJlckNvbXBvbmVudCwgTHVPcHRpb25QaWNrZXJBZHZhbmNlZENvbXBvbmVudCwgTHVBcGlQYWdlZFNlYXJjaGVyQ29tcG9uZW50LCBMdU9wdGlvbkl0ZW1Db21wb25lbnQsIEx1Rm9yT3B0aW9uc0RpcmVjdGl2ZSwgTHVJbnB1dERpc3BsYXllckRpcmVjdGl2ZV0sXHJcblx0cHJvdmlkZXJzOiBbXHJcblx0XHR7XHJcblx0XHRcdHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxyXG5cdFx0XHR1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBMdUFwaVNlbGVjdElucHV0Q29tcG9uZW50KSxcclxuXHRcdFx0bXVsdGk6IHRydWUsXHJcblx0XHR9LFxyXG5cdF0sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBMdUFwaVNlbGVjdElucHV0Q29tcG9uZW50PFQgZXh0ZW5kcyBpbXBvcnQoJy4uLy4uL2FwaS5tb2RlbCcpLklMdUFwaUl0ZW0gPSBpbXBvcnQoJy4uLy4uL2FwaS5tb2RlbCcpLklMdUFwaUl0ZW0+XHJcblx0ZXh0ZW5kcyBBTHVTZWxlY3RJbnB1dENvbXBvbmVudDxULCBMdU9wdGlvblBpY2tlckFkdmFuY2VkQ29tcG9uZW50PFQsIElMdU9wdGlvbkl0ZW08VD4+PlxyXG5cdGltcGxlbWVudHMgQ29udHJvbFZhbHVlQWNjZXNzb3IsIEFmdGVyVmlld0luaXRcclxue1xyXG5cdEBJbnB1dCgpIHN0YW5kYXJkOiAndjMnIHwgJ3Y0JyA9ICd2Myc7XHJcblx0QElucHV0KCkgYXBpOiBzdHJpbmc7XHJcblx0LyoqXHJcblx0ICogb25seSB3b3JrcyB3aXRoIHN0YW5kYXJkPVwidjNcIlxyXG5cdCAqL1xyXG5cdEBJbnB1dCgpIGZpZWxkczogc3RyaW5nO1xyXG5cdEBJbnB1dCgpIGZpbHRlcnM6IHN0cmluZ1tdO1xyXG5cdC8qKlxyXG5cdCAqIG9ubHkgd29ya3Mgd2l0aCBzdGFuZGFyZD1cInYzXCIsIG90aGVyd2lzZSB1c2Ugc29ydFxyXG5cdCAqL1xyXG5cdEBJbnB1dCgpIG9yZGVyQnk6IHN0cmluZztcclxuXHQvKipcclxuXHQgKiBvbmx5IHdvcmtzIHdpdGggc3RhbmRhcmQ9XCJ2NFwiLCBvdGhlcndpc2UgdXNlIG9yZGVyQnlcclxuXHQgKi9cclxuXHRASW5wdXQoKSBzb3J0OiBzdHJpbmc7XHJcblxyXG5cdGJ5SWQ6IEx1T3B0aW9uQ29tcGFyZXI8VD4gPSAob3B0aW9uMTogVCwgb3B0aW9uMjogVCkgPT4gb3B0aW9uMSAmJiBvcHRpb24yICYmIG9wdGlvbjEuaWQgPT09IG9wdGlvbjIuaWQ7XHJcblx0Y29uc3RydWN0b3IoXHJcblx0XHRwcm90ZWN0ZWQgb3ZlcnJpZGUgX2NoYW5nZURldGVjdG9yUmVmOiBDaGFuZ2VEZXRlY3RvclJlZixcclxuXHRcdHByb3RlY3RlZCBvdmVycmlkZSBfb3ZlcmxheTogT3ZlcmxheSxcclxuXHRcdHByb3RlY3RlZCBvdmVycmlkZSBfZWxlbWVudFJlZjogRWxlbWVudFJlZjxIVE1MRWxlbWVudD4sXHJcblx0XHRwcm90ZWN0ZWQgb3ZlcnJpZGUgX3ZpZXdDb250YWluZXJSZWY6IFZpZXdDb250YWluZXJSZWYsXHJcblx0XHRwcm90ZWN0ZWQgb3ZlcnJpZGUgX3JlbmRlcmVyOiBSZW5kZXJlcjIsXHJcblx0KSB7XHJcblx0XHRzdXBlcihfY2hhbmdlRGV0ZWN0b3JSZWYsIF9vdmVybGF5LCBfZWxlbWVudFJlZiwgX3ZpZXdDb250YWluZXJSZWYsIF9yZW5kZXJlcik7XHJcblx0fVxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJsdS1zZWxlY3QtcGxhY2Vob2xkZXJcIj57eyBwbGFjZWhvbGRlciB9fTwvZGl2PlxyXG48ZGl2IGNsYXNzPVwibHUtc2VsZWN0LXZhbHVlXCI+XHJcblx0PGRpdiBjbGFzcz1cImx1LXNlbGVjdC1kaXNwbGF5LXdyYXBwZXJcIj5cclxuXHRcdDxuZy1jb250YWluZXIgI2Rpc3BsYXk+PC9uZy1jb250YWluZXI+XHJcblx0PC9kaXY+XHJcbjwvZGl2PlxyXG48ZGl2IGNsYXNzPVwibHUtc2VsZWN0LXN1ZmZpeFwiPlxyXG5cdDxsdS1pbnB1dC1jbGVhcmVyPjwvbHUtaW5wdXQtY2xlYXJlcj5cclxuPC9kaXY+XHJcbjxzcGFuIFtjbGFzcy5jaGlwXT1cIm11bHRpcGxlXCIgKmx1RGlzcGxheWVyPVwibGV0IG9wdGlvblwiPnt7IG9wdGlvbi5uYW1lIH19PC9zcGFuPlxyXG48bHUtb3B0aW9uLXBpY2tlci1hZHZhbmNlZCBbb3B0aW9uLWNvbXBhcmVyXT1cImJ5SWRcIj5cclxuXHQ8aGVhZGVyIGNsYXNzPVwibHUtcGlja2VyLWhlYWRlclwiPlxyXG5cdFx0PGx1LWFwaS1wYWdlZC1zZWFyY2hlclxyXG5cdFx0XHRbc3RhbmRhcmRdPVwic3RhbmRhcmRcIlxyXG5cdFx0XHRbYXBpXT1cImFwaVwiXHJcblx0XHRcdFtmaWVsZHNdPVwiZmllbGRzXCJcclxuXHRcdFx0W2ZpbHRlcnNdPVwiZmlsdGVyc1wiXHJcblx0XHRcdFtvcmRlckJ5XT1cIm9yZGVyQnlcIlxyXG5cdFx0XHRbc29ydF09XCJzb3J0XCJcclxuXHRcdD48L2x1LWFwaS1wYWdlZC1zZWFyY2hlcj5cclxuXHQ8L2hlYWRlcj5cclxuXHQ8ZGl2IGNsYXNzPVwibHUtcGlja2VyLWNvbnRlbnQtb3B0aW9uXCI+XHJcblx0XHQ8bHUtb3B0aW9uICpsdUZvck9wdGlvbnM9XCJsZXQgb3B0aW9uXCIgW3ZhbHVlXT1cIm9wdGlvblwiPnt7IG9wdGlvbi5uYW1lIH19PC9sdS1vcHRpb24+XHJcblx0PC9kaXY+XHJcbjwvbHUtb3B0aW9uLXBpY2tlci1hZHZhbmNlZD5cclxuIl19
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { LuApiSelectInputComponent } from './api-select-input.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
class LuApiSelectInputModule {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiSelectInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.3", ngImport: i0, type: LuApiSelectInputModule, imports: [LuApiSelectInputComponent], exports: [LuApiSelectInputComponent] }); }
|
|
7
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiSelectInputModule, imports: [LuApiSelectInputComponent] }); }
|
|
8
|
+
}
|
|
9
|
+
export { LuApiSelectInputModule };
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiSelectInputModule, decorators: [{
|
|
11
|
+
type: NgModule,
|
|
12
|
+
args: [{
|
|
13
|
+
imports: [LuApiSelectInputComponent],
|
|
14
|
+
exports: [LuApiSelectInputComponent],
|
|
15
|
+
}]
|
|
16
|
+
}] });
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXNlbGVjdC1pbnB1dC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hcGkvc2VsZWN0L2lucHV0L2FwaS1zZWxlY3QtaW5wdXQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sOEJBQThCLENBQUM7O0FBRXpFLE1BSWEsc0JBQXNCOzhHQUF0QixzQkFBc0I7K0dBQXRCLHNCQUFzQixZQUh4Qix5QkFBeUIsYUFDekIseUJBQXlCOytHQUV2QixzQkFBc0IsWUFIeEIseUJBQXlCOztTQUd2QixzQkFBc0I7MkZBQXRCLHNCQUFzQjtrQkFKbEMsUUFBUTttQkFBQztvQkFDVCxPQUFPLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztvQkFDcEMsT0FBTyxFQUFFLENBQUMseUJBQXlCLENBQUM7aUJBQ3BDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTHVBcGlTZWxlY3RJbnB1dENvbXBvbmVudCB9IGZyb20gJy4vYXBpLXNlbGVjdC1pbnB1dC5jb21wb25lbnQnO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuXHRpbXBvcnRzOiBbTHVBcGlTZWxlY3RJbnB1dENvbXBvbmVudF0sXHJcblx0ZXhwb3J0czogW0x1QXBpU2VsZWN0SW5wdXRDb21wb25lbnRdLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgTHVBcGlTZWxlY3RJbnB1dE1vZHVsZSB7fVxyXG4iXX0=
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './api-select-input.module';
|
|
2
|
+
export * from './api-select-input.component';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hcGkvc2VsZWN0L2lucHV0L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyw4QkFBOEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYXBpLXNlbGVjdC1pbnB1dC5tb2R1bGUnO1xyXG5leHBvcnQgKiBmcm9tICcuL2FwaS1zZWxlY3QtaW5wdXQuY29tcG9uZW50JztcclxuIl19
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, forwardRef, Inject, Input, Optional, Self, SkipSelf } from '@angular/core';
|
|
2
|
+
import { ALuOnOpenSubscriber, ALuOnScrollBottomSubscriber } from '@lucca-front/ng/core';
|
|
3
|
+
import { ALuOptionOperator } from '@lucca-front/ng/option';
|
|
4
|
+
import { ALuApiService, LuApiHybridService } from '../../service/index';
|
|
5
|
+
import { ALuApiOptionPager } from './api-pager.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "../../service/index";
|
|
8
|
+
class LuApiPagerComponent extends ALuApiOptionPager {
|
|
9
|
+
constructor(hostService, selfService) {
|
|
10
|
+
super(hostService || selfService);
|
|
11
|
+
}
|
|
12
|
+
set standard(standard) {
|
|
13
|
+
this._service.standard = standard;
|
|
14
|
+
}
|
|
15
|
+
set api(api) {
|
|
16
|
+
this._service.api = api;
|
|
17
|
+
}
|
|
18
|
+
set fields(fields) {
|
|
19
|
+
this._service.fields = fields;
|
|
20
|
+
}
|
|
21
|
+
set filters(filters) {
|
|
22
|
+
this._service.filters = filters;
|
|
23
|
+
}
|
|
24
|
+
set orderBy(orderBy) {
|
|
25
|
+
this._service.orderBy = orderBy;
|
|
26
|
+
}
|
|
27
|
+
ngOnInit() {
|
|
28
|
+
super.init();
|
|
29
|
+
}
|
|
30
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiPagerComponent, deps: [{ token: ALuApiService, optional: true, skipSelf: true }, { token: ALuApiService, self: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
31
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.3", type: LuApiPagerComponent, isStandalone: true, selector: "lu-api-pager", inputs: { standard: "standard", api: "api", fields: "fields", filters: "filters", orderBy: "orderBy" }, providers: [
|
|
32
|
+
{
|
|
33
|
+
provide: ALuOptionOperator,
|
|
34
|
+
useExisting: forwardRef(() => LuApiPagerComponent),
|
|
35
|
+
multi: true,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
provide: ALuApiService,
|
|
39
|
+
useClass: LuApiHybridService,
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
provide: ALuOnScrollBottomSubscriber,
|
|
43
|
+
useExisting: forwardRef(() => LuApiPagerComponent),
|
|
44
|
+
multi: true,
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
provide: ALuOnOpenSubscriber,
|
|
48
|
+
useExisting: forwardRef(() => LuApiPagerComponent),
|
|
49
|
+
multi: true,
|
|
50
|
+
},
|
|
51
|
+
], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
52
|
+
}
|
|
53
|
+
export { LuApiPagerComponent };
|
|
54
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiPagerComponent, decorators: [{
|
|
55
|
+
type: Component,
|
|
56
|
+
args: [{ selector: 'lu-api-pager', template: '', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, providers: [
|
|
57
|
+
{
|
|
58
|
+
provide: ALuOptionOperator,
|
|
59
|
+
useExisting: forwardRef(() => LuApiPagerComponent),
|
|
60
|
+
multi: true,
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
provide: ALuApiService,
|
|
64
|
+
useClass: LuApiHybridService,
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
provide: ALuOnScrollBottomSubscriber,
|
|
68
|
+
useExisting: forwardRef(() => LuApiPagerComponent),
|
|
69
|
+
multi: true,
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
provide: ALuOnOpenSubscriber,
|
|
73
|
+
useExisting: forwardRef(() => LuApiPagerComponent),
|
|
74
|
+
multi: true,
|
|
75
|
+
},
|
|
76
|
+
] }]
|
|
77
|
+
}], ctorParameters: function () { return [{ type: i1.LuApiHybridService, decorators: [{
|
|
78
|
+
type: Inject,
|
|
79
|
+
args: [ALuApiService]
|
|
80
|
+
}, {
|
|
81
|
+
type: Optional
|
|
82
|
+
}, {
|
|
83
|
+
type: SkipSelf
|
|
84
|
+
}] }, { type: i1.LuApiHybridService, decorators: [{
|
|
85
|
+
type: Inject,
|
|
86
|
+
args: [ALuApiService]
|
|
87
|
+
}, {
|
|
88
|
+
type: Self
|
|
89
|
+
}] }]; }, propDecorators: { standard: [{
|
|
90
|
+
type: Input
|
|
91
|
+
}], api: [{
|
|
92
|
+
type: Input
|
|
93
|
+
}], fields: [{
|
|
94
|
+
type: Input
|
|
95
|
+
}], filters: [{
|
|
96
|
+
type: Input
|
|
97
|
+
}], orderBy: [{
|
|
98
|
+
type: Input
|
|
99
|
+
}] } });
|
|
100
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXBhZ2VyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL25nL2FwaS9zZWxlY3QvcGFnZXIvYXBpLXBhZ2VyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFVLFFBQVEsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2hJLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSwyQkFBMkIsRUFBb0QsTUFBTSxzQkFBc0IsQ0FBQztBQUMxSSxPQUFPLEVBQUUsaUJBQWlCLEVBQXFCLE1BQU0sd0JBQXdCLENBQUM7QUFFOUUsT0FBTyxFQUFFLGFBQWEsRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3hFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLG1CQUFtQixDQUFDOzs7QUFFdEQsTUE0QmEsbUJBQ1osU0FBUSxpQkFBMkM7SUFHbkQsWUFJQyxXQUFrQyxFQUNILFdBQWtDO1FBRWpFLEtBQUssQ0FBQyxXQUFXLElBQUksV0FBVyxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVELElBQWEsUUFBUSxDQUFDLFFBQXFCO1FBQzFDLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxHQUFHLFFBQVEsQ0FBQztJQUNuQyxDQUFDO0lBQ0QsSUFBYSxHQUFHLENBQUMsR0FBVztRQUMzQixJQUFJLENBQUMsUUFBUSxDQUFDLEdBQUcsR0FBRyxHQUFHLENBQUM7SUFDekIsQ0FBQztJQUNELElBQWEsTUFBTSxDQUFDLE1BQWM7UUFDakMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDO0lBQy9CLENBQUM7SUFDRCxJQUFhLE9BQU8sQ0FBQyxPQUFpQjtRQUNyQyxJQUFJLENBQUMsUUFBUSxDQUFDLE9BQU8sR0FBRyxPQUFPLENBQUM7SUFDakMsQ0FBQztJQUNELElBQWEsT0FBTyxDQUFDLE9BQWU7UUFDbkMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxPQUFPLEdBQUcsT0FBTyxDQUFDO0lBQ2pDLENBQUM7SUFFRCxRQUFRO1FBQ1AsS0FBSyxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ2QsQ0FBQzs4R0FoQ1csbUJBQW1CLGtCQUt0QixhQUFhLDZDQUliLGFBQWE7a0dBVFYsbUJBQW1CLG1LQXRCcEI7WUFDVjtnQkFDQyxPQUFPLEVBQUUsaUJBQWlCO2dCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLG1CQUFtQixDQUFDO2dCQUNsRCxLQUFLLEVBQUUsSUFBSTthQUNYO1lBQ0Q7Z0JBQ0MsT0FBTyxFQUFFLGFBQWE7Z0JBQ3RCLFFBQVEsRUFBRSxrQkFBa0I7YUFDNUI7WUFDRDtnQkFDQyxPQUFPLEVBQUUsMkJBQTJCO2dCQUNwQyxXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLG1CQUFtQixDQUFDO2dCQUNsRCxLQUFLLEVBQUUsSUFBSTthQUNYO1lBQ0Q7Z0JBQ0MsT0FBTyxFQUFFLG1CQUFtQjtnQkFDNUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQztnQkFDbEQsS0FBSyxFQUFFLElBQUk7YUFDWDtTQUNELGlEQXhCUyxFQUFFOztTQTBCQSxtQkFBbUI7MkZBQW5CLG1CQUFtQjtrQkE1Qi9CLFNBQVM7K0JBQ0MsY0FBYyxZQUNkLEVBQUUsY0FFQSxJQUFJLG1CQUNDLHVCQUF1QixDQUFDLE1BQU0sYUFDcEM7d0JBQ1Y7NEJBQ0MsT0FBTyxFQUFFLGlCQUFpQjs0QkFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsb0JBQW9CLENBQUM7NEJBQ2xELEtBQUssRUFBRSxJQUFJO3lCQUNYO3dCQUNEOzRCQUNDLE9BQU8sRUFBRSxhQUFhOzRCQUN0QixRQUFRLEVBQUUsa0JBQWtCO3lCQUM1Qjt3QkFDRDs0QkFDQyxPQUFPLEVBQUUsMkJBQTJCOzRCQUNwQyxXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxvQkFBb0IsQ0FBQzs0QkFDbEQsS0FBSyxFQUFFLElBQUk7eUJBQ1g7d0JBQ0Q7NEJBQ0MsT0FBTyxFQUFFLG1CQUFtQjs0QkFDNUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsb0JBQW9CLENBQUM7NEJBQ2xELEtBQUssRUFBRSxJQUFJO3lCQUNYO3FCQUNEOzswQkFPQyxNQUFNOzJCQUFDLGFBQWE7OzBCQUNwQixRQUFROzswQkFDUixRQUFROzswQkFFUixNQUFNOzJCQUFDLGFBQWE7OzBCQUFHLElBQUk7NENBS2hCLFFBQVE7c0JBQXBCLEtBQUs7Z0JBR08sR0FBRztzQkFBZixLQUFLO2dCQUdPLE1BQU07c0JBQWxCLEtBQUs7Z0JBR08sT0FBTztzQkFBbkIsS0FBSztnQkFHTyxPQUFPO3NCQUFuQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgZm9yd2FyZFJlZiwgSW5qZWN0LCBJbnB1dCwgT25Jbml0LCBPcHRpb25hbCwgU2VsZiwgU2tpcFNlbGYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQUx1T25PcGVuU3Vic2NyaWJlciwgQUx1T25TY3JvbGxCb3R0b21TdWJzY3JpYmVyLCBJTHVPbk9wZW5TdWJzY3JpYmVyLCBJTHVPblNjcm9sbEJvdHRvbVN1YnNjcmliZXIgfSBmcm9tICdAbHVjY2EtZnJvbnQvbmcvY29yZSc7XHJcbmltcG9ydCB7IEFMdU9wdGlvbk9wZXJhdG9yLCBJTHVPcHRpb25PcGVyYXRvciB9IGZyb20gJ0BsdWNjYS1mcm9udC9uZy9vcHRpb24nO1xyXG5pbXBvcnQgeyBJTHVBcGlJdGVtIH0gZnJvbSAnLi4vLi4vYXBpLm1vZGVsJztcclxuaW1wb3J0IHsgQUx1QXBpU2VydmljZSwgTHVBcGlIeWJyaWRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZS9pbmRleCc7XHJcbmltcG9ydCB7IEFMdUFwaU9wdGlvblBhZ2VyIH0gZnJvbSAnLi9hcGktcGFnZXIubW9kZWwnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcblx0c2VsZWN0b3I6ICdsdS1hcGktcGFnZXInLFxyXG5cdHRlbXBsYXRlOiAnJyxcclxuXHRzdHlsZVVybHM6IFtdLFxyXG5cdHN0YW5kYWxvbmU6IHRydWUsXHJcblx0Y2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXHJcblx0cHJvdmlkZXJzOiBbXHJcblx0XHR7XHJcblx0XHRcdHByb3ZpZGU6IEFMdU9wdGlvbk9wZXJhdG9yLFxyXG5cdFx0XHR1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBMdUFwaVBhZ2VyQ29tcG9uZW50KSxcclxuXHRcdFx0bXVsdGk6IHRydWUsXHJcblx0XHR9LFxyXG5cdFx0e1xyXG5cdFx0XHRwcm92aWRlOiBBTHVBcGlTZXJ2aWNlLFxyXG5cdFx0XHR1c2VDbGFzczogTHVBcGlIeWJyaWRTZXJ2aWNlLFxyXG5cdFx0fSxcclxuXHRcdHtcclxuXHRcdFx0cHJvdmlkZTogQUx1T25TY3JvbGxCb3R0b21TdWJzY3JpYmVyLFxyXG5cdFx0XHR1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBMdUFwaVBhZ2VyQ29tcG9uZW50KSxcclxuXHRcdFx0bXVsdGk6IHRydWUsXHJcblx0XHR9LFxyXG5cdFx0e1xyXG5cdFx0XHRwcm92aWRlOiBBTHVPbk9wZW5TdWJzY3JpYmVyLFxyXG5cdFx0XHR1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBMdUFwaVBhZ2VyQ29tcG9uZW50KSxcclxuXHRcdFx0bXVsdGk6IHRydWUsXHJcblx0XHR9LFxyXG5cdF0sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBMdUFwaVBhZ2VyQ29tcG9uZW50PFQgZXh0ZW5kcyBJTHVBcGlJdGVtID0gSUx1QXBpSXRlbT5cclxuXHRleHRlbmRzIEFMdUFwaU9wdGlvblBhZ2VyPFQsIEx1QXBpSHlicmlkU2VydmljZTxUPj5cclxuXHRpbXBsZW1lbnRzIElMdU9wdGlvbk9wZXJhdG9yPFQ+LCBPbkluaXQsIElMdU9uU2Nyb2xsQm90dG9tU3Vic2NyaWJlciwgSUx1T25PcGVuU3Vic2NyaWJlclxyXG57XHJcblx0Y29uc3RydWN0b3IoXHJcblx0XHRASW5qZWN0KEFMdUFwaVNlcnZpY2UpXHJcblx0XHRAT3B0aW9uYWwoKVxyXG5cdFx0QFNraXBTZWxmKClcclxuXHRcdGhvc3RTZXJ2aWNlOiBMdUFwaUh5YnJpZFNlcnZpY2U8VD4sXHJcblx0XHRASW5qZWN0KEFMdUFwaVNlcnZpY2UpIEBTZWxmKCkgc2VsZlNlcnZpY2U6IEx1QXBpSHlicmlkU2VydmljZTxUPixcclxuXHQpIHtcclxuXHRcdHN1cGVyKGhvc3RTZXJ2aWNlIHx8IHNlbGZTZXJ2aWNlKTtcclxuXHR9XHJcblxyXG5cdEBJbnB1dCgpIHNldCBzdGFuZGFyZChzdGFuZGFyZDogJ3YzJyB8ICd2NCcpIHtcclxuXHRcdHRoaXMuX3NlcnZpY2Uuc3RhbmRhcmQgPSBzdGFuZGFyZDtcclxuXHR9XHJcblx0QElucHV0KCkgc2V0IGFwaShhcGk6IHN0cmluZykge1xyXG5cdFx0dGhpcy5fc2VydmljZS5hcGkgPSBhcGk7XHJcblx0fVxyXG5cdEBJbnB1dCgpIHNldCBmaWVsZHMoZmllbGRzOiBzdHJpbmcpIHtcclxuXHRcdHRoaXMuX3NlcnZpY2UuZmllbGRzID0gZmllbGRzO1xyXG5cdH1cclxuXHRASW5wdXQoKSBzZXQgZmlsdGVycyhmaWx0ZXJzOiBzdHJpbmdbXSkge1xyXG5cdFx0dGhpcy5fc2VydmljZS5maWx0ZXJzID0gZmlsdGVycztcclxuXHR9XHJcblx0QElucHV0KCkgc2V0IG9yZGVyQnkob3JkZXJCeTogc3RyaW5nKSB7XHJcblx0XHR0aGlzLl9zZXJ2aWNlLm9yZGVyQnkgPSBvcmRlckJ5O1xyXG5cdH1cclxuXHJcblx0bmdPbkluaXQoKSB7XHJcblx0XHRzdXBlci5pbml0KCk7XHJcblx0fVxyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { merge, of, Subject } from 'rxjs';
|
|
2
|
+
import { catchError, distinctUntilChanged, map, switchMap, tap } from 'rxjs/operators';
|
|
3
|
+
var Strategy;
|
|
4
|
+
(function (Strategy) {
|
|
5
|
+
Strategy[Strategy["append"] = 0] = "append";
|
|
6
|
+
Strategy[Strategy["replace"] = 1] = "replace";
|
|
7
|
+
})(Strategy || (Strategy = {}));
|
|
8
|
+
export class ALuApiOptionPager {
|
|
9
|
+
constructor(_service) {
|
|
10
|
+
this._service = _service;
|
|
11
|
+
this.outOptions$ = new Subject();
|
|
12
|
+
this._loading = false;
|
|
13
|
+
this._options = [];
|
|
14
|
+
this._page$ = new Subject();
|
|
15
|
+
this._initialized = false;
|
|
16
|
+
}
|
|
17
|
+
init() {
|
|
18
|
+
this.initObservables();
|
|
19
|
+
}
|
|
20
|
+
onOpen() {
|
|
21
|
+
if (!this._initialized) {
|
|
22
|
+
this._page$.next(0);
|
|
23
|
+
this._initialized = true;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
// onClose() {
|
|
27
|
+
// this._page$.next(0);
|
|
28
|
+
// }
|
|
29
|
+
onScrollBottom() {
|
|
30
|
+
if (!this._loading) {
|
|
31
|
+
this._page$.next(this._page + 1);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
initObservables() {
|
|
35
|
+
const _results$ = this._page$.pipe(distinctUntilChanged(), tap((p) => (this._page = p)), switchMap((page) => {
|
|
36
|
+
if (page === undefined) {
|
|
37
|
+
return of({ items: [], strategy: Strategy.replace });
|
|
38
|
+
}
|
|
39
|
+
return this._service.getPaged(page).pipe(map((items) => ({
|
|
40
|
+
items: items,
|
|
41
|
+
strategy: page === 0 ? Strategy.replace : Strategy.append,
|
|
42
|
+
})));
|
|
43
|
+
}), catchError(() => of({ items: [], strategy: Strategy.replace })), tap((results) => {
|
|
44
|
+
if (results.strategy === Strategy.replace) {
|
|
45
|
+
this._options = [...results.items];
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
this._options.push(...results.items);
|
|
49
|
+
}
|
|
50
|
+
this.outOptions$.next([...this._options]);
|
|
51
|
+
}));
|
|
52
|
+
this.loading$ = merge(this._page$.pipe(map(() => true)), _results$.pipe(map(() => false)));
|
|
53
|
+
this.loading$.subscribe((l) => (this._loading = l));
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXBhZ2VyLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvbmcvYXBpL3NlbGVjdC9wYWdlci9hcGktcGFnZXIubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxFQUFFLEtBQUssRUFBYyxFQUFFLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ3RELE9BQU8sRUFBRSxVQUFVLEVBQUUsb0JBQW9CLEVBQUUsR0FBRyxFQUFFLFNBQVMsRUFBRSxHQUFHLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUl2RixJQUFLLFFBR0o7QUFIRCxXQUFLLFFBQVE7SUFDWiwyQ0FBTSxDQUFBO0lBQ04sNkNBQU8sQ0FBQTtBQUNSLENBQUMsRUFISSxRQUFRLEtBQVIsUUFBUSxRQUdaO0FBTUQsTUFBTSxPQUFnQixpQkFBaUI7SUFZdEMsWUFBc0IsUUFBVztRQUFYLGFBQVEsR0FBUixRQUFRLENBQUc7UUFUakMsZ0JBQVcsR0FBRyxJQUFJLE9BQU8sRUFBTyxDQUFDO1FBR3ZCLGFBQVEsR0FBRyxLQUFLLENBQUM7UUFFakIsYUFBUSxHQUFRLEVBQUUsQ0FBQztRQUNuQixXQUFNLEdBQUcsSUFBSSxPQUFPLEVBQVUsQ0FBQztRQUUvQixpQkFBWSxHQUFHLEtBQUssQ0FBQztJQUNLLENBQUM7SUFDM0IsSUFBSTtRQUNiLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztJQUN4QixDQUFDO0lBQ0QsTUFBTTtRQUNMLElBQUksQ0FBQyxJQUFJLENBQUMsWUFBWSxFQUFFO1lBQ3ZCLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ3BCLElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDO1NBQ3pCO0lBQ0YsQ0FBQztJQUNELGNBQWM7SUFDZCx3QkFBd0I7SUFDeEIsSUFBSTtJQUNKLGNBQWM7UUFDYixJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRTtZQUNuQixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxHQUFHLENBQUMsQ0FBQyxDQUFDO1NBQ2pDO0lBQ0YsQ0FBQztJQUNTLGVBQWU7UUFDeEIsTUFBTSxTQUFTLEdBQW1ELElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUNqRixvQkFBb0IsRUFBRSxFQUN0QixHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUM1QixTQUFTLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRTtZQUNsQixJQUFJLElBQUksS0FBSyxTQUFTLEVBQUU7Z0JBQ3ZCLE9BQU8sRUFBRSxDQUFDLEVBQUUsS0FBSyxFQUFFLEVBQVMsRUFBRSxRQUFRLEVBQUUsUUFBUSxDQUFDLE9BQU8sRUFBRSxDQUFDLENBQUM7YUFDNUQ7WUFDRCxPQUFPLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksQ0FDdkMsR0FBRyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO2dCQUNmLEtBQUssRUFBRSxLQUFLO2dCQUNaLFFBQVEsRUFBRSxJQUFJLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsTUFBTTthQUN6RCxDQUFDLENBQUMsQ0FDSCxDQUFDO1FBQ0gsQ0FBQyxDQUFDLEVBQ0YsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLEtBQUssRUFBRSxFQUFTLEVBQUUsUUFBUSxFQUFFLFFBQVEsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxDQUFDLEVBQ3RFLEdBQUcsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFO1lBQ2YsSUFBSSxPQUFPLENBQUMsUUFBUSxLQUFLLFFBQVEsQ0FBQyxPQUFPLEVBQUU7Z0JBQzFDLElBQUksQ0FBQyxRQUFRLEdBQUcsQ0FBQyxHQUFHLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQzthQUNuQztpQkFBTTtnQkFDTixJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxHQUFHLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQzthQUNyQztZQUNELElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQztRQUMzQyxDQUFDLENBQUMsQ0FDRixDQUFDO1FBRUYsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxDQUFDLEVBQUUsU0FBUyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsR0FBRyxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQzNGLElBQUksQ0FBQyxRQUFRLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUNyRCxDQUFDO0NBQ0QiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJTHVPbk9wZW5TdWJzY3JpYmVyLCBJTHVPblNjcm9sbEJvdHRvbVN1YnNjcmliZXIgfSBmcm9tICdAbHVjY2EtZnJvbnQvbmcvY29yZSc7XHJcbmltcG9ydCB7IElMdU9wdGlvbk9wZXJhdG9yIH0gZnJvbSAnQGx1Y2NhLWZyb250L25nL29wdGlvbic7XHJcbmltcG9ydCB7IG1lcmdlLCBPYnNlcnZhYmxlLCBvZiwgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xyXG5pbXBvcnQgeyBjYXRjaEVycm9yLCBkaXN0aW5jdFVudGlsQ2hhbmdlZCwgbWFwLCBzd2l0Y2hNYXAsIHRhcCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcclxuaW1wb3J0IHsgSUx1QXBpSXRlbSB9IGZyb20gJy4uLy4uL2FwaS5tb2RlbCc7XHJcbmltcG9ydCB7IElMdUFwaVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlL2luZGV4JztcclxuXHJcbmVudW0gU3RyYXRlZ3kge1xyXG5cdGFwcGVuZCxcclxuXHRyZXBsYWNlLFxyXG59XHJcbmV4cG9ydCB0eXBlIElMdUFwaU9wdGlvblBhZ2VyPFQgZXh0ZW5kcyBJTHVBcGlJdGVtID0gSUx1QXBpSXRlbT4gPSBJTHVPcHRpb25PcGVyYXRvcjxUPjtcclxuZXhwb3J0IGludGVyZmFjZSBJTHVBcGlQYWdlclNlcnZpY2U8VCBleHRlbmRzIElMdUFwaUl0ZW0gPSBJTHVBcGlJdGVtPiB7XHJcblx0Z2V0UGFnZWQocGFnZTogbnVtYmVyKTogT2JzZXJ2YWJsZTxUW10+O1xyXG59XHJcblxyXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgQUx1QXBpT3B0aW9uUGFnZXI8VCBleHRlbmRzIElMdUFwaUl0ZW0gPSBJTHVBcGlJdGVtLCBTIGV4dGVuZHMgSUx1QXBpU2VydmljZTxUPiA9IElMdUFwaVNlcnZpY2U8VD4+XHJcblx0aW1wbGVtZW50cyBJTHVBcGlPcHRpb25QYWdlcjxUPiwgSUx1T25PcGVuU3Vic2NyaWJlciwgSUx1T25TY3JvbGxCb3R0b21TdWJzY3JpYmVyXHJcbntcclxuXHRvdXRPcHRpb25zJCA9IG5ldyBTdWJqZWN0PFRbXT4oKTtcclxuXHRsb2FkaW5nJDogT2JzZXJ2YWJsZTxib29sZWFuPjtcclxuXHJcblx0cHJvdGVjdGVkIF9sb2FkaW5nID0gZmFsc2U7XHJcblx0cHJvdGVjdGVkIF9yZXN1bHRzJDogT2JzZXJ2YWJsZTx7IGl0ZW1zOiBUW107IHN0cmF0ZWd5OiBTdHJhdGVneSB9PjtcclxuXHRwcm90ZWN0ZWQgX29wdGlvbnM6IFRbXSA9IFtdO1xyXG5cdHByb3RlY3RlZCBfcGFnZSQgPSBuZXcgU3ViamVjdDxudW1iZXI+KCk7XHJcblx0cHJvdGVjdGVkIF9wYWdlOiBudW1iZXI7XHJcblx0cHJvdGVjdGVkIF9pbml0aWFsaXplZCA9IGZhbHNlO1xyXG5cdGNvbnN0cnVjdG9yKHByb3RlY3RlZCBfc2VydmljZTogUykge31cclxuXHRwcm90ZWN0ZWQgaW5pdCgpIHtcclxuXHRcdHRoaXMuaW5pdE9ic2VydmFibGVzKCk7XHJcblx0fVxyXG5cdG9uT3BlbigpIHtcclxuXHRcdGlmICghdGhpcy5faW5pdGlhbGl6ZWQpIHtcclxuXHRcdFx0dGhpcy5fcGFnZSQubmV4dCgwKTtcclxuXHRcdFx0dGhpcy5faW5pdGlhbGl6ZWQgPSB0cnVlO1xyXG5cdFx0fVxyXG5cdH1cclxuXHQvLyBvbkNsb3NlKCkge1xyXG5cdC8vIFx0dGhpcy5fcGFnZSQubmV4dCgwKTtcclxuXHQvLyB9XHJcblx0b25TY3JvbGxCb3R0b20oKSB7XHJcblx0XHRpZiAoIXRoaXMuX2xvYWRpbmcpIHtcclxuXHRcdFx0dGhpcy5fcGFnZSQubmV4dCh0aGlzLl9wYWdlICsgMSk7XHJcblx0XHR9XHJcblx0fVxyXG5cdHByb3RlY3RlZCBpbml0T2JzZXJ2YWJsZXMoKSB7XHJcblx0XHRjb25zdCBfcmVzdWx0cyQ6IE9ic2VydmFibGU8eyBpdGVtczogVFtdOyBzdHJhdGVneTogU3RyYXRlZ3kgfT4gPSB0aGlzLl9wYWdlJC5waXBlKFxyXG5cdFx0XHRkaXN0aW5jdFVudGlsQ2hhbmdlZCgpLFxyXG5cdFx0XHR0YXAoKHApID0+ICh0aGlzLl9wYWdlID0gcCkpLFxyXG5cdFx0XHRzd2l0Y2hNYXAoKHBhZ2UpID0+IHtcclxuXHRcdFx0XHRpZiAocGFnZSA9PT0gdW5kZWZpbmVkKSB7XHJcblx0XHRcdFx0XHRyZXR1cm4gb2YoeyBpdGVtczogW10gYXMgVFtdLCBzdHJhdGVneTogU3RyYXRlZ3kucmVwbGFjZSB9KTtcclxuXHRcdFx0XHR9XHJcblx0XHRcdFx0cmV0dXJuIHRoaXMuX3NlcnZpY2UuZ2V0UGFnZWQocGFnZSkucGlwZShcclxuXHRcdFx0XHRcdG1hcCgoaXRlbXMpID0+ICh7XHJcblx0XHRcdFx0XHRcdGl0ZW1zOiBpdGVtcyxcclxuXHRcdFx0XHRcdFx0c3RyYXRlZ3k6IHBhZ2UgPT09IDAgPyBTdHJhdGVneS5yZXBsYWNlIDogU3RyYXRlZ3kuYXBwZW5kLFxyXG5cdFx0XHRcdFx0fSkpLFxyXG5cdFx0XHRcdCk7XHJcblx0XHRcdH0pLFxyXG5cdFx0XHRjYXRjaEVycm9yKCgpID0+IG9mKHsgaXRlbXM6IFtdIGFzIFRbXSwgc3RyYXRlZ3k6IFN0cmF0ZWd5LnJlcGxhY2UgfSkpLFxyXG5cdFx0XHR0YXAoKHJlc3VsdHMpID0+IHtcclxuXHRcdFx0XHRpZiAocmVzdWx0cy5zdHJhdGVneSA9PT0gU3RyYXRlZ3kucmVwbGFjZSkge1xyXG5cdFx0XHRcdFx0dGhpcy5fb3B0aW9ucyA9IFsuLi5yZXN1bHRzLml0ZW1zXTtcclxuXHRcdFx0XHR9IGVsc2Uge1xyXG5cdFx0XHRcdFx0dGhpcy5fb3B0aW9ucy5wdXNoKC4uLnJlc3VsdHMuaXRlbXMpO1xyXG5cdFx0XHRcdH1cclxuXHRcdFx0XHR0aGlzLm91dE9wdGlvbnMkLm5leHQoWy4uLnRoaXMuX29wdGlvbnNdKTtcclxuXHRcdFx0fSksXHJcblx0XHQpO1xyXG5cclxuXHRcdHRoaXMubG9hZGluZyQgPSBtZXJnZSh0aGlzLl9wYWdlJC5waXBlKG1hcCgoKSA9PiB0cnVlKSksIF9yZXN1bHRzJC5waXBlKG1hcCgoKSA9PiBmYWxzZSkpKTtcclxuXHRcdHRoaXMubG9hZGluZyQuc3Vic2NyaWJlKChsKSA9PiAodGhpcy5fbG9hZGluZyA9IGwpKTtcclxuXHR9XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { LuApiPagerComponent } from './api-pager.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
class LuApiPagerModule {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiPagerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.3", ngImport: i0, type: LuApiPagerModule, imports: [LuApiPagerComponent], exports: [LuApiPagerComponent] }); }
|
|
7
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiPagerModule }); }
|
|
8
|
+
}
|
|
9
|
+
export { LuApiPagerModule };
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.3", ngImport: i0, type: LuApiPagerModule, decorators: [{
|
|
11
|
+
type: NgModule,
|
|
12
|
+
args: [{
|
|
13
|
+
imports: [LuApiPagerComponent],
|
|
14
|
+
exports: [LuApiPagerComponent],
|
|
15
|
+
}]
|
|
16
|
+
}] });
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXBhZ2VyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL25nL2FwaS9zZWxlY3QvcGFnZXIvYXBpLXBhZ2VyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDOztBQUU1RCxNQUlhLGdCQUFnQjs4R0FBaEIsZ0JBQWdCOytHQUFoQixnQkFBZ0IsWUFIbEIsbUJBQW1CLGFBQ25CLG1CQUFtQjsrR0FFakIsZ0JBQWdCOztTQUFoQixnQkFBZ0I7MkZBQWhCLGdCQUFnQjtrQkFKNUIsUUFBUTttQkFBQztvQkFDVCxPQUFPLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQztvQkFDOUIsT0FBTyxFQUFFLENBQUMsbUJBQW1CLENBQUM7aUJBQzlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTHVBcGlQYWdlckNvbXBvbmVudCB9IGZyb20gJy4vYXBpLXBhZ2VyLmNvbXBvbmVudCc7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG5cdGltcG9ydHM6IFtMdUFwaVBhZ2VyQ29tcG9uZW50XSxcclxuXHRleHBvcnRzOiBbTHVBcGlQYWdlckNvbXBvbmVudF0sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBMdUFwaVBhZ2VyTW9kdWxlIHt9XHJcbiJdfQ==
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './api-pager.model';
|
|
2
|
+
export * from './api-pager.component';
|
|
3
|
+
export * from './api-pager.module';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hcGkvc2VsZWN0L3BhZ2VyL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLG9CQUFvQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9hcGktcGFnZXIubW9kZWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2FwaS1wYWdlci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2FwaS1wYWdlci5tb2R1bGUnO1xyXG4iXX0=
|