ca-components 1.3.33 → 1.3.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/ca-components.module.mjs +11 -5
- package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +12 -11
- package/esm2022/lib/components/ca-checkbox/ca-checkbox.component.mjs +134 -0
- package/esm2022/lib/components/ca-checkbox/interfaces/column-check-action.interface.mjs +2 -0
- package/esm2022/lib/components/ca-checkbox/interfaces/index.mjs +2 -0
- package/esm2022/lib/components/ca-checkbox/utils/svg-routes/checkbox-svg-routes.mjs +7 -0
- package/esm2022/lib/components/ca-checkbox/utils/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.mjs +95 -24
- package/esm2022/lib/components/ca-dropdown-menu/enums/dropdown-menu.enum.mjs +19 -0
- package/esm2022/lib/components/ca-dropdown-menu/enums/index.mjs +2 -2
- package/esm2022/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-item.interface.mjs +2 -0
- package/esm2022/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-option-emit.interface.mjs +2 -0
- package/esm2022/lib/components/ca-dropdown-menu/interfaces/index.mjs +3 -0
- package/esm2022/lib/components/ca-dropdown-menu/pipes/dropdown-menu-placement-class.pipe.mjs +4 -4
- package/esm2022/lib/components/ca-dropdown-menu/pipes/group-item-checked-state.pipe.mjs +21 -0
- package/esm2022/lib/components/ca-dropdown-menu/pipes/index.mjs +2 -1
- package/esm2022/lib/components/ca-input/directives/command-visible.directive.mjs +48 -0
- package/esm2022/lib/components/ca-input/input-test/input-test.component.mjs +266 -0
- package/esm2022/lib/components/ca-input/mixins/input-command.mixin.mjs +127 -0
- package/esm2022/lib/components/ca-input/mixins/input-helper.mixin.mjs +49 -0
- package/esm2022/lib/components/ca-input/models/base.model.mjs +2 -0
- package/esm2022/lib/components/ca-main-table/ca-main-table.component.mjs +5 -3
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +1 -1
- package/esm2022/lib/components/ca-tooltip-list/ca-tooltip-list.component.mjs +3 -3
- package/esm2022/lib/enums/dropdown-menu.enum.mjs +20 -0
- package/esm2022/lib/pipes/row-class.pipe.mjs +26 -0
- package/esm2022/lib/utils/constants/dropdown-menu-content.constants.mjs +26 -26
- package/esm2022/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.mjs +4 -4
- package/esm2022/lib/utils/helpers/dropdown-menu-content.helper.mjs +6 -6
- package/esm2022/public-api.mjs +3 -4
- package/fesm2022/ca-components.mjs +1792 -6057
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/ca-components.module.d.ts +3 -2
- package/lib/components/ca-checkbox/ca-checkbox.component.d.ts +39 -0
- package/lib/components/ca-checkbox/interfaces/column-check-action.interface.d.ts +6 -0
- package/lib/components/ca-checkbox/interfaces/index.d.ts +1 -0
- package/lib/components/ca-checkbox/utils/svg-routes/checkbox-svg-routes.d.ts +6 -0
- package/lib/components/ca-checkbox/utils/svg-routes/index.d.ts +1 -0
- package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.d.ts +16 -7
- package/lib/components/ca-dropdown-menu/enums/{dropdown-menu-string.enum.d.ts → dropdown-menu.enum.d.ts} +5 -2
- package/lib/components/ca-dropdown-menu/enums/index.d.ts +1 -1
- package/lib/components/ca-dropdown-menu/{models/dropdown-menu-item.model.d.ts → interfaces/dropdown-menu-item.interface.d.ts} +7 -1
- package/lib/components/ca-dropdown-menu/{models/dropdown-menu-option-emit.model.d.ts → interfaces/dropdown-menu-option-emit.interface.d.ts} +1 -1
- package/lib/components/ca-dropdown-menu/interfaces/index.d.ts +2 -0
- package/lib/components/ca-dropdown-menu/pipes/group-item-checked-state.pipe.d.ts +8 -0
- package/lib/components/ca-dropdown-menu/pipes/index.d.ts +1 -0
- package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
- package/lib/components/{ca-input-test → ca-input/input-test}/input-test.component.d.ts +12 -13
- package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.d.ts +4 -4
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +3 -3
- package/lib/enums/{dropdown-menu-string.enum.d.ts → dropdown-menu.enum.d.ts} +1 -1
- package/lib/pipes/row-class.pipe.d.ts +7 -0
- package/lib/utils/constants/dropdown-menu-content.constants.d.ts +3 -3
- package/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.d.ts +3 -3
- package/lib/utils/helpers/dropdown-menu-content.helper.d.ts +3 -3
- package/package.json +1 -1
- package/public-api.d.ts +2 -3
- package/src/assets/ca-components/svg/common/ic_carriera-logo-active.svg +4 -0
- package/src/assets/ca-components/svg/common/ic_carriera-logo-inactive.svg +4 -0
- package/src/assets/ca-components/svg/common/ic_columns.svg +8 -0
- package/src/assets/ca-components/svg/common/ic_disable.svg +3 -0
- package/assets/scss/input-dropdown-test.scss +0 -2030
- package/esm2022/lib/components/ca-dropdown-menu/enums/dropdown-menu-string.enum.mjs +0 -14
- package/esm2022/lib/components/ca-dropdown-menu/models/dropdown-menu-item.model.mjs +0 -2
- package/esm2022/lib/components/ca-dropdown-menu/models/dropdown-menu-option-emit.model.mjs +0 -2
- package/esm2022/lib/components/ca-dropdown-menu/models/index.mjs +0 -3
- package/esm2022/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.mjs +0 -351
- package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-basic-string.enum.mjs +0 -6
- package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-commands-string.enum.mjs +0 -8
- package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-layers-string.enum.mjs +0 -6
- package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-stop-types-string.enum.mjs +0 -6
- package/esm2022/lib/components/ca-input-address-dropdown-test/enums/input-address-type-string.enum.mjs +0 -7
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/address-data.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/address-list.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/command-properties.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/commands-handler.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/input-address-commands-string.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/long-lat.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/models/sent-address-data.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-address-dropdown-test/validators/ca-input-address-value.validations.mjs +0 -11
- package/esm2022/lib/components/ca-input-dropdown-test/animations/index.mjs +0 -2
- package/esm2022/lib/components/ca-input-dropdown-test/animations/input-dropdown.animation.mjs +0 -11
- package/esm2022/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.mjs +0 -692
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.mjs +0 -62
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.mjs +0 -72
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.mjs +0 -60
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.mjs +0 -62
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.mjs +0 -76
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.mjs +0 -58
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.mjs +0 -76
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker-item/ca-input-dropdown-load-broker-item.component.mjs +0 -41
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.mjs +0 -64
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.mjs +0 -38
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.mjs +0 -62
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper-item/ca-input-dropdown-load-broker-shipper-item.component.mjs +0 -37
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.mjs +0 -61
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher-item/ca-input-dropdown-load-dispatcher-item.component.mjs +0 -49
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.mjs +0 -60
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd-item/ca-input-dropdown-load-dispatches-ttd-item.mjs +0 -49
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.mjs +0 -65
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.mjs +0 -58
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.mjs +0 -62
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.mjs +0 -63
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.mjs +0 -72
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template-item/ca-input-dropdown-svgtext-template-item.component.mjs +0 -56
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.mjs +0 -77
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.mjs +0 -58
- package/esm2022/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.mjs +0 -62
- package/esm2022/lib/components/ca-input-dropdown-test/enums/dropdown-string.enum.mjs +0 -6
- package/esm2022/lib/components/ca-input-dropdown-test/enums/dropdown-template-type.enum.mjs +0 -23
- package/esm2022/lib/components/ca-input-dropdown-test/enums/index.mjs +0 -3
- package/esm2022/lib/components/ca-input-dropdown-test/models/index.mjs +0 -4
- package/esm2022/lib/components/ca-input-dropdown-test/models/input-dropdown-option.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-dropdown-test/models/load-modal-status.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-dropdown-test/models/status-order.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/dropdown-count.pipe.mjs +0 -29
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/dropdown-options.pipe.mjs +0 -73
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/index.mjs +0 -10
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-default-template-class.pipe.mjs +0 -27
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-fuel-franchise-class.pipe.mjs +0 -22
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-get-icon.pipe.mjs +0 -18
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-label-class.pipe.mjs +0 -27
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-load-broker-container.pipe.mjs +0 -25
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-multiselect-class.pipe.mjs +0 -23
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-container.pipe.mjs +0 -25
- package/esm2022/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-icon.pipe.mjs +0 -23
- package/esm2022/lib/components/ca-input-dropdown-test/utils/svg-routes/index.mjs +0 -2
- package/esm2022/lib/components/ca-input-dropdown-test/utils/svg-routes/input-dropdown-svg-routes.mjs +0 -13
- package/esm2022/lib/components/ca-input-test/base-classes/ca-input-event-manager.mjs +0 -24
- package/esm2022/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.mjs +0 -66
- package/esm2022/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.mjs +0 -48
- package/esm2022/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.mjs +0 -63
- package/esm2022/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +0 -85
- package/esm2022/lib/components/ca-input-test/config/ca-input.config.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/config/index.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/directives/caps-lock.directive.mjs +0 -50
- package/esm2022/lib/components/ca-input-test/directives/command-visible.directive.mjs +0 -48
- package/esm2022/lib/components/ca-input-test/directives/index.mjs +0 -6
- package/esm2022/lib/components/ca-input-test/directives/input-max-value.directive.mjs +0 -53
- package/esm2022/lib/components/ca-input-test/directives/min-max-value.directive.mjs +0 -41
- package/esm2022/lib/components/ca-input-test/directives/price_format.directive.mjs +0 -41
- package/esm2022/lib/components/ca-input-test/directives/restrict-input.directive.mjs +0 -94
- package/esm2022/lib/components/ca-input-test/enums/index.mjs +0 -5
- package/esm2022/lib/components/ca-input-test/enums/input-commands-action.enum.mjs +0 -11
- package/esm2022/lib/components/ca-input-test/enums/input-commands-type.enum.mjs +0 -8
- package/esm2022/lib/components/ca-input-test/enums/input-config-name-string.enum.mjs +0 -9
- package/esm2022/lib/components/ca-input-test/enums/input-string.enum.mjs +0 -114
- package/esm2022/lib/components/ca-input-test/enums/input-text-transform.enum.mjs +0 -9
- package/esm2022/lib/components/ca-input-test/input-test.component.mjs +0 -273
- package/esm2022/lib/components/ca-input-test/mixins/input-command.mixin.mjs +0 -127
- package/esm2022/lib/components/ca-input-test/mixins/input-helper.mixin.mjs +0 -49
- package/esm2022/lib/components/ca-input-test/mixins/restriction-pipe.mixin.mjs +0 -34
- package/esm2022/lib/components/ca-input-test/models/base.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/models/command-click.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/models/commands-event.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/models/index.mjs +0 -4
- package/esm2022/lib/components/ca-input-test/models/label-color.model.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/pipes/color-finder.pipe.mjs +0 -62
- package/esm2022/lib/components/ca-input-test/pipes/form-control.pipe.mjs +0 -17
- package/esm2022/lib/components/ca-input-test/pipes/index.mjs +0 -20
- package/esm2022/lib/components/ca-input-test/pipes/input-class.pipe.mjs +0 -155
- package/esm2022/lib/components/ca-input-test/pipes/input-clear-class.pipe.mjs +0 -87
- package/esm2022/lib/components/ca-input-test/pipes/input-container-class.pipe.mjs +0 -58
- package/esm2022/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.mjs +0 -77
- package/esm2022/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.mjs +0 -61
- package/esm2022/lib/components/ca-input-test/pipes/input-error.pipe.mjs +0 -88
- package/esm2022/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.mjs +0 -37
- package/esm2022/lib/components/ca-input-test/pipes/input-pattern.pipe.mjs +0 -326
- package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.mjs +0 -46
- package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.mjs +0 -58
- package/esm2022/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.mjs +0 -45
- package/esm2022/lib/components/ca-input-test/pipes/input-type.pipe.mjs +0 -25
- package/esm2022/lib/components/ca-input-test/pipes/label-class.pipe.mjs +0 -38
- package/esm2022/lib/components/ca-input-test/pipes/show-clear.pipe.mjs +0 -22
- package/esm2022/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.mjs +0 -26
- package/esm2022/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.mjs +0 -27
- package/esm2022/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.mjs +0 -24
- package/esm2022/lib/components/ca-input-test/pipes/show-valid-check.pipe.mjs +0 -27
- package/esm2022/lib/components/ca-input-test/utils/index.mjs +0 -3
- package/esm2022/lib/components/ca-input-test/utils/input-change-value.type.mjs +0 -2
- package/esm2022/lib/components/ca-input-test/utils/input-svg-routes.mjs +0 -17
- package/esm2022/lib/enums/dropdown-menu-string.enum.mjs +0 -20
- package/lib/components/ca-dropdown-menu/models/index.d.ts +0 -2
- package/lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component.d.ts +0 -74
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-basic-string.enum.d.ts +0 -4
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-commands-string.enum.d.ts +0 -6
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-layers-string.enum.d.ts +0 -4
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-stop-types-string.enum.d.ts +0 -4
- package/lib/components/ca-input-address-dropdown-test/enums/input-address-type-string.enum.d.ts +0 -5
- package/lib/components/ca-input-address-dropdown-test/models/address-data.model.d.ts +0 -10
- package/lib/components/ca-input-address-dropdown-test/models/address-list.model.d.ts +0 -5
- package/lib/components/ca-input-address-dropdown-test/models/command-properties.model.d.ts +0 -7
- package/lib/components/ca-input-address-dropdown-test/models/commands-handler.model.d.ts +0 -7
- package/lib/components/ca-input-address-dropdown-test/models/input-address-commands-string.model.d.ts +0 -1
- package/lib/components/ca-input-address-dropdown-test/models/long-lat.model.d.ts +0 -4
- package/lib/components/ca-input-address-dropdown-test/models/sent-address-data.model.d.ts +0 -6
- package/lib/components/ca-input-address-dropdown-test/validators/ca-input-address-value.validations.d.ts +0 -2
- package/lib/components/ca-input-dropdown-test/animations/index.d.ts +0 -1
- package/lib/components/ca-input-dropdown-test/animations/input-dropdown.animation.d.ts +0 -1
- package/lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component.d.ts +0 -125
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-details-template/ca-input-dropdown-details-template.component.d.ts +0 -22
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.d.ts +0 -19
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-double-text-template/ca-input-dropdown-double-text-template.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-fuel-franchise/ca-input-dropdown-fuel-franchise.component.d.ts +0 -27
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-groups/ca-input-dropdown-groups.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.d.ts +0 -24
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker-item/ca-input-dropdown-load-broker-item.component.d.ts +0 -10
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker/ca-input-dropdown-load-broker.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact-item/ca-input-dropdown-load-broker-contact-item.component.d.ts +0 -11
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-contact/ca-input-dropdown-load-broker-contact.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper-item/ca-input-dropdown-load-broker-shipper-item.component.d.ts +0 -11
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-broker-shipper/ca-input-dropdown-load-broker-shipper.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher-item/ca-input-dropdown-load-dispatcher-item.component.d.ts +0 -14
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatcher/ca-input-dropdown-load-dispatcher.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd-item/ca-input-dropdown-load-dispatches-ttd-item.d.ts +0 -14
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-load-dispatches-ttd/ca-input-dropdown-load-dispatches-ttd.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-multiselect/ca-input-dropdown-multiselect.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-payroll-trucks/ca-input-dropdown-payroll-trucks.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-dispatch-template/ca-input-dropdown-svgtext-dispatch-template.component.d.ts +0 -22
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template-item/ca-input-dropdown-svgtext-template-item.component.d.ts +0 -15
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-svgtext-template/ca-input-dropdown-svgtext-template.component.d.ts +0 -22
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.d.ts +0 -18
- package/lib/components/ca-input-dropdown-test/components/ca-input-dropdown-triple-text-template/ca-input-dropdown-triple-text-template.component.d.ts +0 -20
- package/lib/components/ca-input-dropdown-test/enums/dropdown-string.enum.d.ts +0 -4
- package/lib/components/ca-input-dropdown-test/enums/dropdown-template-type.enum.d.ts +0 -21
- package/lib/components/ca-input-dropdown-test/enums/index.d.ts +0 -2
- package/lib/components/ca-input-dropdown-test/models/index.d.ts +0 -3
- package/lib/components/ca-input-dropdown-test/models/input-dropdown-option.model.d.ts +0 -95
- package/lib/components/ca-input-dropdown-test/models/load-modal-status.model.d.ts +0 -5
- package/lib/components/ca-input-dropdown-test/models/status-order.model.d.ts +0 -4
- package/lib/components/ca-input-dropdown-test/pipes/dropdown-count.pipe.d.ts +0 -7
- package/lib/components/ca-input-dropdown-test/pipes/dropdown-options.pipe.d.ts +0 -10
- package/lib/components/ca-input-dropdown-test/pipes/index.d.ts +0 -9
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-default-template-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-fuel-franchise-class.pipe.d.ts +0 -10
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-get-icon.pipe.d.ts +0 -9
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-label-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-load-broker-container.pipe.d.ts +0 -10
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-multiselect-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-container.pipe.d.ts +0 -10
- package/lib/components/ca-input-dropdown-test/pipes/input-dropdown-svgtext-template-icon.pipe.d.ts +0 -11
- package/lib/components/ca-input-dropdown-test/utils/svg-routes/index.d.ts +0 -1
- package/lib/components/ca-input-dropdown-test/utils/svg-routes/input-dropdown-svg-routes.d.ts +0 -12
- package/lib/components/ca-input-test/base-classes/ca-input-event-manager.d.ts +0 -16
- package/lib/components/ca-input-test/components/ca-input-clear/ca-input-clear.component.d.ts +0 -20
- package/lib/components/ca-input-test/components/ca-input-commands/ca-input-commands.component.d.ts +0 -16
- package/lib/components/ca-input-test/components/ca-input-password/ca-input-password.component.d.ts +0 -20
- package/lib/components/ca-input-test/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +0 -26
- package/lib/components/ca-input-test/config/ca-input.config.d.ts +0 -168
- package/lib/components/ca-input-test/config/index.d.ts +0 -1
- package/lib/components/ca-input-test/directives/caps-lock.directive.d.ts +0 -14
- package/lib/components/ca-input-test/directives/index.d.ts +0 -5
- package/lib/components/ca-input-test/directives/input-max-value.directive.d.ts +0 -12
- package/lib/components/ca-input-test/directives/min-max-value.directive.d.ts +0 -13
- package/lib/components/ca-input-test/directives/price_format.directive.d.ts +0 -11
- package/lib/components/ca-input-test/directives/restrict-input.directive.d.ts +0 -27
- package/lib/components/ca-input-test/enums/index.d.ts +0 -4
- package/lib/components/ca-input-test/enums/input-commands-action.enum.d.ts +0 -9
- package/lib/components/ca-input-test/enums/input-commands-type.enum.d.ts +0 -6
- package/lib/components/ca-input-test/enums/input-config-name-string.enum.d.ts +0 -7
- package/lib/components/ca-input-test/enums/input-string.enum.d.ts +0 -112
- package/lib/components/ca-input-test/enums/input-text-transform.enum.d.ts +0 -6
- package/lib/components/ca-input-test/mixins/restriction-pipe.mixin.d.ts +0 -12
- package/lib/components/ca-input-test/models/command-click.model.d.ts +0 -5
- package/lib/components/ca-input-test/models/commands-event.model.d.ts +0 -5
- package/lib/components/ca-input-test/models/index.d.ts +0 -3
- package/lib/components/ca-input-test/models/label-color.model.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/color-finder.pipe.d.ts +0 -7
- package/lib/components/ca-input-test/pipes/form-control.pipe.d.ts +0 -8
- package/lib/components/ca-input-test/pipes/index.d.ts +0 -19
- package/lib/components/ca-input-test/pipes/input-class.pipe.d.ts +0 -13
- package/lib/components/ca-input-test/pipes/input-clear-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-container-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-datetime-picker-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-dropdown-arrow-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-error.pipe.d.ts +0 -7
- package/lib/components/ca-input-test/pipes/input-password-eye-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-pattern.pipe.d.ts +0 -38
- package/lib/components/ca-input-test/pipes/input-placeholder-icon-right.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-placeholder-icon.class.pipe.d.ts +0 -12
- package/lib/components/ca-input-test/pipes/input-placeholder-text-class.pipe.d.ts +0 -11
- package/lib/components/ca-input-test/pipes/input-type.pipe.d.ts +0 -7
- package/lib/components/ca-input-test/pipes/label-class.pipe.d.ts +0 -10
- package/lib/components/ca-input-test/pipes/show-clear.pipe.d.ts +0 -8
- package/lib/components/ca-input-test/pipes/show-dropdown-arrow.pipe.d.ts +0 -8
- package/lib/components/ca-input-test/pipes/show-invalid-danger-mark.pipe.d.ts +0 -9
- package/lib/components/ca-input-test/pipes/show-placeholder-text.pipe.d.ts +0 -9
- package/lib/components/ca-input-test/pipes/show-valid-check.pipe.d.ts +0 -9
- package/lib/components/ca-input-test/utils/index.d.ts +0 -2
- package/lib/components/ca-input-test/utils/input-change-value.type.d.ts +0 -1
- package/lib/components/ca-input-test/utils/input-svg-routes.d.ts +0 -16
- /package/lib/components/{ca-input-test → ca-input}/directives/command-visible.directive.d.ts +0 -0
- /package/lib/components/{ca-input-test → ca-input}/mixins/input-command.mixin.d.ts +0 -0
- /package/lib/components/{ca-input-test → ca-input}/mixins/input-helper.mixin.d.ts +0 -0
- /package/lib/components/{ca-input-test → ca-input}/models/base.model.d.ts +0 -0
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { eDropdownMenu } from '../../enums/dropdown-menu.enum';
|
|
2
2
|
export class DropdownMenuContentConstants {
|
|
3
3
|
// shared items
|
|
4
4
|
static { this.DROPDOWN_MENU_SHARED_ITEMS = {
|
|
5
|
-
[
|
|
6
|
-
title:
|
|
7
|
-
type:
|
|
5
|
+
[eDropdownMenu.EDIT]: {
|
|
6
|
+
title: eDropdownMenu.EDIT,
|
|
7
|
+
type: eDropdownMenu.EDIT_TYPE,
|
|
8
8
|
svgUrl: 'assets/ca-components/svg/popup/edit-hover.svg',
|
|
9
|
-
svgClass:
|
|
9
|
+
svgClass: eDropdownMenu.REGULAR,
|
|
10
10
|
hasBorder: true,
|
|
11
11
|
},
|
|
12
|
-
[
|
|
13
|
-
title:
|
|
14
|
-
type:
|
|
12
|
+
[eDropdownMenu.VIEW_DETAILS]: {
|
|
13
|
+
title: eDropdownMenu.VIEW_DETAILS,
|
|
14
|
+
type: eDropdownMenu.VIEW_DETAILS_TYPE,
|
|
15
15
|
svgUrl: 'assets/ca-components/svg/popup/ic_info.svg',
|
|
16
|
-
svgClass:
|
|
16
|
+
svgClass: eDropdownMenu.REGULAR,
|
|
17
17
|
hasBorder: true,
|
|
18
18
|
},
|
|
19
|
-
[
|
|
20
|
-
title:
|
|
21
|
-
type:
|
|
19
|
+
[eDropdownMenu.SHARE]: {
|
|
20
|
+
title: eDropdownMenu.SHARE,
|
|
21
|
+
type: eDropdownMenu.SHARE_TYPE,
|
|
22
22
|
svgUrl: 'assets/svg/common/share-icon.svg',
|
|
23
|
-
svgClass:
|
|
23
|
+
svgClass: eDropdownMenu.REGULAR,
|
|
24
24
|
},
|
|
25
|
-
[
|
|
26
|
-
title:
|
|
27
|
-
type:
|
|
25
|
+
[eDropdownMenu.PRINT]: {
|
|
26
|
+
title: eDropdownMenu.PRINT,
|
|
27
|
+
type: eDropdownMenu.PRINT_TYPE,
|
|
28
28
|
svgUrl: 'assets/svg/truckassist-table/print-icon.svg',
|
|
29
|
-
svgClass:
|
|
29
|
+
svgClass: eDropdownMenu.REGULAR,
|
|
30
30
|
hasBorder: true,
|
|
31
31
|
},
|
|
32
|
-
[
|
|
33
|
-
title:
|
|
34
|
-
type:
|
|
32
|
+
[eDropdownMenu.DELETE]: {
|
|
33
|
+
title: eDropdownMenu.DELETE,
|
|
34
|
+
type: eDropdownMenu.DELETE_TYPE,
|
|
35
35
|
svgUrl: 'assets/ca-components/svg/popup/Delete.svg',
|
|
36
|
-
svgClass:
|
|
36
|
+
svgClass: eDropdownMenu.DELETE_TYPE,
|
|
37
37
|
},
|
|
38
38
|
}; }
|
|
39
39
|
// conditional items
|
|
40
40
|
static { this.DROPDOWN_MENU_CONDITIONAL_ITEMS = {
|
|
41
41
|
// dispatchboard - pickup delivery component
|
|
42
|
-
[
|
|
43
|
-
title:
|
|
44
|
-
type:
|
|
42
|
+
[eDropdownMenu.UNASSIGN]: {
|
|
43
|
+
title: eDropdownMenu.UNASSIGN,
|
|
44
|
+
type: eDropdownMenu.UNASSIGN_TYPE,
|
|
45
45
|
svgUrl: 'assets/ca-components/svg/popup/Minus.svg',
|
|
46
|
-
svgClass:
|
|
46
|
+
svgClass: eDropdownMenu.REGULAR,
|
|
47
47
|
hasBorder: true,
|
|
48
48
|
},
|
|
49
49
|
}; }
|
|
50
50
|
}
|
|
51
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1jb250ZW50LmNvbnN0YW50cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi91dGlscy9jb25zdGFudHMvZHJvcGRvd24tbWVudS1jb250ZW50LmNvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFLL0QsTUFBTSxPQUFPLDRCQUE0QjtJQUNyQyxlQUFlO2FBQ1IsK0JBQTBCLEdBQXNDO1FBQ25FLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxFQUFFO1lBQ2xCLEtBQUssRUFBRSxhQUFhLENBQUMsSUFBSTtZQUN6QixJQUFJLEVBQUUsYUFBYSxDQUFDLFNBQVM7WUFDN0IsTUFBTSxFQUFFLCtDQUErQztZQUN2RCxRQUFRLEVBQUUsYUFBYSxDQUFDLE9BQU87WUFDL0IsU0FBUyxFQUFFLElBQUk7U0FDbEI7UUFDRCxDQUFDLGFBQWEsQ0FBQyxZQUFZLENBQUMsRUFBRTtZQUMxQixLQUFLLEVBQUUsYUFBYSxDQUFDLFlBQVk7WUFDakMsSUFBSSxFQUFFLGFBQWEsQ0FBQyxpQkFBaUI7WUFDckMsTUFBTSxFQUFFLDRDQUE0QztZQUNwRCxRQUFRLEVBQUUsYUFBYSxDQUFDLE9BQU87WUFDL0IsU0FBUyxFQUFFLElBQUk7U0FDbEI7UUFDRCxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUMsRUFBRTtZQUNuQixLQUFLLEVBQUUsYUFBYSxDQUFDLEtBQUs7WUFDMUIsSUFBSSxFQUFFLGFBQWEsQ0FBQyxVQUFVO1lBQzlCLE1BQU0sRUFBRSxrQ0FBa0M7WUFDMUMsUUFBUSxFQUFFLGFBQWEsQ0FBQyxPQUFPO1NBQ2xDO1FBQ0QsQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLEVBQUU7WUFDbkIsS0FBSyxFQUFFLGFBQWEsQ0FBQyxLQUFLO1lBQzFCLElBQUksRUFBRSxhQUFhLENBQUMsVUFBVTtZQUM5QixNQUFNLEVBQUUsNkNBQTZDO1lBQ3JELFFBQVEsRUFBRSxhQUFhLENBQUMsT0FBTztZQUMvQixTQUFTLEVBQUUsSUFBSTtTQUNsQjtRQUNELENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxFQUFFO1lBQ3BCLEtBQUssRUFBRSxhQUFhLENBQUMsTUFBTTtZQUMzQixJQUFJLEVBQUUsYUFBYSxDQUFDLFdBQVc7WUFDL0IsTUFBTSxFQUFFLDJDQUEyQztZQUNuRCxRQUFRLEVBQUUsYUFBYSxDQUFDLFdBQVc7U0FDdEM7S0FDSixDQUFDO0lBRUYsb0JBQW9CO2FBQ2Isb0NBQStCLEdBQXNDO1FBQ3hFLDRDQUE0QztRQUU1QyxDQUFDLGFBQWEsQ0FBQyxRQUFRLENBQUMsRUFBRTtZQUN0QixLQUFLLEVBQUUsYUFBYSxDQUFDLFFBQVE7WUFDN0IsSUFBSSxFQUFFLGFBQWEsQ0FBQyxhQUFhO1lBQ2pDLE1BQU0sRUFBRSwwQ0FBMEM7WUFDbEQsUUFBUSxFQUFFLGFBQWEsQ0FBQyxPQUFPO1lBQy9CLFNBQVMsRUFBRSxJQUFJO1NBQ2xCO0tBQ0osQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGVEcm9wZG93bk1lbnUgfSBmcm9tICcuLi8uLi9lbnVtcy9kcm9wZG93bi1tZW51LmVudW0nO1xuXG4vLyBtb2RlbHNcbmltcG9ydCB7IElEcm9wZG93bk1lbnVJdGVtIH0gZnJvbSAnLi4vLi4vY29tcG9uZW50cy9jYS1kcm9wZG93bi1tZW51L2ludGVyZmFjZXMnO1xuXG5leHBvcnQgY2xhc3MgRHJvcGRvd25NZW51Q29udGVudENvbnN0YW50cyB7XG4gICAgLy8gc2hhcmVkIGl0ZW1zXG4gICAgc3RhdGljIERST1BET1dOX01FTlVfU0hBUkVEX0lURU1TOiBSZWNvcmQ8c3RyaW5nLCBJRHJvcGRvd25NZW51SXRlbT4gPSB7XG4gICAgICAgIFtlRHJvcGRvd25NZW51LkVESVRdOiB7XG4gICAgICAgICAgICB0aXRsZTogZURyb3Bkb3duTWVudS5FRElULFxuICAgICAgICAgICAgdHlwZTogZURyb3Bkb3duTWVudS5FRElUX1RZUEUsXG4gICAgICAgICAgICBzdmdVcmw6ICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvcG9wdXAvZWRpdC1ob3Zlci5zdmcnLFxuICAgICAgICAgICAgc3ZnQ2xhc3M6IGVEcm9wZG93bk1lbnUuUkVHVUxBUixcbiAgICAgICAgICAgIGhhc0JvcmRlcjogdHJ1ZSxcbiAgICAgICAgfSxcbiAgICAgICAgW2VEcm9wZG93bk1lbnUuVklFV19ERVRBSUxTXToge1xuICAgICAgICAgICAgdGl0bGU6IGVEcm9wZG93bk1lbnUuVklFV19ERVRBSUxTLFxuICAgICAgICAgICAgdHlwZTogZURyb3Bkb3duTWVudS5WSUVXX0RFVEFJTFNfVFlQRSxcbiAgICAgICAgICAgIHN2Z1VybDogJ2Fzc2V0cy9jYS1jb21wb25lbnRzL3N2Zy9wb3B1cC9pY19pbmZvLnN2ZycsXG4gICAgICAgICAgICBzdmdDbGFzczogZURyb3Bkb3duTWVudS5SRUdVTEFSLFxuICAgICAgICAgICAgaGFzQm9yZGVyOiB0cnVlLFxuICAgICAgICB9LFxuICAgICAgICBbZURyb3Bkb3duTWVudS5TSEFSRV06IHtcbiAgICAgICAgICAgIHRpdGxlOiBlRHJvcGRvd25NZW51LlNIQVJFLFxuICAgICAgICAgICAgdHlwZTogZURyb3Bkb3duTWVudS5TSEFSRV9UWVBFLFxuICAgICAgICAgICAgc3ZnVXJsOiAnYXNzZXRzL3N2Zy9jb21tb24vc2hhcmUtaWNvbi5zdmcnLFxuICAgICAgICAgICAgc3ZnQ2xhc3M6IGVEcm9wZG93bk1lbnUuUkVHVUxBUixcbiAgICAgICAgfSxcbiAgICAgICAgW2VEcm9wZG93bk1lbnUuUFJJTlRdOiB7XG4gICAgICAgICAgICB0aXRsZTogZURyb3Bkb3duTWVudS5QUklOVCxcbiAgICAgICAgICAgIHR5cGU6IGVEcm9wZG93bk1lbnUuUFJJTlRfVFlQRSxcbiAgICAgICAgICAgIHN2Z1VybDogJ2Fzc2V0cy9zdmcvdHJ1Y2thc3Npc3QtdGFibGUvcHJpbnQtaWNvbi5zdmcnLFxuICAgICAgICAgICAgc3ZnQ2xhc3M6IGVEcm9wZG93bk1lbnUuUkVHVUxBUixcbiAgICAgICAgICAgIGhhc0JvcmRlcjogdHJ1ZSxcbiAgICAgICAgfSxcbiAgICAgICAgW2VEcm9wZG93bk1lbnUuREVMRVRFXToge1xuICAgICAgICAgICAgdGl0bGU6IGVEcm9wZG93bk1lbnUuREVMRVRFLFxuICAgICAgICAgICAgdHlwZTogZURyb3Bkb3duTWVudS5ERUxFVEVfVFlQRSxcbiAgICAgICAgICAgIHN2Z1VybDogJ2Fzc2V0cy9jYS1jb21wb25lbnRzL3N2Zy9wb3B1cC9EZWxldGUuc3ZnJyxcbiAgICAgICAgICAgIHN2Z0NsYXNzOiBlRHJvcGRvd25NZW51LkRFTEVURV9UWVBFLFxuICAgICAgICB9LFxuICAgIH07XG5cbiAgICAvLyBjb25kaXRpb25hbCBpdGVtc1xuICAgIHN0YXRpYyBEUk9QRE9XTl9NRU5VX0NPTkRJVElPTkFMX0lURU1TOiBSZWNvcmQ8c3RyaW5nLCBJRHJvcGRvd25NZW51SXRlbT4gPSB7XG4gICAgICAgIC8vIGRpc3BhdGNoYm9hcmQgLSBwaWNrdXAgZGVsaXZlcnkgY29tcG9uZW50XG5cbiAgICAgICAgW2VEcm9wZG93bk1lbnUuVU5BU1NJR05dOiB7XG4gICAgICAgICAgICB0aXRsZTogZURyb3Bkb3duTWVudS5VTkFTU0lHTixcbiAgICAgICAgICAgIHR5cGU6IGVEcm9wZG93bk1lbnUuVU5BU1NJR05fVFlQRSxcbiAgICAgICAgICAgIHN2Z1VybDogJ2Fzc2V0cy9jYS1jb21wb25lbnRzL3N2Zy9wb3B1cC9NaW51cy5zdmcnLFxuICAgICAgICAgICAgc3ZnQ2xhc3M6IGVEcm9wZG93bk1lbnUuUkVHVUxBUixcbiAgICAgICAgICAgIGhhc0JvcmRlcjogdHJ1ZSxcbiAgICAgICAgfSxcbiAgICB9O1xufVxuIl19
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DropdownMenuContentConstants } from '../../utils/constants';
|
|
2
2
|
// enums
|
|
3
|
-
import {
|
|
3
|
+
import { eDropdownMenu } from '../../enums/dropdown-menu.enum';
|
|
4
4
|
import { StatusTypeEnum } from '../../components/ca-pickup-delivery-block/models';
|
|
5
5
|
export class DropdownMenuContentConditionalItemsHelper {
|
|
6
6
|
// conditional items
|
|
@@ -26,14 +26,14 @@ export class DropdownMenuContentConditionalItemsHelper {
|
|
|
26
26
|
static getPickupDeliveryModifierItems(loadStatus) {
|
|
27
27
|
return [
|
|
28
28
|
{
|
|
29
|
-
title:
|
|
29
|
+
title: eDropdownMenu.EDIT,
|
|
30
30
|
hasBorder: loadStatus !== StatusTypeEnum.PENDING,
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
|
-
title:
|
|
33
|
+
title: eDropdownMenu.DELETE,
|
|
34
34
|
isDisabled: loadStatus !== StatusTypeEnum.PENDING,
|
|
35
35
|
},
|
|
36
36
|
];
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
39
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1jb250ZW50LWNvbmRpdGlvbmFsLWl0ZW1zLmhlbHBlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi91dGlscy9oZWxwZXJzL2Ryb3Bkb3duLW1lbnUtY29udGVudC1jb25kaXRpb25hbC1pdGVtcy5oZWxwZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFFckUsUUFBUTtBQUNSLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUMvRCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sa0RBQWtELENBQUM7QUFLbEYsTUFBTSxPQUFPLHlDQUF5QztJQUNsRCxvQkFBb0I7SUFDcEIsTUFBTSxDQUFDLG1CQUFtQixDQUN0QixtQkFBNkIsRUFDN0Isd0JBQWlDLEVBQ2pDLFNBQXdDO1FBRXhDLE1BQU0saUJBQWlCLEdBQUcsd0JBQXdCO1lBQzlDLENBQUMsQ0FBQyw0QkFBNEIsQ0FBQywwQkFBMEI7WUFDekQsQ0FBQyxDQUFDLDRCQUE0QixDQUFDLCtCQUErQixDQUFDO1FBRW5FLHVEQUF1RDtRQUN2RCxNQUFNLGNBQWMsR0FDaEIsS0FBSyxDQUFDLE9BQU8sQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsTUFBTTtZQUM3RCxDQUFDLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxpQkFBaUIsQ0FBQztZQUNsQyxDQUFDLENBQUMsbUJBQW1CLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO1FBRXZFLDBDQUEwQztRQUMxQyxNQUFNLG9CQUFvQixHQUFHLEdBQUcsRUFBRTtZQUM5QixPQUFPLGNBQWMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRTtnQkFDL0IsTUFBTSxRQUFRLEdBQUcsU0FBUyxFQUFFLElBQUksQ0FDNUIsQ0FBQyxRQUFRLEVBQUUsRUFBRSxDQUFDLFFBQVEsQ0FBQyxLQUFLLEtBQUssSUFBSSxDQUFDLEtBQUssQ0FDOUMsQ0FBQztnQkFFRixPQUFPLFFBQVEsQ0FBQyxDQUFDLENBQUMsRUFBRSxHQUFHLElBQUksRUFBRSxHQUFHLFFBQVEsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7WUFDdEQsQ0FBQyxDQUFDLENBQUM7UUFDUCxDQUFDLENBQUM7UUFFRixPQUFPLG9CQUFvQixFQUFFLENBQUM7SUFDbEMsQ0FBQztJQUVELGlCQUFpQjtJQUNqQiw0Q0FBNEM7SUFDNUMsTUFBTSxDQUFDLDhCQUE4QixDQUNqQyxVQUFrQjtRQUVsQixPQUFPO1lBQ0g7Z0JBQ0ksS0FBSyxFQUFFLGFBQWEsQ0FBQyxJQUFJO2dCQUN6QixTQUFTLEVBQUUsVUFBVSxLQUFLLGNBQWMsQ0FBQyxPQUFPO2FBQ25EO1lBQ0Q7Z0JBQ0ksS0FBSyxFQUFFLGFBQWEsQ0FBQyxNQUFNO2dCQUMzQixVQUFVLEVBQUUsVUFBVSxLQUFLLGNBQWMsQ0FBQyxPQUFPO2FBQ3BEO1NBQ0osQ0FBQztJQUNOLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERyb3Bkb3duTWVudUNvbnRlbnRDb25zdGFudHMgfSBmcm9tICcuLi8uLi91dGlscy9jb25zdGFudHMnO1xuXG4vLyBlbnVtc1xuaW1wb3J0IHsgZURyb3Bkb3duTWVudSB9IGZyb20gJy4uLy4uL2VudW1zL2Ryb3Bkb3duLW1lbnUuZW51bSc7XG5pbXBvcnQgeyBTdGF0dXNUeXBlRW51bSB9IGZyb20gJy4uLy4uL2NvbXBvbmVudHMvY2EtcGlja3VwLWRlbGl2ZXJ5LWJsb2NrL21vZGVscyc7XG5cbi8vIG1vZGVsc1xuaW1wb3J0IHsgSURyb3Bkb3duTWVudUl0ZW0gfSBmcm9tICcuLi8uLi9jb21wb25lbnRzL2NhLWRyb3Bkb3duLW1lbnUvaW50ZXJmYWNlcyc7XG5cbmV4cG9ydCBjbGFzcyBEcm9wZG93bk1lbnVDb250ZW50Q29uZGl0aW9uYWxJdGVtc0hlbHBlciB7XG4gICAgLy8gY29uZGl0aW9uYWwgaXRlbXNcbiAgICBzdGF0aWMgZ2V0Q29uZGl0aW9uYWxJdGVtcyhcbiAgICAgICAgcmVxdWVzdGVkSXRlbVRpdGxlczogc3RyaW5nW10sXG4gICAgICAgIGlzU2hhcmVkQ29uZGl0aW9uYWxJdGVtczogYm9vbGVhbixcbiAgICAgICAgbW9kaWZpZXJzPzogUGFydGlhbDxJRHJvcGRvd25NZW51SXRlbT5bXVxuICAgICk6IElEcm9wZG93bk1lbnVJdGVtW10ge1xuICAgICAgICBjb25zdCBkcm9wZG93bk1lbnVJdGVtcyA9IGlzU2hhcmVkQ29uZGl0aW9uYWxJdGVtc1xuICAgICAgICAgICAgPyBEcm9wZG93bk1lbnVDb250ZW50Q29uc3RhbnRzLkRST1BET1dOX01FTlVfU0hBUkVEX0lURU1TXG4gICAgICAgICAgICA6IERyb3Bkb3duTWVudUNvbnRlbnRDb25zdGFudHMuRFJPUERPV05fTUVOVV9DT05ESVRJT05BTF9JVEVNUztcblxuICAgICAgICAvLyBpZiBubyBzcGVjaWZpYyBpdGVtcyBhcmUgcmVxdWVzdGVkLCByZXR1cm4gYWxsIGl0ZW1zXG4gICAgICAgIGNvbnN0IHJlcXVlc3RlZEl0ZW1zID1cbiAgICAgICAgICAgIEFycmF5LmlzQXJyYXkocmVxdWVzdGVkSXRlbVRpdGxlcykgJiYgIXJlcXVlc3RlZEl0ZW1UaXRsZXMubGVuZ3RoXG4gICAgICAgICAgICAgICAgPyBPYmplY3QudmFsdWVzKGRyb3Bkb3duTWVudUl0ZW1zKVxuICAgICAgICAgICAgICAgIDogcmVxdWVzdGVkSXRlbVRpdGxlcy5tYXAoKHRpdGxlKSA9PiBkcm9wZG93bk1lbnVJdGVtc1t0aXRsZV0pO1xuXG4gICAgICAgIC8vIG1hcCByZXF1ZXN0ZWQgaXRlbSAtIG9wdGlvbmFsIG1vZGlmaWVyc1xuICAgICAgICBjb25zdCBtYXBEcm9wZG93bk1lbnVJdGVtcyA9ICgpID0+IHtcbiAgICAgICAgICAgIHJldHVybiByZXF1ZXN0ZWRJdGVtcy5tYXAoKGl0ZW0pID0+IHtcbiAgICAgICAgICAgICAgICBjb25zdCBtb2RpZmllciA9IG1vZGlmaWVycz8uZmluZChcbiAgICAgICAgICAgICAgICAgICAgKG1vZGlmaWVyKSA9PiBtb2RpZmllci50aXRsZSA9PT0gaXRlbS50aXRsZVxuICAgICAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgICAgICByZXR1cm4gbW9kaWZpZXIgPyB7IC4uLml0ZW0sIC4uLm1vZGlmaWVyIH0gOiBpdGVtO1xuICAgICAgICAgICAgfSk7XG4gICAgICAgIH07XG5cbiAgICAgICAgcmV0dXJuIG1hcERyb3Bkb3duTWVudUl0ZW1zKCk7XG4gICAgfVxuXG4gICAgLy8gbW9kaWZpZXIgaXRlbXNcbiAgICAvLyBkaXNwYXRjaGJvYXJkIC0gcGlja3VwIGRlbGl2ZXJ5IGNvbXBvbmVudFxuICAgIHN0YXRpYyBnZXRQaWNrdXBEZWxpdmVyeU1vZGlmaWVySXRlbXMoXG4gICAgICAgIGxvYWRTdGF0dXM6IHN0cmluZ1xuICAgICk6IFBhcnRpYWw8SURyb3Bkb3duTWVudUl0ZW0+W10ge1xuICAgICAgICByZXR1cm4gW1xuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHRpdGxlOiBlRHJvcGRvd25NZW51LkVESVQsXG4gICAgICAgICAgICAgICAgaGFzQm9yZGVyOiBsb2FkU3RhdHVzICE9PSBTdGF0dXNUeXBlRW51bS5QRU5ESU5HLFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICB0aXRsZTogZURyb3Bkb3duTWVudS5ERUxFVEUsXG4gICAgICAgICAgICAgICAgaXNEaXNhYmxlZDogbG9hZFN0YXR1cyAhPT0gU3RhdHVzVHlwZUVudW0uUEVORElORyxcbiAgICAgICAgICAgIH0sXG4gICAgICAgIF07XG4gICAgfVxufVxuIl19
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DropdownMenuContentConditionalItemsHelper } from '../../utils/helpers';
|
|
2
2
|
// enums
|
|
3
|
-
import {
|
|
3
|
+
import { eDropdownMenu } from '../../enums/dropdown-menu.enum';
|
|
4
4
|
import { StatusTypeEnum } from '../../components/ca-pickup-delivery-block/models';
|
|
5
5
|
export class DropdownMenuContentHelper {
|
|
6
6
|
// payroll - period content payment component
|
|
@@ -9,9 +9,9 @@ export class DropdownMenuContentHelper {
|
|
|
9
9
|
const requestedSharedItems = isOpenPayroll
|
|
10
10
|
? []
|
|
11
11
|
: [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
eDropdownMenu.VIEW_DETAILS,
|
|
13
|
+
eDropdownMenu.SHARE,
|
|
14
|
+
eDropdownMenu.PRINT,
|
|
15
15
|
];
|
|
16
16
|
// items
|
|
17
17
|
const sharedItems = DropdownMenuContentConditionalItemsHelper.getConditionalItems(requestedSharedItems, true);
|
|
@@ -22,7 +22,7 @@ export class DropdownMenuContentHelper {
|
|
|
22
22
|
const modifierItems = DropdownMenuContentConditionalItemsHelper.getPickupDeliveryModifierItems(loadStatus);
|
|
23
23
|
const sharedItems = DropdownMenuContentConditionalItemsHelper.getConditionalItems([], true, modifierItems);
|
|
24
24
|
if (loadStatus === StatusTypeEnum.PENDING) {
|
|
25
|
-
const conditionalItems = DropdownMenuContentConditionalItemsHelper.getConditionalItems([
|
|
25
|
+
const conditionalItems = DropdownMenuContentConditionalItemsHelper.getConditionalItems([eDropdownMenu.UNASSIGN], false);
|
|
26
26
|
return [
|
|
27
27
|
sharedItems[0],
|
|
28
28
|
...conditionalItems,
|
|
@@ -32,4 +32,4 @@ export class DropdownMenuContentHelper {
|
|
|
32
32
|
return [...sharedItems];
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
35
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1jb250ZW50LmhlbHBlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi91dGlscy9oZWxwZXJzL2Ryb3Bkb3duLW1lbnUtY29udGVudC5oZWxwZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHlDQUF5QyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFFaEYsUUFBUTtBQUNSLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUMvRCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sa0RBQWtELENBQUM7QUFLbEYsTUFBTSxPQUFPLHlCQUF5QjtJQUNsQyw2Q0FBNkM7SUFDN0MsTUFBTSxDQUFDLHlCQUF5QixDQUM1QixhQUFzQjtRQUV0QixrQkFBa0I7UUFDbEIsTUFBTSxvQkFBb0IsR0FBRyxhQUFhO1lBQ3RDLENBQUMsQ0FBQyxFQUFFO1lBQ0osQ0FBQyxDQUFDO2dCQUNFLGFBQWEsQ0FBQyxZQUFZO2dCQUMxQixhQUFhLENBQUMsS0FBSztnQkFDakIsYUFBYSxDQUFDLEtBQUs7YUFDdEIsQ0FBQztRQUVSLFFBQVE7UUFDUixNQUFNLFdBQVcsR0FDYix5Q0FBeUMsQ0FBQyxtQkFBbUIsQ0FDekQsb0JBQW9CLEVBQ3BCLElBQUksQ0FDUCxDQUFDO1FBRU4sT0FBTyxDQUFDLEdBQUcsV0FBVyxDQUFDLENBQUM7SUFDNUIsQ0FBQztJQUVELDRDQUE0QztJQUM1QyxNQUFNLENBQUMsZ0NBQWdDLENBQ25DLFVBQWtCO1FBRWxCLE1BQU0sYUFBYSxHQUNmLHlDQUF5QyxDQUFDLDhCQUE4QixDQUNwRSxVQUFVLENBQ2IsQ0FBQztRQUVOLE1BQU0sV0FBVyxHQUNiLHlDQUF5QyxDQUFDLG1CQUFtQixDQUN6RCxFQUFFLEVBQ0YsSUFBSSxFQUNKLGFBQWEsQ0FDaEIsQ0FBQztRQUVOLElBQUksVUFBVSxLQUFLLGNBQWMsQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUN4QyxNQUFNLGdCQUFnQixHQUNsQix5Q0FBeUMsQ0FBQyxtQkFBbUIsQ0FDekQsQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLEVBQ3hCLEtBQUssQ0FDUixDQUFDO1lBRU4sT0FBTztnQkFDSCxXQUFXLENBQUMsQ0FBQyxDQUFDO2dCQUNkLEdBQUcsZ0JBQWdCO2dCQUNuQixHQUFHLFdBQVcsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO2FBQzFCLENBQUM7UUFDTixDQUFDO1FBRUQsT0FBTyxDQUFDLEdBQUcsV0FBVyxDQUFDLENBQUM7SUFDNUIsQ0FBQztDQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRHJvcGRvd25NZW51Q29udGVudENvbmRpdGlvbmFsSXRlbXNIZWxwZXIgfSBmcm9tICcuLi8uLi91dGlscy9oZWxwZXJzJztcblxuLy8gZW51bXNcbmltcG9ydCB7IGVEcm9wZG93bk1lbnUgfSBmcm9tICcuLi8uLi9lbnVtcy9kcm9wZG93bi1tZW51LmVudW0nO1xuaW1wb3J0IHsgU3RhdHVzVHlwZUVudW0gfSBmcm9tICcuLi8uLi9jb21wb25lbnRzL2NhLXBpY2t1cC1kZWxpdmVyeS1ibG9jay9tb2RlbHMnO1xuXG4vLyBtb2RlbHNcbmltcG9ydCB7IElEcm9wZG93bk1lbnVJdGVtIH0gZnJvbSAnLi4vLi4vY29tcG9uZW50cy9jYS1kcm9wZG93bi1tZW51L2ludGVyZmFjZXMnO1xuXG5leHBvcnQgY2xhc3MgRHJvcGRvd25NZW51Q29udGVudEhlbHBlciB7XG4gICAgLy8gcGF5cm9sbCAtIHBlcmlvZCBjb250ZW50IHBheW1lbnQgY29tcG9uZW50XG4gICAgc3RhdGljIGdldFBheXJvbGxEcm9wZG93bkNvbnRlbnQoXG4gICAgICAgIGlzT3BlblBheXJvbGw6IGJvb2xlYW5cbiAgICApOiBJRHJvcGRvd25NZW51SXRlbVtdIHtcbiAgICAgICAgLy8gcmVxdWVzdGVkIGl0ZW1zXG4gICAgICAgIGNvbnN0IHJlcXVlc3RlZFNoYXJlZEl0ZW1zID0gaXNPcGVuUGF5cm9sbFxuICAgICAgICAgICAgPyBbXVxuICAgICAgICAgICAgOiBbXG4gICAgICAgICAgICAgICAgZURyb3Bkb3duTWVudS5WSUVXX0RFVEFJTFMsXG4gICAgICAgICAgICAgICAgZURyb3Bkb3duTWVudS5TSEFSRSxcbiAgICAgICAgICAgICAgICAgIGVEcm9wZG93bk1lbnUuUFJJTlQsXG4gICAgICAgICAgICAgIF07XG5cbiAgICAgICAgLy8gaXRlbXNcbiAgICAgICAgY29uc3Qgc2hhcmVkSXRlbXMgPVxuICAgICAgICAgICAgRHJvcGRvd25NZW51Q29udGVudENvbmRpdGlvbmFsSXRlbXNIZWxwZXIuZ2V0Q29uZGl0aW9uYWxJdGVtcyhcbiAgICAgICAgICAgICAgICByZXF1ZXN0ZWRTaGFyZWRJdGVtcyxcbiAgICAgICAgICAgICAgICB0cnVlXG4gICAgICAgICAgICApO1xuXG4gICAgICAgIHJldHVybiBbLi4uc2hhcmVkSXRlbXNdO1xuICAgIH1cblxuICAgIC8vIGRpc3BhdGNoYm9hcmQgLSBwaWNrdXAgZGVsaXZlcnkgY29tcG9uZW50XG4gICAgc3RhdGljIGdldFBpY2t1cERlbGl2ZXJ5RHJvcGRvd25Db250ZW50KFxuICAgICAgICBsb2FkU3RhdHVzOiBzdHJpbmdcbiAgICApOiBJRHJvcGRvd25NZW51SXRlbVtdIHtcbiAgICAgICAgY29uc3QgbW9kaWZpZXJJdGVtcyA9XG4gICAgICAgICAgICBEcm9wZG93bk1lbnVDb250ZW50Q29uZGl0aW9uYWxJdGVtc0hlbHBlci5nZXRQaWNrdXBEZWxpdmVyeU1vZGlmaWVySXRlbXMoXG4gICAgICAgICAgICAgICAgbG9hZFN0YXR1c1xuICAgICAgICAgICAgKTtcblxuICAgICAgICBjb25zdCBzaGFyZWRJdGVtcyA9XG4gICAgICAgICAgICBEcm9wZG93bk1lbnVDb250ZW50Q29uZGl0aW9uYWxJdGVtc0hlbHBlci5nZXRDb25kaXRpb25hbEl0ZW1zKFxuICAgICAgICAgICAgICAgIFtdLFxuICAgICAgICAgICAgICAgIHRydWUsXG4gICAgICAgICAgICAgICAgbW9kaWZpZXJJdGVtc1xuICAgICAgICAgICAgKTtcblxuICAgICAgICBpZiAobG9hZFN0YXR1cyA9PT0gU3RhdHVzVHlwZUVudW0uUEVORElORykge1xuICAgICAgICAgICAgY29uc3QgY29uZGl0aW9uYWxJdGVtcyA9XG4gICAgICAgICAgICAgICAgRHJvcGRvd25NZW51Q29udGVudENvbmRpdGlvbmFsSXRlbXNIZWxwZXIuZ2V0Q29uZGl0aW9uYWxJdGVtcyhcbiAgICAgICAgICAgICAgICAgICAgW2VEcm9wZG93bk1lbnUuVU5BU1NJR05dLFxuICAgICAgICAgICAgICAgICAgICBmYWxzZVxuICAgICAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgIHJldHVybiBbXG4gICAgICAgICAgICAgICAgc2hhcmVkSXRlbXNbMF0sXG4gICAgICAgICAgICAgICAgLi4uY29uZGl0aW9uYWxJdGVtcyxcbiAgICAgICAgICAgICAgICAuLi5zaGFyZWRJdGVtcy5zbGljZSgxKSxcbiAgICAgICAgICAgIF07XG4gICAgICAgIH1cblxuICAgICAgICByZXR1cm4gWy4uLnNoYXJlZEl0ZW1zXTtcbiAgICB9XG59XG4iXX0=
|
package/esm2022/public-api.mjs
CHANGED
|
@@ -8,7 +8,6 @@ export * from './lib/components/ca-details-dropdown/ca-details-dropdown.componen
|
|
|
8
8
|
export * from './lib/components/ca-filters/ca-filter.component';
|
|
9
9
|
export * from './lib/components/ca-input/ca-input.component';
|
|
10
10
|
export * from './lib/components/ca-input-dropdown/ca-input-dropdown.component';
|
|
11
|
-
export * from './lib/components/ca-input-dropdown-test/ca-input-dropdown-test.component';
|
|
12
11
|
export * from './lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component';
|
|
13
12
|
export * from './lib/components/ca-map/ca-map.component';
|
|
14
13
|
export * from './lib/components/ca-map-dropdown/ca-map-dropdown.component';
|
|
@@ -57,12 +56,12 @@ export * from './lib/components/ca-sort-dropdown/ca-sort-dropdown.component';
|
|
|
57
56
|
export * from './lib/components/ca-sort-dropdown/models';
|
|
58
57
|
export * from './lib/components/ca-sort-dropdown/enums';
|
|
59
58
|
export * from './lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component';
|
|
60
|
-
export * from './lib/components/ca-input-address-dropdown-test/ca-input-address-dropdown-test.component';
|
|
61
59
|
export * from './lib/components/ca-modal-button/ca-modal-button.component';
|
|
62
60
|
export * from './lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component';
|
|
63
61
|
export * from './lib/components/ca-chart-manager/ca-chart-manager.component';
|
|
64
62
|
export * from './lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component';
|
|
65
63
|
export * from './lib/components/ca-map/utils/services';
|
|
66
|
-
export * from './lib/components/ca-input-test/input-test.component';
|
|
64
|
+
export * from './lib/components/ca-input/input-test/input-test.component';
|
|
65
|
+
export * from './lib/components/ca-checkbox/ca-checkbox.component';
|
|
67
66
|
export * from './lib/components/ca-modal-button/enums';
|
|
68
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
67
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsd0ZBQXdGLENBQUM7QUFDdkcsY0FBYyxnRUFBZ0UsQ0FBQztBQUMvRSxjQUFjLG9FQUFvRSxDQUFDO0FBQ25GLGNBQWMsaURBQWlELENBQUM7QUFDaEUsY0FBYyw4Q0FBOEMsQ0FBQztBQUM3RCxjQUFjLGdFQUFnRSxDQUFDO0FBQy9FLGNBQWMsd0VBQXdFLENBQUM7QUFDdkYsY0FBYywwQ0FBMEMsQ0FBQztBQUN6RCxjQUFjLDREQUE0RCxDQUFDO0FBQzNFLGNBQWMsNENBQTRDLENBQUM7QUFDM0QsY0FBYyxnRUFBZ0UsQ0FBQztBQUMvRSxjQUFjLDhGQUE4RixDQUFDO0FBQzdHLGNBQWMsMEdBQTBHLENBQUM7QUFDekgsY0FBYyw4RUFBOEUsQ0FBQztBQUM3RixjQUFjLDhEQUE4RCxDQUFDO0FBQzdFLGNBQWMsNERBQTRELENBQUM7QUFDM0UsY0FBYyxnRkFBZ0YsQ0FBQztBQUMvRixjQUFjLGtEQUFrRCxDQUFDO0FBQ2pFLGNBQWMsd0ZBQXdGLENBQUM7QUFDdkcsY0FBYyxnRUFBZ0UsQ0FBQztBQUMvRSxjQUFjLHdEQUF3RCxDQUFDO0FBQ3ZFLGNBQWMsMEZBQTBGLENBQUM7QUFDekcsY0FBYyw4REFBOEQsQ0FBQztBQUM3RSxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsd0RBQXdELENBQUM7QUFDdkUsY0FBYyx3REFBd0QsQ0FBQztBQUN2RSxjQUFjLDREQUE0RCxDQUFDO0FBQzNFLGNBQWMsd0NBQXdDLENBQUM7QUFDdkQsY0FBYyw2Q0FBNkMsQ0FBQztBQUM1RCxjQUFjLHNFQUFzRSxDQUFDO0FBQ3JGLGNBQWMsMkVBQTJFLENBQUM7QUFDMUYsY0FBYyxzRUFBc0UsQ0FBQztBQUNyRixjQUFjLDZHQUE2RyxDQUFDO0FBQzVILGNBQWMsbUhBQW1ILENBQUM7QUFDbEksY0FBYyxvRUFBb0UsQ0FBQztBQUNuRixjQUFjLDRDQUE0QyxDQUFDO0FBQzNELGNBQWMsMEVBQTBFLENBQUM7QUFDekYsY0FBYyw4Q0FBOEMsQ0FBQztBQUM3RCxjQUFjLDhDQUE4QyxDQUFDO0FBQzdELGNBQWMsOERBQThELENBQUM7QUFDN0UsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsbUhBQW1ILENBQUM7QUFDbEksY0FBYyx1Q0FBdUMsQ0FBQztBQUN0RCxjQUFjLGdFQUFnRSxDQUFDO0FBQy9FLGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYyw0REFBNEQsQ0FBQztBQUMzRSxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYyw4REFBOEQsQ0FBQztBQUM3RSxjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYyxnRkFBZ0YsQ0FBQztBQUMvRixjQUFjLDREQUE0RCxDQUFDO0FBQzNFLGNBQWMsOEVBQThFLENBQUM7QUFFN0YsY0FBYyw4REFBOEQsQ0FBQztBQUM3RSxjQUFjLG9FQUFvRSxDQUFDO0FBRW5GLGNBQWMsd0NBQXdDLENBQUM7QUFDdkQsY0FBYywyREFBMkQsQ0FBQztBQUMxRSxjQUFjLG9EQUFvRCxDQUFDO0FBRW5FLGNBQWMsd0NBQXdDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuICogUHVibGljIEFQSSBTdXJmYWNlIG9mIGNhLWNvbXBvbmVudHNcbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jYS1jb21wb25lbnRzLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLXRydWNrLXRyYWlsZXItcHJvZ3Jlc3MtYmFyL2NhLXRydWNrLXRyYWlsZXItcHJvZ3Jlc3MtYmFyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLWFwcC10b29sdGlwLXYyL2NhLWFwcC10b29sdGlwLXYyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLWRldGFpbHMtZHJvcGRvd24vY2EtZGV0YWlscy1kcm9wZG93bi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1maWx0ZXJzL2NhLWZpbHRlci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1pbnB1dC9jYS1pbnB1dC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1pbnB1dC1kcm9wZG93bi9jYS1pbnB1dC1kcm9wZG93bi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1pbnB1dC1yYWRpb2J1dHRvbnMvY2EtaW5wdXQtcmFkaW9idXR0b25zLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLW1hcC9jYS1tYXAuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtbWFwLWRyb3Bkb3duL2NhLW1hcC1kcm9wZG93bi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1ub3RlL2NhLW5vdGUuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2Etbm90ZS1jb250YWluZXIvY2Etbm90ZS1jb250YWluZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtcGF5cm9sbC1saXN0LXN1bW1hcnktb3ZlcnZpZXcvY2EtcGF5cm9sbC1saXN0LXN1bW1hcnktb3ZlcnZpZXcuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtcGF5cm9sbC1saXN0LXN1bW1hcnktb3ZlcnZpZXctdGFibGUvY2EtcGF5cm9sbC1saXN0LXN1bW1hcnktb3ZlcnZpZXctdGFibGUuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtcGlja3VwLWRlbGl2ZXJ5LWJsb2NrL2NhLXBpY2t1cC1kZWxpdmVyeS1ibG9jay5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1wcm9maWxlLWltYWdlL2NhLXByb2ZpbGUtaW1hZ2UuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtcHJvZ3Jlc3MtYmFyL2NhLXByb2dyZXNzLWJhci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1zZWFyY2gtbXVsdGlwbGUtc3RhdGVzL2NhLXNlYXJjaC1tdWx0aXBsZS1zdGF0ZXMuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2Etc3Bpbm5lci9jYS1zcGlubmVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLXRydWNrLXRyYWlsZXItcHJvZ3Jlc3MtYmFyL2NhLXRydWNrLXRyYWlsZXItcHJvZ3Jlc3MtYmFyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLXBlcmlvZC1jb250ZW50L2NhLXBlcmlvZC1jb250ZW50LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LW5vdGUvY2EtaW5wdXQtbm90ZS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1zZWFyY2gtbXVsdGlwbGUtc3RhdGVzL3V0aWxzL3NlcnZpY2VzL3NlYXJjaC1tdWx0aXBsZS1zdGF0ZXMuc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLXJhdGluZy1yZXZpZXcvY2EtcmF0aW5nLXJldmlldy5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1tYXAvbW9kZWxzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtbWFpbi10YWJsZS9jYS1tYWluLXRhYmxlLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLW1haW4tdGFibGUvbW9kZWxzL21haW4tdGFibGUubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS11cGxvYWQtZmlsZXMvY2EtdXBsb2FkLWZpbGVzLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLXVwbG9hZC1maWxlcy9lbnVtcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLXVwbG9hZC1maWxlcy9pbnRlcmZhY2VzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGVzL2NvbXBvbmVudHMvY2EtdXBsb2FkLWRyb3B6b25lL2VudW1zJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGVzL2NvbXBvbmVudHMvY2EtdXBsb2FkLWRyb3B6b25lL2ludGVyZmFjZXMnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1hY3Rpdml0eS1sb2ctbGlzdC9jYS1hY3Rpdml0eS1sb2ctbGlzdC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1yaWdodC1zaWRlLXBhbmVsL2NvbXBvbmVudHMvY2EtcmlnaHQtc2lkZS1wYW5lbC1tZW51L2NhLXJpZ2h0LXNpZGUtcGFuZWwtbWVudS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1yaWdodC1zaWRlLXBhbmVsL2NvbXBvbmVudHMvY2EtcmlnaHQtc2lkZS1wYW5lbC10b3AtYmFyL2NhLXJpZ2h0LXNpZGUtcGFuZWwtdG9wLWJhci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1yaWdodC1zaWRlLXBhbmVsL2NhLXJpZ2h0LXNpZGUtcGFuZWwuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtdG9kby9jYS10b2RvLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLXByb2dyZXNzLWV4cGlyYXRpb24vY2EtcHJvZ3Jlc3MtZXhwaXJhdGlvbi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1jaGFydC9jYS1jaGFydC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1tb2RhbC9jYS1tb2RhbC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1kcm9wZG93bi1tZW51L2NhLWRyb3Bkb3duLW1lbnUuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtY2hhcnQvZW51bXMnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1jaGFydC9tb2RlbHMnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1yaWdodC1zaWRlLXBhbmVsL2NvbXBvbmVudHMvY2EtcmlnaHQtc2lkZS1wYW5lbC1jb21wYW55L2NhLXJpZ2h0LXNpZGUtcGFuZWwtY29tcGFueS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1tYXAvdXRpbHMvaGVscGVycyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLXByb2dyZXNzLXJhbmdlL2NhLXByb2dyZXNzLXJhbmdlLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLXByb2dyZXNzLXJhbmdlL2VudW1zJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtdG9vbHRpcC1saXN0L2NhLXRvb2x0aXAtbGlzdC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtcGVyaW9kLWNvbnRlbnQvZW51bXMnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1tYXAvdXRpbHMvY29uc3RhbnRzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2Etc29ydC1kcm9wZG93bi9jYS1zb3J0LWRyb3Bkb3duLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLXNvcnQtZHJvcGRvd24vbW9kZWxzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2Etc29ydC1kcm9wZG93bi9lbnVtcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LWFkZHJlc3MtZHJvcGRvd24vY2EtaW5wdXQtYWRkcmVzcy1kcm9wZG93bi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1tb2RhbC1idXR0b24vY2EtbW9kYWwtYnV0dG9uLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLWlucHV0LWRhdGV0aW1lLXBpY2tlci9jYS1pbnB1dC1kYXRldGltZS1waWNrZXIuY29tcG9uZW50JztcblxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jYS1jaGFydC1tYW5hZ2VyL2NhLWNoYXJ0LW1hbmFnZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtY3VzdG9tLXNjcm9sbGJhci9jYS1jdXN0b20tc2Nyb2xsYmFyLmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtbWFwL3V0aWxzL3NlcnZpY2VzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtaW5wdXQvaW5wdXQtdGVzdC9pbnB1dC10ZXN0LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhLWNoZWNrYm94L2NhLWNoZWNrYm94LmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2EtbW9kYWwtYnV0dG9uL2VudW1zJztcbiJdfQ==
|