@seniorsistemas/angular-components 17.31.2 → 18.0.0-develop-ae6477c0
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/README.md +25 -0
- package/accordion/index.d.ts +5 -0
- package/accordion/lib/accordion/accordion.component.d.ts +21 -0
- package/accordion/lib/accordion/accordion.module.d.ts +12 -0
- package/accordion/lib/accordion/components/accordion-panel/accordion-panel.component.d.ts +30 -0
- package/accordion/lib/accordion/models/accordion-button-settings.d.ts +5 -0
- package/accordion/public-api.d.ts +3 -0
- package/alert/index.d.ts +5 -0
- package/alert/lib/alert/alert.component.d.ts +16 -0
- package/alert/lib/alert/alert.module.d.ts +8 -0
- package/alert/public-api.d.ts +2 -0
- package/autocomplete/index.d.ts +5 -0
- package/autocomplete/lib/autocomplete/autocomplete.component.d.ts +251 -0
- package/autocomplete/lib/autocomplete/components/autocomplete-chip/autocomplete-chip.component.d.ts +9 -0
- package/autocomplete/public-api.d.ts +1 -0
- package/badge/index.d.ts +5 -0
- package/badge/lib/badge/badge.component.d.ts +21 -0
- package/badge/lib/badge/badge.module.d.ts +10 -0
- package/badge/lib/badge/types/badge-colors.d.ts +1 -0
- package/badge/lib/badge/types/badge-types.d.ts +1 -0
- package/badge/public-api.d.ts +4 -0
- package/bignumber-input/index.d.ts +5 -0
- package/bignumber-input/lib/bignumber-input/bignumber-input.directive.d.ts +42 -0
- package/bignumber-input/lib/bignumber-input/bignumber-input.module.d.ts +8 -0
- package/bignumber-input/public-api.d.ts +2 -0
- package/breadcrumb/index.d.ts +5 -0
- package/breadcrumb/lib/breadcrumb/breadcrumb.component.d.ts +25 -0
- package/breadcrumb/lib/breadcrumb/breadcrumb.module.d.ts +10 -0
- package/breadcrumb/public-api.d.ts +2 -0
- package/button/index.d.ts +5 -0
- package/button/lib/button/button.component.d.ts +35 -0
- package/button/lib/button/button.module.d.ts +7 -0
- package/button/lib/button/models/button-animations.d.ts +1 -0
- package/button/lib/button/models/button-badge-config.d.ts +6 -0
- package/button/lib/button/models/button-priority.d.ts +1 -0
- package/button/lib/button/models/button-size.d.ts +1 -0
- package/button/lib/button/models/index.d.ts +4 -0
- package/button/public-api.d.ts +3 -0
- package/calendar-mask/index.d.ts +5 -0
- package/calendar-mask/lib/calendar-mask/calendar-mask.directive.d.ts +69 -0
- package/calendar-mask/lib/calendar-mask/calendar-mask.module.d.ts +8 -0
- package/calendar-mask/public-api.d.ts +2 -0
- package/card/index.d.ts +5 -0
- package/card/lib/card/card.component.d.ts +26 -0
- package/card/lib/card/card.module.d.ts +9 -0
- package/card/public-api.d.ts +2 -0
- package/chat/index.d.ts +5 -0
- package/chat/lib/chat/chat.component.d.ts +11 -0
- package/chat/lib/chat/chat.module.d.ts +11 -0
- package/chat/lib/chat/components/chat-message/chat-message.component.d.ts +11 -0
- package/chat/lib/chat/types/chat-message.d.ts +8 -0
- package/chat/public-api.d.ts +3 -0
- package/checkbox/index.d.ts +5 -0
- package/checkbox/lib/checkbox/checkbox.component.d.ts +19 -0
- package/checkbox/public-api.d.ts +1 -0
- package/checkbox-list/index.d.ts +5 -0
- package/checkbox-list/lib/checkbox-list/checkbox-list.component.d.ts +21 -0
- package/checkbox-list/lib/checkbox-list/checkbox-list.module.d.ts +9 -0
- package/checkbox-list/lib/checkbox-list/models/checkbox-list-data.d.ts +5 -0
- package/checkbox-list/lib/checkbox-list/models/checkbox-list-state.d.ts +7 -0
- package/checkbox-list/public-api.d.ts +4 -0
- package/chips/index.d.ts +5 -0
- package/chips/lib/chips/chip-item/chip-item.component.d.ts +25 -0
- package/chips/lib/chips/chips/chips.component.d.ts +66 -0
- package/chips/lib/chips/chips.module.d.ts +12 -0
- package/chips/lib/chips/models/chip-models.d.ts +7 -0
- package/chips/public-api.d.ts +3 -0
- package/code-editor/index.d.ts +5 -0
- package/code-editor/lib/code-editor/code-editor.component.d.ts +31 -0
- package/code-editor/lib/code-editor/code-editor.module.d.ts +9 -0
- package/code-editor/lib/code-editor/core/facades/core-facade.d.ts +34 -0
- package/code-editor/lib/code-editor/core/use-cases/core-linters.d.ts +6 -0
- package/code-editor/lib/code-editor/infra/cores/codemirror-6/codemirror-6-core.d.ts +27 -0
- package/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper.d.ts +15 -0
- package/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.d.ts +6 -0
- package/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.d.ts +12 -0
- package/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.d.ts +8 -0
- package/code-editor/lib/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.d.ts +1 -0
- package/code-editor/lib/code-editor/infra/cores/codemirror-6/models/types/editor-theme.d.ts +3 -0
- package/code-editor/lib/code-editor/infra/utils/custom-http-client/custom-http-client.d.ts +34 -0
- package/code-editor/lib/code-editor/infra/utils/custom-translations/custom-translations-service.d.ts +25 -0
- package/code-editor/lib/code-editor/infra/utils/custom-translations/custom-translations.module.d.ts +16 -0
- package/code-editor/public-api.d.ts +4 -0
- package/collapse-link/index.d.ts +5 -0
- package/collapse-link/lib/collapse-link/collapse-link.component.d.ts +20 -0
- package/collapse-link/lib/collapse-link/collapse-link.module.d.ts +8 -0
- package/collapse-link/public-api.d.ts +2 -0
- package/common/index.d.ts +5 -0
- package/common/lib/angular-components.module.d.ts +13 -0
- package/common/lib/custom-http-client/custom-http-client.d.ts +34 -0
- package/common/lib/custom-http-client/json-response-formatters/format-blob-response.d.ts +6 -0
- package/common/lib/custom-http-client/json-response-formatters/format-json-response.d.ts +6 -0
- package/common/lib/debouce.d.ts +7 -0
- package/common/lib/svg-factory/components/iassist-icon/iassist-icon.component.d.ts +5 -0
- package/common/lib/svg-factory/components/senior-icon/senior-icon.component.d.ts +5 -0
- package/common/lib/svg-factory/components/svg-factory-icons.d.ts +1 -0
- package/common/lib/svg-factory/index.d.ts +2 -0
- package/common/lib/svg-factory/svg-factory.directive.d.ts +15 -0
- package/common/lib/svg-factory/svg-factory.module.d.ts +10 -0
- package/common/public-api.d.ts +5 -0
- package/confirm-dialog/README.md +226 -0
- package/confirm-dialog/index.d.ts +5 -0
- package/confirm-dialog/lib/confirm-dialog.model.d.ts +8 -0
- package/confirm-dialog/lib/confirm-dialog.service.d.ts +8 -0
- package/confirm-dialog/lib/popup-confirm-dialog/popup-confirm-dialog.component.d.ts +7 -0
- package/confirm-dialog/public-api.d.ts +2 -0
- package/control-errors/index.d.ts +5 -0
- package/control-errors/lib/control-errors/control-errors.component.d.ts +26 -0
- package/control-errors/lib/control-errors/control-errors.module.d.ts +9 -0
- package/control-errors/public-api.d.ts +2 -0
- package/country-phone-picker/index.d.ts +5 -0
- package/country-phone-picker/lib/country-phone-picker/country-phone-picker.component.d.ts +67 -0
- package/country-phone-picker/lib/country-phone-picker/country-phone-picker.module.d.ts +11 -0
- package/country-phone-picker/lib/country-phone-picker/country-phone-picker.service.d.ts +13 -0
- package/country-phone-picker/lib/country-phone-picker/resources/countries.d.ts +2 -0
- package/country-phone-picker/public-api.d.ts +6 -0
- package/currency/index.d.ts +5 -0
- package/currency/lib/currency.service.d.ts +12 -0
- package/currency/lib/models/currencies.d.ts +634 -0
- package/currency/lib/types/currency.d.ts +2 -0
- package/currency/public-api.d.ts +3 -0
- package/custom-fields/index.d.ts +5 -0
- package/custom-fields/lib/custom-fields/custom-fields.component.d.ts +86 -0
- package/custom-fields/lib/custom-fields/custom-fields.module.d.ts +13 -0
- package/custom-fields/lib/custom-fields/custom-fields.service.d.ts +20 -0
- package/custom-fields/public-api.d.ts +3 -0
- package/dialog/index.d.ts +5 -0
- package/dialog/lib/src/dialog/dialog.component.d.ts +29 -0
- package/dialog/lib/src/dialog/models/active-dialog.d.ts +11 -0
- package/dialog/lib/src/dialog/models/dialog-models.d.ts +18 -0
- package/dialog/lib/src/dialog/services/dialog.service.d.ts +24 -0
- package/dialog/lib/src/dialog/services/internal-dialog.service.d.ts +10 -0
- package/dialog/public-api.d.ts +4 -0
- package/dynamic-form/index.d.ts +5 -0
- package/dynamic-form/lib/dynamic-form/components/field-label/field-label.component.d.ts +8 -0
- package/dynamic-form/lib/dynamic-form/components/grid/row/row.component.d.ts +15 -0
- package/dynamic-form/lib/dynamic-form/components/lookup/lookup.component.d.ts +164 -0
- package/dynamic-form/lib/dynamic-form/components/lookup/types/default-filter.d.ts +4 -0
- package/dynamic-form/lib/dynamic-form/components/lookup/types/label-options.d.ts +13 -0
- package/dynamic-form/lib/dynamic-form/components/structure/base-structure-component.d.ts +8 -0
- package/dynamic-form/lib/dynamic-form/components/structure/fieldset/fieldset.component.d.ts +12 -0
- package/dynamic-form/lib/dynamic-form/components/structure/section/section.component.d.ts +14 -0
- package/dynamic-form/lib/dynamic-form/configurations/grid/grid.d.ts +14 -0
- package/dynamic-form/lib/dynamic-form/configurations/grid/row.d.ts +8 -0
- package/dynamic-form/lib/dynamic-form/configurations/structure/fieldset.d.ts +10 -0
- package/dynamic-form/lib/dynamic-form/configurations/structure/section.d.ts +20 -0
- package/dynamic-form/lib/dynamic-form/configurations/structure/structure.d.ts +14 -0
- package/dynamic-form/lib/dynamic-form/dynamic-form.component.d.ts +19 -0
- package/dynamic-form/lib/dynamic-form/dynamic-form.d.ts +57 -0
- package/dynamic-form/lib/dynamic-form/dynamic-form.directive.d.ts +34 -0
- package/dynamic-form/lib/dynamic-form/dynamic-form.module.d.ts +83 -0
- package/dynamic-form/lib/dynamic-form/form-field/addon-config.d.ts +7 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/field-type.d.ts +32 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/autocomplete-field.d.ts +30 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/bignumber-field.d.ts +38 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/blob-field.d.ts +43 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/boolean-field.d.ts +29 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/boolean-switch-field.d.ts +11 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/button-field.d.ts +34 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/calendar-field.d.ts +45 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/checkbox-field.d.ts +9 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/chips-field.d.ts +24 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/country-phone-picker-field.d.ts +15 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/currency-field.d.ts +9 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/decimal-field.d.ts +14 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/field.d.ts +96 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/lookup-field.d.ts +97 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/number-field.d.ts +47 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/password-field.d.ts +45 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/profile-picture.d.ts +35 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/radio-button-field.d.ts +23 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/select-field.d.ts +41 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/slider-field.d.ts +32 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/star-rating-field.d.ts +17 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-field.d.ts +24 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-ia-field.d.ts +26 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-field.d.ts +41 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/autocomplete/autocomplete-field.component.d.ts +17 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/base-field-component.d.ts +32 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/bignumber/bignumber-field.component.d.ts +27 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/boolean/boolean-radio-field/boolean-field.component.d.ts +11 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/boolean/boolean-switch-field/boolean-switch-field.component.d.ts +10 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/button-field/button-field.component.d.ts +10 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/calendar/calendar-field.component.d.ts +35 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/checkbox/checkbox-field.component.d.ts +10 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/chips/chips-field.component.d.ts +22 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/country-phone-picker/country-phone-picker-field.component.d.ts +14 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/currency/currency-field.component.d.ts +660 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/editor/editor-field.component.d.ts +10 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/file-upload/file-upload-field.component.d.ts +19 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/lookup/lookup-field.component.d.ts +9 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/number/number-field.component.d.ts +31 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/password/password-field.component.d.ts +22 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/profile-picture/profile-picture-field.component.d.ts +9 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/radio-button/radio-button-field.component.d.ts +17 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/select/select-field.component.d.ts +10 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/slider/slider-field.component.d.ts +25 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/star-rating/star-rating-field.component.d.ts +10 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/text/text-field.component.d.ts +25 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/text-area/text-area-field.component.d.ts +14 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/text-area-ia/text-area-ia-field.component.d.ts +9 -0
- package/dynamic-form/lib/dynamic-form/form-field/form-field.d.ts +192 -0
- package/dynamic-form/lib/dynamic-form/services/dynamic-form-cache.d.ts +12 -0
- package/dynamic-form/public-api.d.ts +43 -0
- package/editable-overlay/index.d.ts +5 -0
- package/editable-overlay/lib/editable-overlay/editable-overlay.directive.d.ts +11 -0
- package/editable-overlay/lib/editable-overlay/editable-overlay.module.d.ts +8 -0
- package/editable-overlay/public-api.d.ts +2 -0
- package/empty-state/index.d.ts +5 -0
- package/empty-state/lib/empty-state/empty-state.component.d.ts +21 -0
- package/empty-state/lib/empty-state/empty-state.module.d.ts +10 -0
- package/empty-state/lib/empty-state/go-back/go-back.component.d.ts +13 -0
- package/empty-state/public-api.d.ts +3 -0
- package/esm2022/accordion/lib/accordion/accordion.component.mjs +90 -0
- package/esm2022/accordion/lib/accordion/accordion.module.mjs +36 -0
- package/esm2022/accordion/lib/accordion/components/accordion-panel/accordion-panel.component.mjs +124 -0
- package/esm2022/accordion/lib/accordion/models/accordion-button-settings.mjs +2 -0
- package/esm2022/accordion/public-api.mjs +4 -0
- package/esm2022/accordion/seniorsistemas-angular-components-accordion.mjs +5 -0
- package/esm2022/alert/lib/alert/alert.component.mjs +44 -0
- package/esm2022/alert/lib/alert/alert.module.mjs +18 -0
- package/esm2022/alert/public-api.mjs +3 -0
- package/esm2022/alert/seniorsistemas-angular-components-alert.mjs +5 -0
- package/esm2022/autocomplete/lib/autocomplete/autocomplete.component.mjs +558 -0
- package/esm2022/autocomplete/lib/autocomplete/components/autocomplete-chip/autocomplete-chip.component.mjs +17 -0
- package/esm2022/autocomplete/public-api.mjs +2 -0
- package/esm2022/autocomplete/seniorsistemas-angular-components-autocomplete.mjs +5 -0
- package/esm2022/badge/lib/badge/badge.component.mjs +46 -0
- package/esm2022/badge/lib/badge/badge.module.mjs +20 -0
- package/esm2022/badge/lib/badge/types/badge-colors.mjs +4 -0
- package/esm2022/badge/lib/badge/types/badge-types.mjs +2 -0
- package/esm2022/badge/public-api.mjs +3 -0
- package/esm2022/badge/seniorsistemas-angular-components-badge.mjs +5 -0
- package/esm2022/bignumber-input/lib/bignumber-input/bignumber-input.directive.mjs +156 -0
- package/esm2022/bignumber-input/lib/bignumber-input/bignumber-input.module.mjs +21 -0
- package/esm2022/bignumber-input/public-api.mjs +3 -0
- package/esm2022/bignumber-input/seniorsistemas-angular-components-bignumber-input.mjs +5 -0
- package/esm2022/breadcrumb/lib/breadcrumb/breadcrumb.component.mjs +105 -0
- package/esm2022/breadcrumb/lib/breadcrumb/breadcrumb.module.mjs +20 -0
- package/esm2022/breadcrumb/public-api.mjs +3 -0
- package/esm2022/breadcrumb/seniorsistemas-angular-components-breadcrumb.mjs +5 -0
- package/esm2022/button/lib/button/button.component.mjs +100 -0
- package/esm2022/button/lib/button/button.module.mjs +18 -0
- package/esm2022/button/lib/button/models/button-animations.mjs +2 -0
- package/esm2022/button/lib/button/models/button-badge-config.mjs +2 -0
- package/esm2022/button/lib/button/models/button-priority.mjs +2 -0
- package/esm2022/button/lib/button/models/button-size.mjs +2 -0
- package/esm2022/button/lib/button/models/index.mjs +2 -0
- package/esm2022/button/public-api.mjs +4 -0
- package/esm2022/button/seniorsistemas-angular-components-button.mjs +5 -0
- package/esm2022/calendar-mask/lib/calendar-mask/calendar-mask.directive.mjs +611 -0
- package/esm2022/calendar-mask/lib/calendar-mask/calendar-mask.module.mjs +18 -0
- package/esm2022/calendar-mask/public-api.mjs +3 -0
- package/esm2022/calendar-mask/seniorsistemas-angular-components-calendar-mask.mjs +5 -0
- package/esm2022/card/lib/card/card.component.mjs +85 -0
- package/esm2022/card/lib/card/card.module.mjs +19 -0
- package/esm2022/card/public-api.mjs +3 -0
- package/esm2022/card/seniorsistemas-angular-components-card.mjs +5 -0
- package/esm2022/chat/lib/chat/chat.component.mjs +29 -0
- package/esm2022/chat/lib/chat/chat.module.mjs +22 -0
- package/esm2022/chat/lib/chat/components/chat-message/chat-message.component.mjs +29 -0
- package/esm2022/chat/lib/chat/types/chat-message.mjs +2 -0
- package/esm2022/chat/public-api.mjs +3 -0
- package/esm2022/chat/seniorsistemas-angular-components-chat.mjs +5 -0
- package/esm2022/checkbox/lib/checkbox/checkbox.component.mjs +67 -0
- package/esm2022/checkbox/public-api.mjs +2 -0
- package/esm2022/checkbox/seniorsistemas-angular-components-checkbox.mjs +5 -0
- package/esm2022/checkbox-list/lib/checkbox-list/checkbox-list.component.mjs +129 -0
- package/esm2022/checkbox-list/lib/checkbox-list/checkbox-list.module.mjs +19 -0
- package/esm2022/checkbox-list/lib/checkbox-list/models/checkbox-list-data.mjs +2 -0
- package/esm2022/checkbox-list/lib/checkbox-list/models/checkbox-list-state.mjs +2 -0
- package/esm2022/checkbox-list/public-api.mjs +3 -0
- package/esm2022/checkbox-list/seniorsistemas-angular-components-checkbox-list.mjs +5 -0
- package/esm2022/chips/lib/chips/chip-item/chip-item.component.mjs +67 -0
- package/esm2022/chips/lib/chips/chips/chips.component.mjs +241 -0
- package/esm2022/chips/lib/chips/chips.module.mjs +22 -0
- package/esm2022/chips/lib/chips/models/chip-models.mjs +2 -0
- package/esm2022/chips/public-api.mjs +3 -0
- package/esm2022/chips/seniorsistemas-angular-components-chips.mjs +5 -0
- package/esm2022/code-editor/lib/code-editor/code-editor.component.mjs +116 -0
- package/esm2022/code-editor/lib/code-editor/code-editor.module.mjs +32 -0
- package/esm2022/code-editor/lib/code-editor/core/facades/core-facade.mjs +91 -0
- package/esm2022/code-editor/lib/code-editor/core/facades/linter-facade.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/core/models/enums/marker-severity.mjs +7 -0
- package/esm2022/code-editor/lib/code-editor/core/models/index.mjs +5 -0
- package/esm2022/code-editor/lib/code-editor/core/models/interfaces/marker.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/core/use-cases/core-linters.mjs +11 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/codemirror-6-core.mjs +113 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/editor-languages.mjs +17 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/json/json.language.mjs +67 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-empty-state.mjs +29 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-loading-state.mjs +29 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper-style.mjs +17 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper.mjs +77 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/index.mjs +4 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-style.mjs +35 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.mjs +334 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.service.mjs +25 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/base-configs.mjs +18 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/grammar.mjs +37 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/completion-types.mjs +10 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/enum-type-order.mjs +8 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/keywords.mjs +12 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/meta-type.mjs +36 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/request-types.mjs +9 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/index.mjs +22 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/completion-Item.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/facade-metadata-name.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/fields-order-by.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/get-facade-metadata-by-path.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-context-metadata-by-id.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-expression-metadata.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-facade-metadata-names.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-expression-metadata.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-context-metadata.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-facade-metadata.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-field-metadata.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-page-request.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/tax-calculation-configs.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation-language-configs.mjs +11 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation.language.mjs +9 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-language-configs.mjs +14 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.mjs +18 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/index.mjs +4 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/types/editor-theme.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/editor-themes.mjs +15 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/autocomplete-tooltip.mjs +61 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/font-style.mjs +39 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/line-counter.mjs +25 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/scrollbars.mjs +18 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-highlight-style.mjs +16 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-style.mjs +13 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-theme.mjs +22 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/convert-markers-to-diagnostics.mjs +15 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/is-current-position-inside-string.mjs +5 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/custom-http-client.mjs +82 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/format-blob-response.mjs +10 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/format-json-response.mjs +9 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/custom-translations-service.mjs +37 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/custom-translations.module.mjs +32 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/models/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/models/interfaces/translations.mjs +2 -0
- package/esm2022/code-editor/lib/code-editor/infra/utils/index.mjs +3 -0
- package/esm2022/code-editor/lib/code-editor/models/enums/languages.mjs +6 -0
- package/esm2022/code-editor/lib/code-editor/models/enums/themes.mjs +5 -0
- package/esm2022/code-editor/lib/code-editor/models/index.mjs +6 -0
- package/esm2022/code-editor/lib/code-editor/models/interfaces/editor-options.mjs +2 -0
- package/esm2022/code-editor/public-api.mjs +6 -0
- package/esm2022/code-editor/seniorsistemas-angular-components-code-editor.mjs +5 -0
- package/esm2022/collapse-link/lib/collapse-link/collapse-link.component.mjs +81 -0
- package/esm2022/collapse-link/lib/collapse-link/collapse-link.module.mjs +18 -0
- package/esm2022/collapse-link/public-api.mjs +3 -0
- package/esm2022/collapse-link/seniorsistemas-angular-components-collapse-link.mjs +5 -0
- package/esm2022/common/lib/angular-components.module.mjs +24 -0
- package/esm2022/common/lib/custom-http-client/custom-http-client.mjs +86 -0
- package/esm2022/common/lib/custom-http-client/json-response-formatters/format-blob-response.mjs +10 -0
- package/esm2022/common/lib/custom-http-client/json-response-formatters/format-json-response.mjs +9 -0
- package/esm2022/common/lib/debouce.mjs +35 -0
- package/esm2022/common/lib/svg-factory/components/iassist-icon/iassist-icon.component.mjs +11 -0
- package/esm2022/common/lib/svg-factory/components/senior-icon/senior-icon.component.mjs +11 -0
- package/esm2022/common/lib/svg-factory/components/svg-factory-icons.mjs +2 -0
- package/esm2022/common/lib/svg-factory/index.mjs +3 -0
- package/esm2022/common/lib/svg-factory/svg-factory.directive.mjs +44 -0
- package/esm2022/common/lib/svg-factory/svg-factory.module.mjs +26 -0
- package/esm2022/common/public-api.mjs +5 -0
- package/esm2022/common/seniorsistemas-angular-components-common.mjs +5 -0
- package/esm2022/confirm-dialog/lib/confirm-dialog.model.mjs +2 -0
- package/esm2022/confirm-dialog/lib/confirm-dialog.service.mjs +34 -0
- package/esm2022/confirm-dialog/lib/popup-confirm-dialog/popup-confirm-dialog.component.mjs +17 -0
- package/esm2022/confirm-dialog/public-api.mjs +2 -0
- package/esm2022/confirm-dialog/seniorsistemas-angular-components-confirm-dialog.mjs +5 -0
- package/esm2022/control-errors/lib/control-errors/control-errors.component.mjs +52 -0
- package/esm2022/control-errors/lib/control-errors/control-errors.module.mjs +19 -0
- package/esm2022/control-errors/public-api.mjs +3 -0
- package/esm2022/control-errors/seniorsistemas-angular-components-control-errors.mjs +5 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.component.mjs +319 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.module.mjs +41 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.service.mjs +42 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/models/country-phone-data.mjs +2 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/models/ordination.mjs +7 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/models/phone-selection-data.mjs +2 -0
- package/esm2022/country-phone-picker/lib/country-phone-picker/resources/countries.mjs +228 -0
- package/esm2022/country-phone-picker/public-api.mjs +5 -0
- package/esm2022/country-phone-picker/seniorsistemas-angular-components-country-phone-picker.mjs +5 -0
- package/esm2022/currency/lib/currency.service.mjs +25 -0
- package/esm2022/currency/lib/models/currencies.mjs +161 -0
- package/esm2022/currency/lib/types/currency.mjs +2 -0
- package/esm2022/currency/public-api.mjs +3 -0
- package/esm2022/currency/seniorsistemas-angular-components-currency.mjs +5 -0
- package/esm2022/custom-fields/lib/custom-fields/custom-fields.component.mjs +685 -0
- package/esm2022/custom-fields/lib/custom-fields/custom-fields.module.mjs +45 -0
- package/esm2022/custom-fields/lib/custom-fields/custom-fields.service.mjs +35 -0
- package/esm2022/custom-fields/lib/custom-fields/models/custom-field-type.mjs +17 -0
- package/esm2022/custom-fields/public-api.mjs +4 -0
- package/esm2022/custom-fields/seniorsistemas-angular-components-custom-fields.mjs +5 -0
- package/esm2022/dialog/lib/src/dialog/dialog.component.mjs +82 -0
- package/esm2022/dialog/lib/src/dialog/models/active-dialog.mjs +18 -0
- package/esm2022/dialog/lib/src/dialog/models/dialog-models.mjs +2 -0
- package/esm2022/dialog/lib/src/dialog/services/dialog.service.mjs +96 -0
- package/esm2022/dialog/lib/src/dialog/services/internal-dialog.service.mjs +29 -0
- package/esm2022/dialog/public-api.mjs +4 -0
- package/esm2022/dialog/seniorsistemas-angular-components-dialog.mjs +5 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/field-label/field-label.component.mjs +20 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/grid/row/row.component.mjs +41 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/lookup.component.mjs +640 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/types/default-filter.mjs +2 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/types/label-options.mjs +2 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/structure/base-structure-component.mjs +2 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/structure/fieldset/fieldset.component.mjs +27 -0
- package/esm2022/dynamic-form/lib/dynamic-form/components/structure/section/section.component.mjs +33 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/dynamic-config.mjs +71 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/dynamic-type.mjs +26 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid/grid.mjs +14 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid/row.mjs +10 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid-type.mjs +5 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/fieldset.mjs +10 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/section.mjs +31 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/structure.mjs +9 -0
- package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure-type.mjs +6 -0
- package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.component.mjs +41 -0
- package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.directive.mjs +107 -0
- package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.mjs +189 -0
- package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.module.mjs +293 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/addon-config.mjs +2 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/field-size.mjs +13 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/field-type.mjs +34 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/autocomplete-field.mjs +24 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/bignumber-field.mjs +37 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/blob-field.mjs +31 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/boolean-field.mjs +30 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/boolean-switch-field.mjs +15 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/button-field.mjs +47 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/calendar-field.mjs +56 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/checkbox-field.mjs +9 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/chips-field.mjs +25 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/country-phone-picker-field.mjs +15 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/currency-field.mjs +14 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/decimal-field.mjs +16 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/editor-field.mjs +15 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/field.mjs +64 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/lookup-field.mjs +66 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/number-field.mjs +38 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/password-field.mjs +33 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/profile-picture.mjs +35 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/radio-button-field.mjs +27 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/select-field.mjs +43 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/slider-field.mjs +30 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/star-rating-field.mjs +17 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-field.mjs +30 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-ia-field.mjs +32 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-field.mjs +38 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/autocomplete/autocomplete-field.component.mjs +37 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/base-field-component.mjs +22 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/bignumber/bignumber-field.component.mjs +124 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/boolean/boolean-radio-field/boolean-field.component.mjs +27 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/boolean/boolean-switch-field/boolean-switch-field.component.mjs +23 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/button-field/button-field.component.mjs +31 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/calendar/calendar-field.component.mjs +118 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/checkbox/checkbox-field.component.mjs +21 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/chips/chips-field.component.mjs +59 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/country-phone-picker/country-phone-picker-field.component.mjs +29 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/currency/currency-field.component.mjs +100 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/editor/editor-field.component.mjs +23 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/file-upload/file-upload-field.component.mjs +56 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/lookup/lookup-field.component.mjs +23 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/number/number-field.component.mjs +121 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/password/password-field.component.mjs +75 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/profile-picture/profile-picture-field.component.mjs +22 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/radio-button/radio-button-field.component.mjs +52 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/select/select-field.component.mjs +24 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/slider/slider-field.component.mjs +103 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/star-rating/star-rating-field.component.mjs +25 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text/text-field.component.mjs +88 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text-area/text-area-field.component.mjs +29 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text-area-ia/text-area-ia-field.component.mjs +22 -0
- package/esm2022/dynamic-form/lib/dynamic-form/form-field/form-field.mjs +243 -0
- package/esm2022/dynamic-form/lib/dynamic-form/services/dynamic-form-cache.mjs +150 -0
- package/esm2022/dynamic-form/public-api.mjs +44 -0
- package/esm2022/dynamic-form/seniorsistemas-angular-components-dynamic-form.mjs +5 -0
- package/esm2022/editable-overlay/lib/editable-overlay/editable-overlay.directive.mjs +44 -0
- package/esm2022/editable-overlay/lib/editable-overlay/editable-overlay.module.mjs +18 -0
- package/esm2022/editable-overlay/public-api.mjs +3 -0
- package/esm2022/editable-overlay/seniorsistemas-angular-components-editable-overlay.mjs +5 -0
- package/esm2022/empty-state/lib/empty-state/empty-state.component.mjs +51 -0
- package/esm2022/empty-state/lib/empty-state/empty-state.module.mjs +22 -0
- package/esm2022/empty-state/lib/empty-state/go-back/go-back.component.mjs +34 -0
- package/esm2022/empty-state/public-api.mjs +4 -0
- package/esm2022/empty-state/seniorsistemas-angular-components-empty-state.mjs +5 -0
- package/esm2022/fieldset/lib/fieldset/fieldset.component.mjs +78 -0
- package/esm2022/fieldset/lib/fieldset/fieldset.models.mjs +2 -0
- package/esm2022/fieldset/lib/fieldset/fieldset.module.mjs +19 -0
- package/esm2022/fieldset/public-api.mjs +3 -0
- package/esm2022/fieldset/seniorsistemas-angular-components-fieldset.mjs +5 -0
- package/esm2022/file-upload/lib/file-upload/file-upload.component.mjs +293 -0
- package/esm2022/file-upload/lib/file-upload/file-upload.module.mjs +42 -0
- package/esm2022/file-upload/lib/file-upload/file-upload.service.mjs +18 -0
- package/esm2022/file-upload/lib/file-upload/models/file-dto.mjs +2 -0
- package/esm2022/file-upload/lib/file-upload/models/file-upload-permissions.mjs +2 -0
- package/esm2022/file-upload/lib/file-upload/models/list-blob-metadata.mjs +2 -0
- package/esm2022/file-upload/lib/file-upload/models/uploadError.mjs +2 -0
- package/esm2022/file-upload/lib/file-upload/models/validate-errors.mjs +2 -0
- package/esm2022/file-upload/public-api.mjs +3 -0
- package/esm2022/file-upload/seniorsistemas-angular-components-file-upload.mjs +5 -0
- package/esm2022/gantt/lib/gantt/components/gantt/arrow.mjs +87 -0
- package/esm2022/gantt/lib/gantt/components/gantt/bar.mjs +294 -0
- package/esm2022/gantt/lib/gantt/components/gantt/gantt-options.mjs +20 -0
- package/esm2022/gantt/lib/gantt/components/gantt/gantt.mjs +812 -0
- package/esm2022/gantt/lib/gantt/components/gantt/popup.mjs +110 -0
- package/esm2022/gantt/lib/gantt/components/gantt/utils/date-utils.mjs +116 -0
- package/esm2022/gantt/lib/gantt/components/gantt/utils/svg-utils.mjs +111 -0
- package/esm2022/gantt/lib/gantt/components/side-table/side-table.component.mjs +32 -0
- package/esm2022/gantt/lib/gantt/gantt.component.mjs +146 -0
- package/esm2022/gantt/lib/gantt/gantt.module.mjs +24 -0
- package/esm2022/gantt/lib/gantt/models/index.mjs +2 -0
- package/esm2022/gantt/lib/gantt/models/options.mjs +2 -0
- package/esm2022/gantt/lib/gantt/models/task.mjs +2 -0
- package/esm2022/gantt/lib/gantt/models/view-mode.mjs +12 -0
- package/esm2022/gantt/public-api.mjs +4 -0
- package/esm2022/gantt/seniorsistemas-angular-components-gantt.mjs +5 -0
- package/esm2022/global-search/lib/global-search/components/dropdown/global-search-dropdown-item.component.mjs +73 -0
- package/esm2022/global-search/lib/global-search/global-search.component.mjs +140 -0
- package/esm2022/global-search/lib/global-search/global-search.module.mjs +78 -0
- package/esm2022/global-search/lib/global-search/types/global-search-size.enum.mjs +2 -0
- package/esm2022/global-search/public-api.mjs +5 -0
- package/esm2022/global-search/seniorsistemas-angular-components-global-search.mjs +5 -0
- package/esm2022/grid-menu/lib/grid-menu/components/grid-menu-item/grid-menu-item.component.mjs +60 -0
- package/esm2022/grid-menu/lib/grid-menu/grid-menu.component.mjs +56 -0
- package/esm2022/grid-menu/lib/grid-menu/grid-menu.module.mjs +20 -0
- package/esm2022/grid-menu/lib/grid-menu/types/grid-menu-item.mjs +2 -0
- package/esm2022/grid-menu/public-api.mjs +4 -0
- package/esm2022/grid-menu/seniorsistemas-angular-components-grid-menu.mjs +5 -0
- package/esm2022/help-popover/lib/help-popover/help-popover/help-popover.component.mjs +84 -0
- package/esm2022/help-popover/lib/help-popover/help-popover.directive.mjs +314 -0
- package/esm2022/help-popover/lib/help-popover/help-popover.module.mjs +25 -0
- package/esm2022/help-popover/lib/help-popover/models/help-popover.models.mjs +2 -0
- package/esm2022/help-popover/public-api.mjs +4 -0
- package/esm2022/help-popover/seniorsistemas-angular-components-help-popover.mjs +5 -0
- package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.mjs +13 -0
- package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-card/ia-insight-card.component.mjs +94 -0
- package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.mjs +59 -0
- package/esm2022/ia-insight/lib/ia-insight/ia-insight.component.mjs +68 -0
- package/esm2022/ia-insight/lib/ia-insight/ia-insight.module.mjs +47 -0
- package/esm2022/ia-insight/lib/ia-insight/models/ia-insight-item.mjs +2 -0
- package/esm2022/ia-insight/lib/ia-insight/models/ia-insight-template-types.mjs +2 -0
- package/esm2022/ia-insight/lib/ia-insight/models/index.mjs +2 -0
- package/esm2022/ia-insight/public-api.mjs +4 -0
- package/esm2022/ia-insight/seniorsistemas-angular-components-ia-insight.mjs +5 -0
- package/esm2022/image-cropper/lib/image-cropper/image-cropper.component.mjs +179 -0
- package/esm2022/image-cropper/lib/image-cropper/image-cropper.module.mjs +23 -0
- package/esm2022/image-cropper/lib/image-cropper/image-cropper.service.mjs +73 -0
- package/esm2022/image-cropper/public-api.mjs +4 -0
- package/esm2022/image-cropper/seniorsistemas-angular-components-image-cropper.mjs +5 -0
- package/esm2022/infinite-scroll/lib/infinite-scroll/infinite-scroll.directive.mjs +28 -0
- package/esm2022/infinite-scroll/lib/infinite-scroll/infinite-scroll.module.mjs +18 -0
- package/esm2022/infinite-scroll/public-api.mjs +3 -0
- package/esm2022/infinite-scroll/seniorsistemas-angular-components-infinite-scroll.mjs +5 -0
- package/esm2022/info-sign/lib/info-sign/components/info-sign/info-sign.component.mjs +17 -0
- package/esm2022/info-sign/lib/info-sign/info-sign.directive.mjs +68 -0
- package/esm2022/info-sign/lib/info-sign/info-sign.module.mjs +20 -0
- package/esm2022/info-sign/public-api.mjs +3 -0
- package/esm2022/info-sign/seniorsistemas-angular-components-info-sign.mjs +5 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.mjs +53 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.mjs +32 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.mjs +85 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.mjs +32 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.mjs +33 -0
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.mjs +32 -0
- package/esm2022/inline-edit/lib/inline-edit/components/index.mjs +8 -0
- package/esm2022/inline-edit/lib/inline-edit/components/inline-edit-item/inline-edit-item.component.mjs +105 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/index.mjs +8 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-calendar-field.mjs +45 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-field.mjs +13 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-lookup-field.mjs +60 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-number-field.mjs +38 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-area-field.mjs +15 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-area-ia-field.mjs +7 -0
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-field.mjs +7 -0
- package/esm2022/inline-edit/lib/inline-edit/inline-edit.component.mjs +66 -0
- package/esm2022/inline-edit/lib/inline-edit/inline-edit.module.mjs +102 -0
- package/esm2022/inline-edit/lib/inline-edit/types/addon-config.mjs +2 -0
- package/esm2022/inline-edit/public-api.mjs +4 -0
- package/esm2022/inline-edit/seniorsistemas-angular-components-inline-edit.mjs +5 -0
- package/esm2022/interactive-content/lib/interactive-content/interactive-content.directive.mjs +63 -0
- package/esm2022/interactive-content/public-api.mjs +2 -0
- package/esm2022/interactive-content/seniorsistemas-angular-components-interactive-content.mjs +5 -0
- package/esm2022/kanban/lib/kanban/components/kanban-column/kanban-column.component.mjs +100 -0
- package/esm2022/kanban/lib/kanban/components/kanban-item/kanban-item.component.mjs +62 -0
- package/esm2022/kanban/lib/kanban/components/kanban-item-dragging/kanban-item-dragging.component.mjs +17 -0
- package/esm2022/kanban/lib/kanban/kanban-event.service.mjs +26 -0
- package/esm2022/kanban/lib/kanban/kanban.component.mjs +219 -0
- package/esm2022/kanban/lib/kanban/kanban.module.mjs +56 -0
- package/esm2022/kanban/lib/kanban/types/index.mjs +2 -0
- package/esm2022/kanban/lib/kanban/types/kanban-data.mjs +2 -0
- package/esm2022/kanban/lib/kanban/types/kanban-template-types.mjs +2 -0
- package/esm2022/kanban/public-api.mjs +3 -0
- package/esm2022/kanban/seniorsistemas-angular-components-kanban.mjs +5 -0
- package/esm2022/label-value/lib/label-value/label-value.component.mjs +35 -0
- package/esm2022/label-value/lib/label-value/label-value.module.mjs +22 -0
- package/esm2022/label-value/lib/label-value/types/label-value-configuration.mjs +2 -0
- package/esm2022/label-value/public-api.mjs +3 -0
- package/esm2022/label-value/seniorsistemas-angular-components-label-value.mjs +5 -0
- package/esm2022/lib/locale/fallback.mjs +334 -0
- package/esm2022/loading-state/lib/loading-state/components/dots-indicator/dots-indicator.components.mjs +11 -0
- package/esm2022/loading-state/lib/loading-state/components/loading-state-indicators.mjs +6 -0
- package/esm2022/loading-state/lib/loading-state/components/logo-indicator/logo-indicator.component.mjs +12 -0
- package/esm2022/loading-state/lib/loading-state/loading-state.component.mjs +74 -0
- package/esm2022/loading-state/lib/loading-state/loading-state.directive.mjs +62 -0
- package/esm2022/loading-state/lib/loading-state/loading-state.module.mjs +30 -0
- package/esm2022/loading-state/public-api.mjs +5 -0
- package/esm2022/loading-state/seniorsistemas-angular-components-loading-state.mjs +5 -0
- package/esm2022/locale/lib/locale/locale.module.mjs +85 -0
- package/esm2022/locale/lib/locale/locale.service.mjs +87 -0
- package/esm2022/locale/lib/locale/options/calendar.mjs +24 -0
- package/esm2022/locale/lib/locale/options/index.mjs +27 -0
- package/esm2022/locale/lib/locale/options/number.mjs +9 -0
- package/esm2022/locale/lib/locale/pipes/localized-bignumber-impure.pipe.mjs +18 -0
- package/esm2022/locale/lib/locale/pipes/localized-bignumber.pipe.mjs +38 -0
- package/esm2022/locale/lib/locale/pipes/localized-currency-impure.pipe.mjs +21 -0
- package/esm2022/locale/lib/locale/pipes/localized-currency.pipe.mjs +53 -0
- package/esm2022/locale/lib/locale/pipes/localized-date-impure.pipe.mjs +15 -0
- package/esm2022/locale/lib/locale/pipes/localized-date.pipe.mjs +23 -0
- package/esm2022/locale/lib/locale/pipes/localized-number.pipe.mjs +31 -0
- package/esm2022/locale/lib/locale/pipes/localized-time-impure.pipe.mjs +15 -0
- package/esm2022/locale/lib/locale/pipes/localized-time.pipe.mjs +23 -0
- package/esm2022/locale/public-api.mjs +13 -0
- package/esm2022/locale/seniorsistemas-angular-components-locale.mjs +5 -0
- package/esm2022/localized-number-input/lib/localized-number-input/localized-number-input.directive.mjs +63 -0
- package/esm2022/localized-number-input/lib/localized-number-input/localized-number-input.module.mjs +18 -0
- package/esm2022/localized-number-input/public-api.mjs +3 -0
- package/esm2022/localized-number-input/seniorsistemas-angular-components-localized-number-input.mjs +5 -0
- package/esm2022/mask/lib/mask/mask-formatter.module.mjs +16 -0
- package/esm2022/mask/lib/mask/mask-formatter.pipe.mjs +65 -0
- package/esm2022/mask/public-api.mjs +3 -0
- package/esm2022/mask/seniorsistemas-angular-components-mask.mjs +5 -0
- package/esm2022/mouse-events/lib/mouse-events/double-click.directive.mjs +37 -0
- package/esm2022/mouse-events/lib/mouse-events/long-press.directive.mjs +51 -0
- package/esm2022/mouse-events/lib/mouse-events/mouse-events.module.mjs +27 -0
- package/esm2022/mouse-events/public-api.mjs +4 -0
- package/esm2022/mouse-events/seniorsistemas-angular-components-mouse-events.mjs +5 -0
- package/esm2022/navigation-button/lib/navigation-button/models/index.mjs +2 -0
- package/esm2022/navigation-button/lib/navigation-button/models/navigation-button-item.mjs +2 -0
- package/esm2022/navigation-button/lib/navigation-button/models/navigation-button-step-changed-info.mjs +2 -0
- package/esm2022/navigation-button/lib/navigation-button/navigation-button.component.mjs +134 -0
- package/esm2022/navigation-button/lib/navigation-button/navigation-button.module.mjs +20 -0
- package/esm2022/navigation-button/public-api.mjs +4 -0
- package/esm2022/navigation-button/seniorsistemas-angular-components-navigation-button.mjs +5 -0
- package/esm2022/number-input/lib/number-input/number-input.directive.mjs +164 -0
- package/esm2022/number-input/lib/number-input/number-input.module.mjs +21 -0
- package/esm2022/number-input/public-api.mjs +3 -0
- package/esm2022/number-input/seniorsistemas-angular-components-number-input.mjs +5 -0
- package/esm2022/numeric/lib/numeric.module.mjs +18 -0
- package/esm2022/numeric/lib/numeric.pipe.mjs +29 -0
- package/esm2022/numeric/lib/numeric.service.mjs +92 -0
- package/esm2022/numeric/public-api.mjs +4 -0
- package/esm2022/numeric/seniorsistemas-angular-components-numeric.mjs +5 -0
- package/esm2022/object-card/lib/object-card/elements/field/object-card-field.component.mjs +51 -0
- package/esm2022/object-card/lib/object-card/elements/main/object-card-main.component.mjs +87 -0
- package/esm2022/object-card/lib/object-card/object-card.component.mjs +146 -0
- package/esm2022/object-card/lib/object-card/object-card.module.mjs +24 -0
- package/esm2022/object-card/public-api.mjs +5 -0
- package/esm2022/object-card/seniorsistemas-angular-components-object-card.mjs +5 -0
- package/esm2022/paginator/lib/models/paginator.models.mjs +2 -0
- package/esm2022/paginator/lib/paginator/paginator.component.mjs +138 -0
- package/esm2022/paginator/public-api.mjs +2 -0
- package/esm2022/paginator/seniorsistemas-angular-components-paginator.mjs +5 -0
- package/esm2022/panel/lib/panel/panel.component.mjs +91 -0
- package/esm2022/panel/lib/panel/panel.module.mjs +20 -0
- package/esm2022/panel/public-api.mjs +3 -0
- package/esm2022/panel/seniorsistemas-angular-components-panel.mjs +5 -0
- package/esm2022/password-strength/lib/password-strength/password-strength.component.mjs +92 -0
- package/esm2022/password-strength/lib/password-strength/password-strength.directive.mjs +210 -0
- package/esm2022/password-strength/lib/password-strength/password-strength.module.mjs +19 -0
- package/esm2022/password-strength/lib/password-strength/types/password-positions.mjs +2 -0
- package/esm2022/password-strength/lib/password-strength/types/password-strengths.mjs +2 -0
- package/esm2022/password-strength/public-api.mjs +4 -0
- package/esm2022/password-strength/seniorsistemas-angular-components-password-strength.mjs +5 -0
- package/esm2022/picklist/lib/picklist/picklist.component.mjs +299 -0
- package/esm2022/picklist/lib/picklist/picklist.module.mjs +36 -0
- package/esm2022/picklist/lib/picklist/types/index.mjs +2 -0
- package/esm2022/picklist/lib/picklist/types/picklist-item.mjs +2 -0
- package/esm2022/picklist/lib/picklist/types/picklist-template-types.mjs +2 -0
- package/esm2022/picklist/public-api.mjs +5 -0
- package/esm2022/picklist/seniorsistemas-angular-components-picklist.mjs +5 -0
- package/esm2022/product-header/lib/product-header/product-header.component.mjs +44 -0
- package/esm2022/product-header/lib/product-header/product-header.module.mjs +20 -0
- package/esm2022/product-header/public-api.mjs +3 -0
- package/esm2022/product-header/seniorsistemas-angular-components-product-header.mjs +5 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/confirmation-texts.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/cropper-labels-config.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/file-validation-errors.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/index.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/profile-picture-picker-data.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/profile-picture-picker.component.mjs +277 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/profile-picture-picker.module.mjs +25 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/validators/index.mjs +2 -0
- package/esm2022/profile-picture-picker/lib/profile-picture-picker/validators/validators.mjs +28 -0
- package/esm2022/profile-picture-picker/public-api.mjs +4 -0
- package/esm2022/profile-picture-picker/seniorsistemas-angular-components-profile-picture-picker.mjs +5 -0
- package/esm2022/progressbar/lib/progressbar/components/progressbar-determinate/progressbar-determinate.component.mjs +60 -0
- package/esm2022/progressbar/lib/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.mjs +19 -0
- package/esm2022/progressbar/lib/progressbar/progressbar.component.mjs +57 -0
- package/esm2022/progressbar/lib/progressbar/progressbar.module.mjs +21 -0
- package/esm2022/progressbar/lib/progressbar/types/index.mjs +2 -0
- package/esm2022/progressbar/lib/progressbar/types/progressbar-colors.mjs +2 -0
- package/esm2022/progressbar/lib/progressbar/types/progressbar-mode.mjs +2 -0
- package/esm2022/progressbar/public-api.mjs +4 -0
- package/esm2022/progressbar/seniorsistemas-angular-components-progressbar.mjs +5 -0
- package/esm2022/public-api.mjs +2 -0
- package/esm2022/radio-button/lib/radio-button/radio-button.component.mjs +82 -0
- package/esm2022/radio-button/lib/radio-button-group/models/radio-button-group.models.mjs +2 -0
- package/esm2022/radio-button/lib/radio-button-group/radio-button-group.component.mjs +62 -0
- package/esm2022/radio-button/lib/services/radio-button-registry.service.mjs +38 -0
- package/esm2022/radio-button/public-api.mjs +3 -0
- package/esm2022/radio-button/seniorsistemas-angular-components-radio-button.mjs +5 -0
- package/esm2022/rating-scale/lib/rating-scale/models/index.mjs +2 -0
- package/esm2022/rating-scale/lib/rating-scale/models/rating-scale-node.mjs +2 -0
- package/esm2022/rating-scale/lib/rating-scale/rating-scale.component.mjs +54 -0
- package/esm2022/rating-scale/lib/rating-scale/rating-scale.module.mjs +24 -0
- package/esm2022/rating-scale/public-api.mjs +3 -0
- package/esm2022/rating-scale/seniorsistemas-angular-components-rating-scale.mjs +5 -0
- package/esm2022/select/lib/select/components/select-option/select-option.component.mjs +27 -0
- package/esm2022/select/lib/select/select.component.mjs +610 -0
- package/esm2022/select/public-api.mjs +2 -0
- package/esm2022/select/seniorsistemas-angular-components-select.mjs +5 -0
- package/esm2022/select-button/lib/select-button/components/select-button-item/select-button-item.component.mjs +28 -0
- package/esm2022/select-button/lib/select-button/models/select-button-item.mjs +2 -0
- package/esm2022/select-button/lib/select-button/select-button.component.mjs +122 -0
- package/esm2022/select-button/lib/select-button/select-button.module.mjs +23 -0
- package/esm2022/select-button/public-api.mjs +3 -0
- package/esm2022/select-button/seniorsistemas-angular-components-select-button.mjs +5 -0
- package/esm2022/seniorsistemas-angular-components.mjs +5 -0
- package/esm2022/shared/lib/shared/border-button/border-button.component.mjs +19 -0
- package/esm2022/shared/lib/shared/border-button/border-button.module.mjs +19 -0
- package/esm2022/shared/lib/shared/helpers.mjs +31 -0
- package/esm2022/shared/lib/shared/models/border-button-options.mjs +2 -0
- package/esm2022/shared/lib/shared/models/severities.mjs +9 -0
- package/esm2022/shared/public-api.mjs +5 -0
- package/esm2022/shared/seniorsistemas-angular-components-shared.mjs +5 -0
- package/esm2022/sidebar/lib/sidebar/sidebar.component.mjs +114 -0
- package/esm2022/sidebar/lib/sidebar/sidebar.module.mjs +20 -0
- package/esm2022/sidebar/public-api.mjs +3 -0
- package/esm2022/sidebar/seniorsistemas-angular-components-sidebar.mjs +5 -0
- package/esm2022/slide-panel/lib/slide-panel/slide-panel.component.mjs +137 -0
- package/esm2022/slide-panel/lib/slide-panel/slide-panel.module.mjs +20 -0
- package/esm2022/slide-panel/lib/slide-panel/slide-panel.service.mjs +26 -0
- package/esm2022/slide-panel/public-api.mjs +4 -0
- package/esm2022/slide-panel/seniorsistemas-angular-components-slide-panel.mjs +5 -0
- package/esm2022/slider/lib/slider/slider.component.mjs +601 -0
- package/esm2022/slider/lib/slider/slider.module.mjs +19 -0
- package/esm2022/slider/public-api.mjs +3 -0
- package/esm2022/slider/seniorsistemas-angular-components-slider.mjs +5 -0
- package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition/speech-recognition.component.mjs +217 -0
- package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition.module.mjs +24 -0
- package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition.service.mjs +146 -0
- package/esm2022/speech-recognition/lib/speech-recognition/text-to-speech.service.mjs +81 -0
- package/esm2022/speech-recognition/public-api.mjs +5 -0
- package/esm2022/speech-recognition/seniorsistemas-angular-components-speech-recognition.mjs +5 -0
- package/esm2022/split-button/lib/split-button/models/index.mjs +2 -0
- package/esm2022/split-button/lib/split-button/models/split-button-option.mjs +2 -0
- package/esm2022/split-button/lib/split-button/models/split-button-type.mjs +2 -0
- package/esm2022/split-button/lib/split-button/split-button.component.mjs +64 -0
- package/esm2022/split-button/lib/split-button/split-button.module.mjs +18 -0
- package/esm2022/split-button/public-api.mjs +4 -0
- package/esm2022/split-button/seniorsistemas-angular-components-split-button.mjs +5 -0
- package/esm2022/star-rating/public-api.mjs +2 -0
- package/esm2022/star-rating/seniorsistemas-angular-components-star-rating.mjs +5 -0
- package/esm2022/star-rating/star-rating/star-rating-models.mjs +2 -0
- package/esm2022/star-rating/star-rating/star-rating.component.mjs +63 -0
- package/esm2022/stats-card/lib/stats-card/stats-card.component.mjs +119 -0
- package/esm2022/stats-card/lib/stats-card/stats-card.module.mjs +19 -0
- package/esm2022/stats-card/public-api.mjs +3 -0
- package/esm2022/stats-card/seniorsistemas-angular-components-stats-card.mjs +5 -0
- package/esm2022/steps/lib/steps/steps.component.mjs +122 -0
- package/esm2022/steps/lib/steps/steps.module.mjs +19 -0
- package/esm2022/steps/public-api.mjs +3 -0
- package/esm2022/steps/seniorsistemas-angular-components-steps.mjs +5 -0
- package/esm2022/structure/lib/structure/footer.component.mjs +14 -0
- package/esm2022/structure/lib/structure/header.component.mjs +14 -0
- package/esm2022/structure/lib/structure/structure.module.mjs +19 -0
- package/esm2022/structure/public-api.mjs +5 -0
- package/esm2022/structure/seniorsistemas-angular-components-structure.mjs +5 -0
- package/esm2022/switch/lib/switch/switch.component.mjs +93 -0
- package/esm2022/switch/lib/switch/switch.module.mjs +18 -0
- package/esm2022/switch/public-api.mjs +3 -0
- package/esm2022/switch/seniorsistemas-angular-components-switch.mjs +5 -0
- package/esm2022/table/lib/locale-utils.mjs +15 -0
- package/esm2022/table/lib/table/export-utils.mjs +112 -0
- package/esm2022/table/lib/table/navigation/navigation.directive.mjs +130 -0
- package/esm2022/table/lib/table/row-toggler/row-toggler.directive.mjs +38 -0
- package/esm2022/table/lib/table/table-column/index.mjs +3 -0
- package/esm2022/table/lib/table/table-column/models/badge-column.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/badge-configs.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/column-colors.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/column-values.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/column.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/dynamic-editable-grid.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/enum-badge-colors.mjs +10 -0
- package/esm2022/table/lib/table/table-column/models/enum-column-field-type.mjs +13 -0
- package/esm2022/table/lib/table/table-column/models/index.mjs +11 -0
- package/esm2022/table/lib/table/table-column/models/locale-options.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/models/number-locale-options.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-column/table-columns.component.mjs +299 -0
- package/esm2022/table/lib/table/table-paging/index.mjs +3 -0
- package/esm2022/table/lib/table/table-paging/models/custom-action.interface.mjs +2 -0
- package/esm2022/table/lib/table/table-paging/models/index.mjs +2 -0
- package/esm2022/table/lib/table/table-paging/table-paging.component.mjs +325 -0
- package/esm2022/table/lib/table/table.module.mjs +27 -0
- package/esm2022/table/public-api.mjs +6 -0
- package/esm2022/table/seniorsistemas-angular-components-table.mjs +5 -0
- package/esm2022/table-header/lib/table-header/table-header-checkbox.component.mjs +151 -0
- package/esm2022/table-header/lib/table-header/table-header-checkox.module.mjs +20 -0
- package/esm2022/table-header/public-api.mjs +3 -0
- package/esm2022/table-header/seniorsistemas-angular-components-table-header.mjs +5 -0
- package/esm2022/tabs/lib/tab-item/tab-item.component.mjs +36 -0
- package/esm2022/tabs/lib/tabs/tabs.component.mjs +51 -0
- package/esm2022/tabs/public-api.mjs +3 -0
- package/esm2022/tabs/seniorsistemas-angular-components-tabs.mjs +5 -0
- package/esm2022/template/lib/template/template.directive.mjs +22 -0
- package/esm2022/template/lib/template/template.module.mjs +17 -0
- package/esm2022/template/public-api.mjs +3 -0
- package/esm2022/template/seniorsistemas-angular-components-template.mjs +5 -0
- package/esm2022/text-area/lib/text-area/text-area.component.mjs +116 -0
- package/esm2022/text-area/lib/text-area.module.mjs +35 -0
- package/esm2022/text-area/public-api.mjs +3 -0
- package/esm2022/text-area/seniorsistemas-angular-components-text-area.mjs +5 -0
- package/esm2022/text-area-ia/lib/services/IAssist/iassist.service.mjs +77 -0
- package/esm2022/text-area-ia/lib/services/IAssist/models/iassist-input-data.mjs +3 -0
- package/esm2022/text-area-ia/lib/services/IAssist/models/iassist-response.mjs +3 -0
- package/esm2022/text-area-ia/lib/text-area-ia/text-area-ia.component.mjs +150 -0
- package/esm2022/text-area-ia/lib/text-area-ia/text-area-ia.module.mjs +50 -0
- package/esm2022/text-area-ia/public-api.mjs +3 -0
- package/esm2022/text-area-ia/seniorsistemas-angular-components-text-area-ia.mjs +5 -0
- package/esm2022/thumbnail/lib/thumbnail/thumbnail-size.mjs +2 -0
- package/esm2022/thumbnail/lib/thumbnail/thumbnail.component.mjs +77 -0
- package/esm2022/thumbnail/lib/thumbnail/thumbnail.module.mjs +20 -0
- package/esm2022/thumbnail/lib/thumbnail/thumbnail.service.mjs +62 -0
- package/esm2022/thumbnail/public-api.mjs +4 -0
- package/esm2022/thumbnail/seniorsistemas-angular-components-thumbnail.mjs +5 -0
- package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.mjs +17 -0
- package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.mjs +42 -0
- package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/thumbnail-item.component.mjs +64 -0
- package/esm2022/thumbnails/lib/thumbnails/models/thumbnails-item.mjs +2 -0
- package/esm2022/thumbnails/lib/thumbnails/thumbnails.component.mjs +48 -0
- package/esm2022/thumbnails/lib/thumbnails/thumbnails.module.mjs +24 -0
- package/esm2022/thumbnails/public-api.mjs +3 -0
- package/esm2022/thumbnails/seniorsistemas-angular-components-thumbnails.mjs +5 -0
- package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu/tiered-menu.component.mjs +303 -0
- package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-divider/tiered-menu-divider.component.mjs +11 -0
- package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-item/tiered-menu-item.component.mjs +73 -0
- package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-nested/tiered-menu-nested.component.mjs +179 -0
- package/esm2022/tiered-menu/lib/tiered-menu/models/index.mjs +2 -0
- package/esm2022/tiered-menu/lib/tiered-menu/models/tiered-menu-item-data.mjs +2 -0
- package/esm2022/tiered-menu/lib/tiered-menu/models/tiered-menu-item-internal-data.mjs +2 -0
- package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.event.service.mjs +17 -0
- package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.global.service.mjs +11 -0
- package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.service.mjs +54 -0
- package/esm2022/tiered-menu/lib/tiered-menu/tiered-menu.directive.mjs +234 -0
- package/esm2022/tiered-menu/lib/tiered-menu/tiered-menu.module.mjs +34 -0
- package/esm2022/tiered-menu/public-api.mjs +6 -0
- package/esm2022/tiered-menu/seniorsistemas-angular-components-tiered-menu.mjs +5 -0
- package/esm2022/tile/lib/tile/tile.component.mjs +65 -0
- package/esm2022/tile/lib/tile/tile.module.mjs +20 -0
- package/esm2022/tile/public-api.mjs +3 -0
- package/esm2022/tile/seniorsistemas-angular-components-tile.mjs +5 -0
- package/esm2022/timeline/lib/timeline/components/horizontal-timeline/horizontal-timeline.component.mjs +24 -0
- package/esm2022/timeline/lib/timeline/components/horizontal-timeline/horizontal-timeline.module.mjs +20 -0
- package/esm2022/timeline/lib/timeline/components/timeline-icon-item/timeline-icon-item.component.mjs +26 -0
- package/esm2022/timeline/lib/timeline/components/timeline-icon-item/timeline-icon-item.module.mjs +19 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.mjs +21 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.mjs +33 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/range-line/range-line.component.mjs +11 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.mjs +29 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/vertical-timeline.component.mjs +60 -0
- package/esm2022/timeline/lib/timeline/components/vertical-timeline/vertical-timeline.module.mjs +33 -0
- package/esm2022/timeline/lib/timeline/models/timeline-item-severity.mjs +7 -0
- package/esm2022/timeline/lib/timeline/models/timeline-item-size.mjs +6 -0
- package/esm2022/timeline/lib/timeline/models/timeline-item.mjs +44 -0
- package/esm2022/timeline/lib/timeline/timeline.component.mjs +66 -0
- package/esm2022/timeline/lib/timeline/timeline.module.mjs +32 -0
- package/esm2022/timeline/public-api.mjs +6 -0
- package/esm2022/timeline/seniorsistemas-angular-components-timeline.mjs +5 -0
- package/esm2022/toast/lib/toast/toast.component.mjs +46 -0
- package/esm2022/toast/lib/toast/toast.module.mjs +17 -0
- package/esm2022/toast/lib/toast/toast.service.mjs +68 -0
- package/esm2022/toast/lib/toast/types/toast.mjs +2 -0
- package/esm2022/toast/public-api.mjs +4 -0
- package/esm2022/toast/seniorsistemas-angular-components-toast.mjs +5 -0
- package/esm2022/token-list/lib/token-list/models/index.mjs +2 -0
- package/esm2022/token-list/lib/token-list/models/token.mjs +2 -0
- package/esm2022/token-list/lib/token-list/token-list.component.mjs +42 -0
- package/esm2022/token-list/lib/token-list/token-list.module.mjs +18 -0
- package/esm2022/token-list/public-api.mjs +4 -0
- package/esm2022/token-list/seniorsistemas-angular-components-token-list.mjs +5 -0
- package/esm2022/tooltip/lib/tooltip/models/mobile-behavior.mjs +2 -0
- package/esm2022/tooltip/lib/tooltip/models/tooltip-event.mjs +2 -0
- package/esm2022/tooltip/lib/tooltip/models/tooltip-position.mjs +2 -0
- package/esm2022/tooltip/lib/tooltip/tooltip.component.mjs +18 -0
- package/esm2022/tooltip/lib/tooltip/tooltip.directive.mjs +339 -0
- package/esm2022/tooltip/lib/tooltip/tooltip.module.mjs +19 -0
- package/esm2022/tooltip/public-api.mjs +3 -0
- package/esm2022/tooltip/seniorsistemas-angular-components-tooltip.mjs +5 -0
- package/esm2022/tree/lib/tree/Models/tree.models.mjs +2 -0
- package/esm2022/tree/lib/tree/components/tree-node-item/tree-node-item.component.mjs +157 -0
- package/esm2022/tree/lib/tree/tree.component.mjs +238 -0
- package/esm2022/tree/lib/tree/tree.module.mjs +22 -0
- package/esm2022/tree/public-api.mjs +3 -0
- package/esm2022/tree/seniorsistemas-angular-components-tree.mjs +5 -0
- package/esm2022/utils/lib/utils/breakpoints.mjs +11 -0
- package/esm2022/utils/lib/utils/utils.mjs +104 -0
- package/esm2022/utils/public-api.mjs +3 -0
- package/esm2022/utils/seniorsistemas-angular-components-utils.mjs +5 -0
- package/esm2022/workspace-switch/lib/workspace-switch/models/index.mjs +2 -0
- package/esm2022/workspace-switch/lib/workspace-switch/models/workspace.mjs +2 -0
- package/esm2022/workspace-switch/lib/workspace-switch/workspace-switch.component.mjs +137 -0
- package/esm2022/workspace-switch/lib/workspace-switch/workspace-switch.module.mjs +18 -0
- package/esm2022/workspace-switch/public-api.mjs +3 -0
- package/esm2022/workspace-switch/seniorsistemas-angular-components-workspace-switch.mjs +5 -0
- package/fesm2022/seniorsistemas-angular-components-accordion.mjs +250 -0
- package/fesm2022/seniorsistemas-angular-components-accordion.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-alert.mjs +66 -0
- package/fesm2022/seniorsistemas-angular-components-alert.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-autocomplete.mjs +579 -0
- package/fesm2022/seniorsistemas-angular-components-autocomplete.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-badge.mjs +70 -0
- package/fesm2022/seniorsistemas-angular-components-badge.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-bignumber-input.mjs +180 -0
- package/fesm2022/seniorsistemas-angular-components-bignumber-input.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-breadcrumb.mjs +128 -0
- package/fesm2022/seniorsistemas-angular-components-breadcrumb.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-button.mjs +122 -0
- package/fesm2022/seniorsistemas-angular-components-button.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-calendar-mask.mjs +633 -0
- package/fesm2022/seniorsistemas-angular-components-calendar-mask.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-card.mjs +107 -0
- package/fesm2022/seniorsistemas-angular-components-card.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-chat.mjs +78 -0
- package/fesm2022/seniorsistemas-angular-components-chat.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-checkbox-list.mjs +151 -0
- package/fesm2022/seniorsistemas-angular-components-checkbox-list.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-checkbox.mjs +74 -0
- package/fesm2022/seniorsistemas-angular-components-checkbox.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-chips.mjs +327 -0
- package/fesm2022/seniorsistemas-angular-components-chips.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-code-editor.mjs +1535 -0
- package/fesm2022/seniorsistemas-angular-components-code-editor.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-collapse-link.mjs +103 -0
- package/fesm2022/seniorsistemas-angular-components-collapse-link.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-common.mjs +246 -0
- package/fesm2022/seniorsistemas-angular-components-common.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-confirm-dialog.mjs +54 -0
- package/fesm2022/seniorsistemas-angular-components-confirm-dialog.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-control-errors.mjs +75 -0
- package/fesm2022/seniorsistemas-angular-components-control-errors.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-country-phone-picker.mjs +631 -0
- package/fesm2022/seniorsistemas-angular-components-country-phone-picker.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-currency.mjs +193 -0
- package/fesm2022/seniorsistemas-angular-components-currency.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-custom-fields.mjs +778 -0
- package/fesm2022/seniorsistemas-angular-components-custom-fields.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-dialog.mjs +221 -0
- package/fesm2022/seniorsistemas-angular-components-dialog.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs +3851 -0
- package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-editable-overlay.mjs +66 -0
- package/fesm2022/seniorsistemas-angular-components-editable-overlay.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-empty-state.mjs +107 -0
- package/fesm2022/seniorsistemas-angular-components-empty-state.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-fieldset.mjs +101 -0
- package/fesm2022/seniorsistemas-angular-components-fieldset.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-file-upload.mjs +354 -0
- package/fesm2022/seniorsistemas-angular-components-file-upload.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-gantt.mjs +1748 -0
- package/fesm2022/seniorsistemas-angular-components-gantt.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-global-search.mjs +288 -0
- package/fesm2022/seniorsistemas-angular-components-global-search.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-grid-menu.mjs +136 -0
- package/fesm2022/seniorsistemas-angular-components-grid-menu.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-help-popover.mjs +422 -0
- package/fesm2022/seniorsistemas-angular-components-help-popover.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-ia-insight.mjs +267 -0
- package/fesm2022/seniorsistemas-angular-components-ia-insight.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-image-cropper.mjs +273 -0
- package/fesm2022/seniorsistemas-angular-components-image-cropper.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-infinite-scroll.mjs +50 -0
- package/fesm2022/seniorsistemas-angular-components-infinite-scroll.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-info-sign.mjs +105 -0
- package/fesm2022/seniorsistemas-angular-components-info-sign.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs +679 -0
- package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-interactive-content.mjs +70 -0
- package/fesm2022/seniorsistemas-angular-components-interactive-content.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-kanban.mjs +456 -0
- package/fesm2022/seniorsistemas-angular-components-kanban.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-label-value.mjs +61 -0
- package/fesm2022/seniorsistemas-angular-components-label-value.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-loading-state.mjs +185 -0
- package/fesm2022/seniorsistemas-angular-components-loading-state.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-locale.mjs +409 -0
- package/fesm2022/seniorsistemas-angular-components-locale.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-localized-number-input.mjs +85 -0
- package/fesm2022/seniorsistemas-angular-components-localized-number-input.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-mask.mjs +85 -0
- package/fesm2022/seniorsistemas-angular-components-mask.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-mouse-events.mjs +116 -0
- package/fesm2022/seniorsistemas-angular-components-mouse-events.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-navigation-button.mjs +158 -0
- package/fesm2022/seniorsistemas-angular-components-navigation-button.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-number-input.mjs +189 -0
- package/fesm2022/seniorsistemas-angular-components-number-input.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-numeric.mjs +139 -0
- package/fesm2022/seniorsistemas-angular-components-numeric.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-object-card.mjs +296 -0
- package/fesm2022/seniorsistemas-angular-components-object-card.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-paginator.mjs +145 -0
- package/fesm2022/seniorsistemas-angular-components-paginator.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-panel.mjs +113 -0
- package/fesm2022/seniorsistemas-angular-components-panel.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-password-strength.mjs +321 -0
- package/fesm2022/seniorsistemas-angular-components-password-strength.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-picklist.mjs +339 -0
- package/fesm2022/seniorsistemas-angular-components-picklist.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-product-header.mjs +68 -0
- package/fesm2022/seniorsistemas-angular-components-product-header.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-profile-picture-picker.mjs +334 -0
- package/fesm2022/seniorsistemas-angular-components-profile-picture-picker.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-progressbar.mjs +152 -0
- package/fesm2022/seniorsistemas-angular-components-progressbar.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-radio-button.mjs +182 -0
- package/fesm2022/seniorsistemas-angular-components-radio-button.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-rating-scale.mjs +81 -0
- package/fesm2022/seniorsistemas-angular-components-rating-scale.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-select-button.mjs +172 -0
- package/fesm2022/seniorsistemas-angular-components-select-button.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-select.mjs +639 -0
- package/fesm2022/seniorsistemas-angular-components-select.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-shared.mjs +82 -0
- package/fesm2022/seniorsistemas-angular-components-shared.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-sidebar.mjs +137 -0
- package/fesm2022/seniorsistemas-angular-components-sidebar.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-slide-panel.mjs +182 -0
- package/fesm2022/seniorsistemas-angular-components-slide-panel.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-slider.mjs +624 -0
- package/fesm2022/seniorsistemas-angular-components-slider.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-speech-recognition.mjs +463 -0
- package/fesm2022/seniorsistemas-angular-components-speech-recognition.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-split-button.mjs +86 -0
- package/fesm2022/seniorsistemas-angular-components-split-button.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-star-rating.mjs +70 -0
- package/fesm2022/seniorsistemas-angular-components-star-rating.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-stats-card.mjs +142 -0
- package/fesm2022/seniorsistemas-angular-components-stats-card.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-steps.mjs +145 -0
- package/fesm2022/seniorsistemas-angular-components-steps.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-structure.mjs +48 -0
- package/fesm2022/seniorsistemas-angular-components-structure.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-switch.mjs +115 -0
- package/fesm2022/seniorsistemas-angular-components-switch.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-table-header.mjs +175 -0
- package/fesm2022/seniorsistemas-angular-components-table-header.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-table.mjs +957 -0
- package/fesm2022/seniorsistemas-angular-components-table.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-tabs.mjs +91 -0
- package/fesm2022/seniorsistemas-angular-components-tabs.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-template.mjs +43 -0
- package/fesm2022/seniorsistemas-angular-components-template.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-text-area-ia.mjs +275 -0
- package/fesm2022/seniorsistemas-angular-components-text-area-ia.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-text-area.mjs +154 -0
- package/fesm2022/seniorsistemas-angular-components-text-area.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-thumbnail.mjs +159 -0
- package/fesm2022/seniorsistemas-angular-components-thumbnail.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-thumbnails.mjs +182 -0
- package/fesm2022/seniorsistemas-angular-components-thumbnails.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-tiered-menu.mjs +877 -0
- package/fesm2022/seniorsistemas-angular-components-tiered-menu.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-tile.mjs +89 -0
- package/fesm2022/seniorsistemas-angular-components-tile.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-timeline.mjs +382 -0
- package/fesm2022/seniorsistemas-angular-components-timeline.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-toast.mjs +132 -0
- package/fesm2022/seniorsistemas-angular-components-toast.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-token-list.mjs +64 -0
- package/fesm2022/seniorsistemas-angular-components-token-list.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-tooltip.mjs +376 -0
- package/fesm2022/seniorsistemas-angular-components-tooltip.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-tree.mjs +417 -0
- package/fesm2022/seniorsistemas-angular-components-tree.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-utils.mjs +121 -0
- package/fesm2022/seniorsistemas-angular-components-utils.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-workspace-switch.mjs +159 -0
- package/fesm2022/seniorsistemas-angular-components-workspace-switch.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components.mjs +340 -0
- package/fesm2022/seniorsistemas-angular-components.mjs.map +1 -0
- package/fieldset/index.d.ts +5 -0
- package/fieldset/lib/fieldset/fieldset.component.d.ts +19 -0
- package/fieldset/lib/fieldset/fieldset.models.d.ts +4 -0
- package/fieldset/lib/fieldset/fieldset.module.d.ts +9 -0
- package/fieldset/public-api.d.ts +3 -0
- package/file-upload/index.d.ts +5 -0
- package/file-upload/lib/file-upload/file-upload.component.d.ts +80 -0
- package/file-upload/lib/file-upload/file-upload.module.d.ts +13 -0
- package/file-upload/lib/file-upload/file-upload.service.d.ts +9 -0
- package/file-upload/lib/file-upload/models/file-dto.d.ts +13 -0
- package/file-upload/lib/file-upload/models/file-upload-permissions.d.ts +2 -0
- package/file-upload/lib/file-upload/models/uploadError.d.ts +6 -0
- package/file-upload/lib/file-upload/models/validate-errors.d.ts +1 -0
- package/file-upload/public-api.d.ts +6 -0
- package/gantt/index.d.ts +5 -0
- package/gantt/lib/gantt/components/gantt/arrow.d.ts +16 -0
- package/gantt/lib/gantt/components/gantt/bar.d.ts +44 -0
- package/gantt/lib/gantt/components/gantt/gantt-options.d.ts +2 -0
- package/gantt/lib/gantt/components/gantt/gantt.d.ts +65 -0
- package/gantt/lib/gantt/components/gantt/popup.d.ts +15 -0
- package/gantt/lib/gantt/components/gantt/utils/svg-utils.d.ts +11 -0
- package/gantt/lib/gantt/components/side-table/side-table.component.d.ts +13 -0
- package/gantt/lib/gantt/gantt.component.d.ts +33 -0
- package/gantt/lib/gantt/gantt.module.d.ts +10 -0
- package/gantt/lib/gantt/models/index.d.ts +2 -0
- package/gantt/lib/gantt/models/options.d.ts +26 -0
- package/gantt/public-api.d.ts +4 -0
- package/global-search/index.d.ts +5 -0
- package/global-search/lib/global-search/components/dropdown/global-search-dropdown-item.component.d.ts +27 -0
- package/global-search/lib/global-search/global-search.component.d.ts +37 -0
- package/global-search/lib/global-search/global-search.module.d.ts +17 -0
- package/global-search/lib/global-search/types/global-search-size.enum.d.ts +1 -0
- package/global-search/public-api.d.ts +4 -0
- package/grid-menu/index.d.ts +5 -0
- package/grid-menu/lib/grid-menu/components/grid-menu-item/grid-menu-item.component.d.ts +17 -0
- package/grid-menu/lib/grid-menu/grid-menu.component.d.ts +16 -0
- package/grid-menu/lib/grid-menu/grid-menu.module.d.ts +10 -0
- package/grid-menu/lib/grid-menu/types/grid-menu-item.d.ts +11 -0
- package/grid-menu/public-api.d.ts +4 -0
- package/help-popover/index.d.ts +5 -0
- package/help-popover/lib/help-popover/help-popover/help-popover.component.d.ts +36 -0
- package/help-popover/lib/help-popover/help-popover.directive.d.ts +64 -0
- package/help-popover/lib/help-popover/help-popover.module.d.ts +10 -0
- package/help-popover/lib/help-popover/models/help-popover.models.d.ts +2 -0
- package/help-popover/public-api.d.ts +5 -0
- package/ia-insight/index.d.ts +5 -0
- package/ia-insight/lib/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.d.ts +5 -0
- package/ia-insight/lib/ia-insight/components/ia-insight-card/ia-insight-card.component.d.ts +25 -0
- package/ia-insight/lib/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.d.ts +21 -0
- package/ia-insight/lib/ia-insight/ia-insight.component.d.ts +29 -0
- package/ia-insight/lib/ia-insight/ia-insight.module.d.ts +17 -0
- package/ia-insight/lib/ia-insight/models/ia-insight-item.d.ts +21 -0
- package/ia-insight/lib/ia-insight/models/ia-insight-template-types.d.ts +1 -0
- package/ia-insight/lib/ia-insight/models/index.d.ts +2 -0
- package/ia-insight/public-api.d.ts +3 -0
- package/image-cropper/index.d.ts +5 -0
- package/image-cropper/lib/image-cropper/image-cropper.component.d.ts +46 -0
- package/image-cropper/lib/image-cropper/image-cropper.module.d.ts +13 -0
- package/image-cropper/lib/image-cropper/image-cropper.service.d.ts +42 -0
- package/image-cropper/public-api.d.ts +3 -0
- package/index.d.ts +5 -0
- package/infinite-scroll/index.d.ts +5 -0
- package/infinite-scroll/lib/infinite-scroll/infinite-scroll.directive.d.ts +10 -0
- package/infinite-scroll/lib/infinite-scroll/infinite-scroll.module.d.ts +8 -0
- package/infinite-scroll/public-api.d.ts +2 -0
- package/info-sign/index.d.ts +5 -0
- package/info-sign/lib/info-sign/components/info-sign/info-sign.component.d.ts +10 -0
- package/info-sign/lib/info-sign/info-sign.directive.d.ts +18 -0
- package/info-sign/lib/info-sign/info-sign.module.d.ts +10 -0
- package/info-sign/public-api.d.ts +2 -0
- package/inline-edit/index.d.ts +5 -0
- package/inline-edit/lib/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.d.ts +21 -0
- package/inline-edit/lib/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.d.ts +13 -0
- package/inline-edit/lib/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.d.ts +22 -0
- package/inline-edit/lib/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.d.ts +13 -0
- package/inline-edit/lib/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.d.ts +13 -0
- package/inline-edit/lib/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.d.ts +13 -0
- package/inline-edit/lib/inline-edit/components/inline-edit-item/inline-edit-item.component.d.ts +30 -0
- package/inline-edit/lib/inline-edit/fields/index.d.ts +14 -0
- package/inline-edit/lib/inline-edit/fields/inline-edit-calendar-field.d.ts +44 -0
- package/inline-edit/lib/inline-edit/fields/inline-edit-field.d.ts +15 -0
- package/inline-edit/lib/inline-edit/fields/inline-edit-lookup-field.d.ts +79 -0
- package/inline-edit/lib/inline-edit/fields/inline-edit-number-field.d.ts +40 -0
- package/inline-edit/lib/inline-edit/inline-edit.component.d.ts +15 -0
- package/inline-edit/lib/inline-edit/inline-edit.module.d.ts +29 -0
- package/inline-edit/lib/inline-edit/types/addon-config.d.ts +7 -0
- package/inline-edit/public-api.d.ts +4 -0
- package/interactive-content/index.d.ts +5 -0
- package/interactive-content/lib/interactive-content/interactive-content.directive.d.ts +18 -0
- package/interactive-content/public-api.d.ts +1 -0
- package/kanban/index.d.ts +5 -0
- package/kanban/lib/kanban/components/kanban-column/kanban-column.component.d.ts +23 -0
- package/kanban/lib/kanban/components/kanban-item/kanban-item.component.d.ts +21 -0
- package/kanban/lib/kanban/components/kanban-item-dragging/kanban-item-dragging.component.d.ts +6 -0
- package/kanban/lib/kanban/kanban-event.service.d.ts +15 -0
- package/kanban/lib/kanban/kanban.component.d.ts +46 -0
- package/kanban/lib/kanban/kanban.module.d.ts +18 -0
- package/kanban/lib/kanban/types/index.d.ts +2 -0
- package/kanban/lib/kanban/types/kanban-data.d.ts +27 -0
- package/kanban/lib/kanban/types/kanban-template-types.d.ts +1 -0
- package/kanban/public-api.d.ts +3 -0
- package/label-value/index.d.ts +5 -0
- package/label-value/lib/label-value/label-value.component.d.ts +12 -0
- package/label-value/lib/label-value/label-value.module.d.ts +12 -0
- package/label-value/lib/label-value/types/label-value-configuration.d.ts +29 -0
- package/label-value/public-api.d.ts +3 -0
- package/loading-state/index.d.ts +5 -0
- package/loading-state/lib/loading-state/components/dots-indicator/dots-indicator.components.d.ts +5 -0
- package/loading-state/lib/loading-state/components/logo-indicator/logo-indicator.component.d.ts +5 -0
- package/loading-state/lib/loading-state/loading-state.component.d.ts +23 -0
- package/loading-state/lib/loading-state/loading-state.directive.d.ts +22 -0
- package/loading-state/lib/loading-state/loading-state.module.d.ts +12 -0
- package/loading-state/public-api.d.ts +4 -0
- package/locale/index.d.ts +5 -0
- package/locale/lib/locale/locale.module.d.ts +19 -0
- package/locale/lib/locale/locale.service.d.ts +27 -0
- package/locale/lib/locale/options/calendar.d.ts +25 -0
- package/locale/lib/locale/options/index.d.ts +14 -0
- package/locale/lib/locale/options/number.d.ts +11 -0
- package/locale/lib/locale/pipes/localized-bignumber-impure.pipe.d.ts +9 -0
- package/locale/lib/locale/pipes/localized-bignumber.pipe.d.ts +12 -0
- package/locale/lib/locale/pipes/localized-currency-impure.pipe.d.ts +11 -0
- package/locale/lib/locale/pipes/localized-currency.pipe.d.ts +22 -0
- package/locale/lib/locale/pipes/localized-date-impure.pipe.d.ts +7 -0
- package/locale/lib/locale/pipes/localized-date.pipe.d.ts +10 -0
- package/locale/lib/locale/pipes/localized-number.pipe.d.ts +17 -0
- package/locale/lib/locale/pipes/localized-time-impure.pipe.d.ts +7 -0
- package/locale/lib/locale/pipes/localized-time.pipe.d.ts +10 -0
- package/locale/public-api.d.ts +12 -0
- package/localized-number-input/index.d.ts +5 -0
- package/localized-number-input/lib/localized-number-input/localized-number-input.directive.d.ts +16 -0
- package/localized-number-input/lib/localized-number-input/localized-number-input.module.d.ts +8 -0
- package/localized-number-input/public-api.d.ts +2 -0
- package/mask/index.d.ts +5 -0
- package/mask/lib/mask/mask-formatter.module.d.ts +7 -0
- package/mask/lib/mask/mask-formatter.pipe.d.ts +8 -0
- package/mask/public-api.d.ts +2 -0
- package/mouse-events/index.d.ts +5 -0
- package/mouse-events/lib/mouse-events/double-click.directive.d.ts +12 -0
- package/mouse-events/lib/mouse-events/long-press.directive.d.ts +16 -0
- package/mouse-events/lib/mouse-events/mouse-events.module.d.ts +9 -0
- package/mouse-events/public-api.d.ts +3 -0
- package/navigation-button/index.d.ts +5 -0
- package/navigation-button/lib/navigation-button/models/index.d.ts +2 -0
- package/navigation-button/lib/navigation-button/models/navigation-button-step-changed-info.d.ts +5 -0
- package/navigation-button/lib/navigation-button/navigation-button.component.d.ts +33 -0
- package/navigation-button/lib/navigation-button/navigation-button.module.d.ts +10 -0
- package/navigation-button/public-api.d.ts +3 -0
- package/number-input/index.d.ts +5 -0
- package/number-input/lib/number-input/number-input.directive.d.ts +47 -0
- package/number-input/lib/number-input/number-input.module.d.ts +11 -0
- package/number-input/public-api.d.ts +2 -0
- package/numeric/index.d.ts +5 -0
- package/numeric/lib/numeric.module.d.ts +8 -0
- package/numeric/lib/numeric.pipe.d.ts +16 -0
- package/numeric/lib/numeric.service.d.ts +24 -0
- package/numeric/public-api.d.ts +3 -0
- package/object-card/index.d.ts +5 -0
- package/object-card/lib/object-card/elements/field/object-card-field.component.d.ts +20 -0
- package/object-card/lib/object-card/elements/main/object-card-main.component.d.ts +31 -0
- package/object-card/lib/object-card/object-card.component.d.ts +31 -0
- package/object-card/lib/object-card/object-card.module.d.ts +14 -0
- package/object-card/public-api.d.ts +4 -0
- package/package.json +554 -42
- package/paginator/index.d.ts +5 -0
- package/paginator/lib/models/paginator.models.d.ts +14 -0
- package/paginator/lib/paginator/paginator.component.d.ts +30 -0
- package/paginator/public-api.d.ts +2 -0
- package/panel/index.d.ts +5 -0
- package/panel/lib/panel/panel.component.d.ts +27 -0
- package/panel/lib/panel/panel.module.d.ts +10 -0
- package/panel/public-api.d.ts +2 -0
- package/password-strength/index.d.ts +5 -0
- package/password-strength/lib/password-strength/password-strength.component.d.ts +23 -0
- package/password-strength/lib/password-strength/password-strength.directive.d.ts +30 -0
- package/password-strength/lib/password-strength/password-strength.module.d.ts +9 -0
- package/password-strength/lib/password-strength/types/password-positions.d.ts +1 -0
- package/password-strength/lib/password-strength/types/password-strengths.d.ts +1 -0
- package/password-strength/public-api.d.ts +5 -0
- package/picklist/index.d.ts +5 -0
- package/picklist/lib/picklist/picklist.component.d.ts +74 -0
- package/picklist/lib/picklist/picklist.module.d.ts +12 -0
- package/picklist/lib/picklist/types/index.d.ts +2 -0
- package/picklist/lib/picklist/types/picklist-item.d.ts +4 -0
- package/picklist/lib/picklist/types/picklist-template-types.d.ts +1 -0
- package/picklist/public-api.d.ts +4 -0
- package/product-header/index.d.ts +5 -0
- package/product-header/lib/product-header/product-header.component.d.ts +15 -0
- package/product-header/lib/product-header/product-header.module.d.ts +10 -0
- package/product-header/public-api.d.ts +2 -0
- package/profile-picture-picker/index.d.ts +5 -0
- package/profile-picture-picker/lib/profile-picture-picker/models/file-validation-errors.d.ts +5 -0
- package/profile-picture-picker/lib/profile-picture-picker/models/index.d.ts +4 -0
- package/profile-picture-picker/lib/profile-picture-picker/profile-picture-picker.component.d.ts +58 -0
- package/profile-picture-picker/lib/profile-picture-picker/profile-picture-picker.module.d.ts +13 -0
- package/profile-picture-picker/lib/profile-picture-picker/validators/index.d.ts +1 -0
- package/profile-picture-picker/lib/profile-picture-picker/validators/validators.d.ts +7 -0
- package/profile-picture-picker/public-api.d.ts +4 -0
- package/progressbar/index.d.ts +5 -0
- package/progressbar/lib/progressbar/components/progressbar-determinate/progressbar-determinate.component.d.ts +20 -0
- package/progressbar/lib/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.d.ts +8 -0
- package/progressbar/lib/progressbar/progressbar.component.d.ts +17 -0
- package/progressbar/lib/progressbar/progressbar.module.d.ts +10 -0
- package/progressbar/lib/progressbar/types/index.d.ts +2 -0
- package/progressbar/lib/progressbar/types/progressbar-colors.d.ts +1 -0
- package/progressbar/lib/progressbar/types/progressbar-mode.d.ts +1 -0
- package/progressbar/public-api.d.ts +3 -0
- package/public-api.d.ts +1 -4
- package/radio-button/index.d.ts +5 -0
- package/radio-button/lib/radio-button/radio-button.component.d.ts +31 -0
- package/radio-button/lib/radio-button-group/models/radio-button-group.models.d.ts +5 -0
- package/radio-button/lib/radio-button-group/radio-button-group.component.d.ts +25 -0
- package/radio-button/lib/services/radio-button-registry.service.d.ts +12 -0
- package/radio-button/public-api.d.ts +3 -0
- package/rating-scale/index.d.ts +5 -0
- package/rating-scale/lib/rating-scale/models/index.d.ts +1 -0
- package/rating-scale/lib/rating-scale/rating-scale.component.d.ts +18 -0
- package/rating-scale/lib/rating-scale/rating-scale.module.d.ts +9 -0
- package/rating-scale/public-api.d.ts +3 -0
- package/select/index.d.ts +5 -0
- package/select/lib/select/components/select-option/select-option.component.d.ts +14 -0
- package/select/lib/select/select.component.d.ts +266 -0
- package/select/public-api.d.ts +1 -0
- package/select-button/index.d.ts +5 -0
- package/select-button/lib/select-button/components/select-button-item/select-button-item.component.d.ts +10 -0
- package/select-button/lib/select-button/select-button.component.d.ts +22 -0
- package/select-button/lib/select-button/select-button.module.d.ts +9 -0
- package/select-button/public-api.d.ts +3 -0
- package/shared/index.d.ts +5 -0
- package/shared/lib/shared/border-button/border-button.component.d.ts +9 -0
- package/shared/lib/shared/border-button/border-button.module.d.ts +9 -0
- package/shared/lib/shared/models/border-button-options.d.ts +9 -0
- package/shared/lib/shared/models/severities.d.ts +8 -0
- package/shared/public-api.d.ts +6 -0
- package/sidebar/index.d.ts +5 -0
- package/sidebar/lib/sidebar/sidebar.component.d.ts +30 -0
- package/sidebar/lib/sidebar/sidebar.module.d.ts +10 -0
- package/sidebar/public-api.d.ts +2 -0
- package/slide-panel/index.d.ts +5 -0
- package/slide-panel/lib/slide-panel/slide-panel.component.d.ts +32 -0
- package/slide-panel/lib/slide-panel/slide-panel.module.d.ts +8 -0
- package/slide-panel/lib/slide-panel/slide-panel.service.d.ts +10 -0
- package/slide-panel/public-api.d.ts +3 -0
- package/slider/index.d.ts +5 -0
- package/slider/lib/slider/slider.component.d.ts +97 -0
- package/slider/lib/slider/slider.module.d.ts +9 -0
- package/slider/public-api.d.ts +2 -0
- package/speech-recognition/index.d.ts +5 -0
- package/speech-recognition/lib/speech-recognition/speech-recognition/speech-recognition.component.d.ts +54 -0
- package/speech-recognition/lib/speech-recognition/speech-recognition.module.d.ts +9 -0
- package/speech-recognition/lib/speech-recognition/speech-recognition.service.d.ts +29 -0
- package/speech-recognition/lib/speech-recognition/text-to-speech.service.d.ts +26 -0
- package/speech-recognition/public-api.d.ts +4 -0
- package/split-button/index.d.ts +5 -0
- package/split-button/lib/split-button/models/index.d.ts +2 -0
- package/split-button/lib/split-button/models/split-button-type.d.ts +1 -0
- package/split-button/lib/split-button/split-button.component.d.ts +22 -0
- package/split-button/lib/split-button/split-button.module.d.ts +8 -0
- package/split-button/public-api.d.ts +3 -0
- package/star-rating/index.d.ts +5 -0
- package/star-rating/public-api.d.ts +2 -0
- package/star-rating/star-rating/star-rating-models.d.ts +1 -0
- package/star-rating/star-rating/star-rating.component.d.ts +20 -0
- package/stats-card/index.d.ts +5 -0
- package/stats-card/lib/stats-card/stats-card.component.d.ts +28 -0
- package/stats-card/lib/stats-card/stats-card.module.d.ts +9 -0
- package/stats-card/public-api.d.ts +2 -0
- package/steps/index.d.ts +5 -0
- package/steps/lib/steps/steps.component.d.ts +36 -0
- package/steps/lib/steps/steps.module.d.ts +9 -0
- package/steps/public-api.d.ts +2 -0
- package/structure/index.d.ts +5 -0
- package/structure/lib/structure/footer.component.d.ts +5 -0
- package/structure/lib/structure/header.component.d.ts +5 -0
- package/structure/lib/structure/structure.module.d.ts +9 -0
- package/structure/public-api.d.ts +4 -0
- package/styles.css +1 -0
- package/switch/index.d.ts +5 -0
- package/switch/lib/switch/switch.component.d.ts +25 -0
- package/switch/lib/switch/switch.module.d.ts +8 -0
- package/switch/public-api.d.ts +2 -0
- package/table/index.d.ts +5 -0
- package/table/lib/table/export-utils.d.ts +16 -0
- package/table/lib/table/navigation/navigation.directive.d.ts +18 -0
- package/table/lib/table/row-toggler/row-toggler.directive.d.ts +10 -0
- package/table/lib/table/table-column/index.d.ts +2 -0
- package/table/lib/table/table-column/models/badge-column.interface.d.ts +9 -0
- package/table/lib/table/table-column/models/badge-configs.interface.d.ts +5 -0
- package/table/lib/table/table-column/models/column-colors.d.ts +1 -0
- package/table/lib/table/table-column/models/column-values.interface.d.ts +18 -0
- package/table/lib/table/table-column/models/column.interface.d.ts +28 -0
- package/table/lib/table/table-column/models/dynamic-editable-grid.interface.d.ts +13 -0
- package/table/lib/table/table-column/models/index.d.ts +10 -0
- package/table/lib/table/table-column/models/locale-options.interface.d.ts +6 -0
- package/table/lib/table/table-column/models/number-locale-options.interface.d.ts +6 -0
- package/table/lib/table/table-column/table-columns.component.d.ts +53 -0
- package/table/lib/table/table-paging/index.d.ts +2 -0
- package/table/lib/table/table-paging/models/index.d.ts +1 -0
- package/table/lib/table/table-paging/table-paging.component.d.ts +65 -0
- package/table/lib/table/table.module.d.ts +17 -0
- package/table/public-api.d.ts +5 -0
- package/table-header/index.d.ts +5 -0
- package/table-header/lib/table-header/table-header-checkbox.component.d.ts +31 -0
- package/table-header/lib/table-header/table-header-checkox.module.d.ts +10 -0
- package/table-header/public-api.d.ts +2 -0
- package/tabs/index.d.ts +5 -0
- package/tabs/lib/tab-item/tab-item.component.d.ts +18 -0
- package/tabs/lib/tabs/tabs.component.d.ts +16 -0
- package/tabs/public-api.d.ts +2 -0
- package/template/index.d.ts +5 -0
- package/template/lib/template/template.directive.d.ts +8 -0
- package/template/lib/template/template.module.d.ts +8 -0
- package/template/public-api.d.ts +2 -0
- package/text-area/index.d.ts +5 -0
- package/text-area/lib/text-area/text-area.component.d.ts +36 -0
- package/text-area/lib/text-area.module.d.ts +11 -0
- package/text-area/public-api.d.ts +2 -0
- package/text-area-ia/index.d.ts +5 -0
- package/text-area-ia/lib/services/IAssist/iassist.service.d.ts +16 -0
- package/text-area-ia/lib/services/IAssist/models/iassist-input-data.d.ts +6 -0
- package/text-area-ia/lib/services/IAssist/models/iassist-response.d.ts +5 -0
- package/text-area-ia/lib/text-area-ia/text-area-ia.component.d.ts +47 -0
- package/text-area-ia/lib/text-area-ia/text-area-ia.module.d.ts +15 -0
- package/text-area-ia/public-api.d.ts +2 -0
- package/thumbnail/index.d.ts +5 -0
- package/thumbnail/lib/thumbnail/thumbnail-size.d.ts +1 -0
- package/thumbnail/lib/thumbnail/thumbnail.component.d.ts +27 -0
- package/thumbnail/lib/thumbnail/thumbnail.module.d.ts +8 -0
- package/thumbnail/lib/thumbnail/thumbnail.service.d.ts +10 -0
- package/thumbnail/public-api.d.ts +3 -0
- package/thumbnails/index.d.ts +5 -0
- package/thumbnails/lib/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.d.ts +6 -0
- package/thumbnails/lib/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.d.ts +11 -0
- package/thumbnails/lib/thumbnails/components/thumbnail-item/thumbnail-item.component.d.ts +23 -0
- package/thumbnails/lib/thumbnails/models/thumbnails-item.d.ts +20 -0
- package/thumbnails/lib/thumbnails/thumbnails.component.d.ts +20 -0
- package/thumbnails/lib/thumbnails/thumbnails.module.d.ts +14 -0
- package/thumbnails/public-api.d.ts +3 -0
- package/tiered-menu/index.d.ts +5 -0
- package/tiered-menu/lib/tiered-menu/components/tiered-menu/tiered-menu.component.d.ts +35 -0
- package/tiered-menu/lib/tiered-menu/components/tiered-menu-divider/tiered-menu-divider.component.d.ts +5 -0
- package/tiered-menu/lib/tiered-menu/components/tiered-menu-item/tiered-menu-item.component.d.ts +18 -0
- package/tiered-menu/lib/tiered-menu/components/tiered-menu-nested/tiered-menu-nested.component.d.ts +27 -0
- package/tiered-menu/lib/tiered-menu/models/index.d.ts +2 -0
- package/tiered-menu/lib/tiered-menu/models/tiered-menu-item-data.d.ts +10 -0
- package/tiered-menu/lib/tiered-menu/models/tiered-menu-item-internal-data.d.ts +6 -0
- package/tiered-menu/lib/tiered-menu/services/tiered-menu.event.service.d.ts +14 -0
- package/tiered-menu/lib/tiered-menu/services/tiered-menu.global.service.d.ts +7 -0
- package/tiered-menu/lib/tiered-menu/services/tiered-menu.service.d.ts +15 -0
- package/tiered-menu/lib/tiered-menu/tiered-menu.directive.d.ts +46 -0
- package/tiered-menu/lib/tiered-menu/tiered-menu.module.d.ts +12 -0
- package/tiered-menu/public-api.d.ts +5 -0
- package/tile/index.d.ts +5 -0
- package/tile/lib/tile/tile.component.d.ts +19 -0
- package/tile/lib/tile/tile.module.d.ts +10 -0
- package/tile/public-api.d.ts +2 -0
- package/timeline/index.d.ts +5 -0
- package/timeline/lib/timeline/components/horizontal-timeline/horizontal-timeline.component.d.ts +9 -0
- package/timeline/lib/timeline/components/horizontal-timeline/horizontal-timeline.module.d.ts +10 -0
- package/timeline/lib/timeline/components/timeline-icon-item/timeline-icon-item.component.d.ts +10 -0
- package/timeline/lib/timeline/components/timeline-icon-item/timeline-icon-item.module.d.ts +9 -0
- package/timeline/lib/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.d.ts +9 -0
- package/timeline/lib/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.d.ts +13 -0
- package/timeline/lib/timeline/components/vertical-timeline/components/range-line/range-line.component.d.ts +5 -0
- package/timeline/lib/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.d.ts +11 -0
- package/timeline/lib/timeline/components/vertical-timeline/vertical-timeline.component.d.ts +24 -0
- package/timeline/lib/timeline/components/vertical-timeline/vertical-timeline.module.d.ts +13 -0
- package/timeline/lib/timeline/models/timeline-item.d.ts +27 -0
- package/timeline/lib/timeline/timeline.component.d.ts +23 -0
- package/timeline/lib/timeline/timeline.module.d.ts +11 -0
- package/timeline/public-api.d.ts +5 -0
- package/toast/index.d.ts +5 -0
- package/toast/lib/toast/toast.component.d.ts +15 -0
- package/toast/lib/toast/toast.module.d.ts +8 -0
- package/toast/lib/toast/toast.service.d.ts +15 -0
- package/toast/lib/toast/types/toast.d.ts +16 -0
- package/toast/public-api.d.ts +3 -0
- package/token-list/index.d.ts +5 -0
- package/token-list/lib/token-list/models/index.d.ts +1 -0
- package/token-list/lib/token-list/token-list.component.d.ts +16 -0
- package/token-list/lib/token-list/token-list.module.d.ts +8 -0
- package/token-list/public-api.d.ts +3 -0
- package/tooltip/index.d.ts +5 -0
- package/tooltip/lib/tooltip/models/mobile-behavior.d.ts +1 -0
- package/tooltip/lib/tooltip/models/tooltip-event.d.ts +1 -0
- package/tooltip/lib/tooltip/models/tooltip-position.d.ts +1 -0
- package/tooltip/lib/tooltip/tooltip.component.d.ts +12 -0
- package/tooltip/lib/tooltip/tooltip.directive.d.ts +63 -0
- package/tooltip/lib/tooltip/tooltip.module.d.ts +9 -0
- package/tooltip/public-api.d.ts +5 -0
- package/tree/index.d.ts +5 -0
- package/tree/lib/tree/Models/tree.models.d.ts +28 -0
- package/tree/lib/tree/components/tree-node-item/tree-node-item.component.d.ts +38 -0
- package/tree/lib/tree/tree.component.d.ts +36 -0
- package/tree/lib/tree/tree.module.d.ts +12 -0
- package/tree/public-api.d.ts +3 -0
- package/utils/index.d.ts +5 -2
- package/utils/lib/utils/utils.d.ts +28 -0
- package/utils/public-api.d.ts +2 -0
- package/workspace-switch/index.d.ts +5 -0
- package/workspace-switch/lib/workspace-switch/models/index.d.ts +1 -0
- package/workspace-switch/lib/workspace-switch/workspace-switch.component.d.ts +33 -0
- package/workspace-switch/lib/workspace-switch/workspace-switch.module.d.ts +8 -0
- package/workspace-switch/public-api.d.ts +3 -0
- package/angular-components.module.d.ts +0 -9
- package/bundles/seniorsistemas-angular-components.umd.js +0 -24519
- package/bundles/seniorsistemas-angular-components.umd.js.map +0 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +0 -17
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +0 -1
- package/components/accessibility-events/accessibility-events.module.d.ts +0 -2
- package/components/accessibility-events/directives/accessibility-event.directive.d.ts +0 -14
- package/components/accessibility-events/index.d.ts +0 -2
- package/components/accordion/accordion.component.d.ts +0 -20
- package/components/accordion/accordion.module.d.ts +0 -2
- package/components/accordion/components/accordion-panel/accordion-panel.component.d.ts +0 -31
- package/components/accordion/index.d.ts +0 -3
- package/components/accordion/models/accordion-button-settings.d.ts +0 -4
- package/components/accordion/models/accordion-switch-settings.d.ts +0 -4
- package/components/alert/alert.component.d.ts +0 -13
- package/components/alert/alert.module.d.ts +0 -2
- package/components/alert/index.d.ts +0 -2
- package/components/badge/badge.component.d.ts +0 -20
- package/components/badge/badge.module.d.ts +0 -2
- package/components/badge/index.d.ts +0 -3
- package/components/badge/models/badge-colors.d.ts +0 -8
- package/components/badge/models/badge-types.d.ts +0 -4
- package/components/badge/models/index.d.ts +0 -2
- package/components/bignumber-input/bignumber-input.directive.d.ts +0 -29
- package/components/bignumber-input/bignumber-input.module.d.ts +0 -2
- package/components/bignumber-input/index.d.ts +0 -2
- package/components/breadcrumb/breadcrumb.component.d.ts +0 -22
- package/components/breadcrumb/breadcrumb.module.d.ts +0 -2
- package/components/breadcrumb/index.d.ts +0 -2
- package/components/button/button.component.d.ts +0 -43
- package/components/button/button.module.d.ts +0 -2
- package/components/button/index.d.ts +0 -6
- package/components/button/models/button-animation.d.ts +0 -3
- package/components/button/models/button-badge-config.d.ts +0 -7
- package/components/button/models/button-priority.d.ts +0 -7
- package/components/button/models/button-size.d.ts +0 -4
- package/components/calendar-mask/calendar-mask.directive.d.ts +0 -66
- package/components/calendar-mask/calendar-mask.module.d.ts +0 -2
- package/components/calendar-mask/index.d.ts +0 -2
- package/components/card/card.component.d.ts +0 -22
- package/components/card/card.module.d.ts +0 -2
- package/components/card/index.d.ts +0 -3
- package/components/card/models/card-template-types.d.ts +0 -5
- package/components/chat/chat.component.d.ts +0 -7
- package/components/chat/chat.module.d.ts +0 -2
- package/components/chat/components/chat-message/chat-message.component.d.ts +0 -8
- package/components/chat/index.d.ts +0 -3
- package/components/chat/types/chat-message.d.ts +0 -8
- package/components/checkbox/checkbox.component.d.ts +0 -17
- package/components/checkbox/checkbox.module.d.ts +0 -2
- package/components/checkbox/index.d.ts +0 -3
- package/components/checkbox/models/checkbox-data.d.ts +0 -5
- package/components/checkbox/models/checkbox-state.d.ts +0 -6
- package/components/checkbox/models/index.d.ts +0 -2
- package/components/chips/chip-item/chip-item.component.d.ts +0 -22
- package/components/chips/chips/chips.component.d.ts +0 -55
- package/components/chips/chips.module.d.ts +0 -2
- package/components/chips/index.d.ts +0 -3
- package/components/chips/models/chip-models.d.ts +0 -7
- package/components/code-editor/code-editor.component.d.ts +0 -27
- package/components/code-editor/code-editor.module.d.ts +0 -2
- package/components/code-editor/core/facades/core-facade.d.ts +0 -34
- package/components/code-editor/core/use-cases/core-linters.d.ts +0 -6
- package/components/code-editor/index.d.ts +0 -3
- package/components/code-editor/infra/cores/codemirror-6/codemirror-6-core.d.ts +0 -27
- package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper.d.ts +0 -15
- package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.d.ts +0 -6
- package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.d.ts +0 -12
- package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.d.ts +0 -8
- package/components/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.d.ts +0 -1
- package/components/code-editor/infra/cores/codemirror-6/models/types/editor-theme.d.ts +0 -3
- package/components/code-editor/infra/utils/custom-http-client/custom-http-client.d.ts +0 -34
- package/components/code-editor/infra/utils/custom-translations/custom-translations-service.d.ts +0 -25
- package/components/code-editor/infra/utils/custom-translations/custom-translations.module.d.ts +0 -12
- package/components/collapse-link/collapse-link.component.d.ts +0 -17
- package/components/collapse-link/collapse-link.module.d.ts +0 -2
- package/components/collapse-link/index.d.ts +0 -2
- package/components/control-errors/control-errors.component.d.ts +0 -9
- package/components/control-errors/control-errors.module.d.ts +0 -2
- package/components/control-errors/index.d.ts +0 -2
- package/components/country-phone-picker/country-phone-picker.component.d.ts +0 -64
- package/components/country-phone-picker/country-phone-picker.module.d.ts +0 -2
- package/components/country-phone-picker/country-phone-picker.service.d.ts +0 -10
- package/components/country-phone-picker/index.d.ts +0 -4
- package/components/country-phone-picker/models/index.d.ts +0 -3
- package/components/country-phone-picker/resources/countries.d.ts +0 -2
- package/components/country-phone-picker/resources/index.d.ts +0 -1
- package/components/custom-fields/custom-fields.component.d.ts +0 -82
- package/components/custom-fields/custom-fields.module.d.ts +0 -2
- package/components/custom-fields/custom-fields.service.d.ts +0 -17
- package/components/custom-fields/index.d.ts +0 -3
- package/components/dynamic-form/components/dynamic-field/dynamic-field.component.d.ts +0 -12
- package/components/dynamic-form/components/field-label/field-label.component.d.ts +0 -5
- package/components/dynamic-form/components/field-label/field-label.module.d.ts +0 -2
- package/components/dynamic-form/components/fields/autocomplete/autocomplete-field.component.d.ts +0 -14
- package/components/dynamic-form/components/fields/base-field-component.d.ts +0 -27
- package/components/dynamic-form/components/fields/bignumber/bignumber-field.component.d.ts +0 -24
- package/components/dynamic-form/components/fields/bignumber/bignumber-field.module.d.ts +0 -2
- package/components/dynamic-form/components/fields/boolean/boolean-field.component.d.ts +0 -8
- package/components/dynamic-form/components/fields/boolean/boolean-switch-field.component.d.ts +0 -7
- package/components/dynamic-form/components/fields/button-field/button-field.component.d.ts +0 -7
- package/components/dynamic-form/components/fields/calendar/calendar-field.component.d.ts +0 -31
- package/components/dynamic-form/components/fields/checkbox/checkbox-field.component.d.ts +0 -7
- package/components/dynamic-form/components/fields/checkbox/checkbox-field.module.d.ts +0 -2
- package/components/dynamic-form/components/fields/chips/chips-field.component.d.ts +0 -19
- package/components/dynamic-form/components/fields/country-phone-picker/country-phone-picker-field.component.d.ts +0 -14
- package/components/dynamic-form/components/fields/currency/currency-field.component.d.ts +0 -21
- package/components/dynamic-form/components/fields/currency/currency-field.module.d.ts +0 -2
- package/components/dynamic-form/components/fields/editor/editor-field.component.d.ts +0 -7
- package/components/dynamic-form/components/fields/editor/editor-field.module.d.ts +0 -2
- package/components/dynamic-form/components/fields/file-upload/file-upload.component.d.ts +0 -17
- package/components/dynamic-form/components/fields/index.d.ts +0 -21
- package/components/dynamic-form/components/fields/lookup/lookup-field.component.d.ts +0 -7
- package/components/dynamic-form/components/fields/number/number-field.component.d.ts +0 -27
- package/components/dynamic-form/components/fields/number/number-field.module.d.ts +0 -2
- package/components/dynamic-form/components/fields/password/password-field.component.d.ts +0 -19
- package/components/dynamic-form/components/fields/password/password-field.module.d.ts +0 -2
- package/components/dynamic-form/components/fields/profile-picture/profile-picture-field.component.d.ts +0 -6
- package/components/dynamic-form/components/fields/profile-picture/profile-picture-field.module.d.ts +0 -2
- package/components/dynamic-form/components/fields/radio-button/radio-button-field.component.d.ts +0 -15
- package/components/dynamic-form/components/fields/select/select-field.component.d.ts +0 -7
- package/components/dynamic-form/components/fields/slider/slider-field.component.d.ts +0 -22
- package/components/dynamic-form/components/fields/text/text-field.component.d.ts +0 -22
- package/components/dynamic-form/components/fields/text/text-field.module.d.ts +0 -2
- package/components/dynamic-form/components/fields/text-area/text-area-field.component.d.ts +0 -11
- package/components/dynamic-form/components/fields/text-area-ia/text-area-ia-field.component.d.ts +0 -28
- package/components/dynamic-form/components/grid/row/row.component.d.ts +0 -12
- package/components/dynamic-form/components/lookup/lookup.component.d.ts +0 -188
- package/components/dynamic-form/components/lookup/models/default-filter.d.ts +0 -4
- package/components/dynamic-form/components/lookup/models/index.d.ts +0 -1
- package/components/dynamic-form/components/structure/base-structure-component.d.ts +0 -8
- package/components/dynamic-form/components/structure/fieldset/fieldset.component.d.ts +0 -9
- package/components/dynamic-form/components/structure/section/section.component.d.ts +0 -11
- package/components/dynamic-form/configurations/addon-config.d.ts +0 -8
- package/components/dynamic-form/configurations/field-type.d.ts +0 -30
- package/components/dynamic-form/configurations/fields/autocomplete-field.d.ts +0 -30
- package/components/dynamic-form/configurations/fields/bignumber-field.d.ts +0 -36
- package/components/dynamic-form/configurations/fields/blob-field.d.ts +0 -43
- package/components/dynamic-form/configurations/fields/boolean-field.d.ts +0 -29
- package/components/dynamic-form/configurations/fields/boolean-switch-field.d.ts +0 -11
- package/components/dynamic-form/configurations/fields/button-field.d.ts +0 -37
- package/components/dynamic-form/configurations/fields/calendar-field.d.ts +0 -45
- package/components/dynamic-form/configurations/fields/checkbox-field.d.ts +0 -9
- package/components/dynamic-form/configurations/fields/chips-field.d.ts +0 -24
- package/components/dynamic-form/configurations/fields/country-phone-picker-field.d.ts +0 -15
- package/components/dynamic-form/configurations/fields/currency-field.d.ts +0 -8
- package/components/dynamic-form/configurations/fields/decimal-field.d.ts +0 -14
- package/components/dynamic-form/configurations/fields/field.d.ts +0 -96
- package/components/dynamic-form/configurations/fields/index.d.ts +0 -21
- package/components/dynamic-form/configurations/fields/lookup-field.d.ts +0 -94
- package/components/dynamic-form/configurations/fields/number-field.d.ts +0 -42
- package/components/dynamic-form/configurations/fields/password-field.d.ts +0 -45
- package/components/dynamic-form/configurations/fields/profile-picture.d.ts +0 -36
- package/components/dynamic-form/configurations/fields/radio-button-field.d.ts +0 -23
- package/components/dynamic-form/configurations/fields/select-field.d.ts +0 -37
- package/components/dynamic-form/configurations/fields/slider-field.d.ts +0 -31
- package/components/dynamic-form/configurations/fields/text-area-field.d.ts +0 -24
- package/components/dynamic-form/configurations/fields/text-area-ia-field.d.ts +0 -26
- package/components/dynamic-form/configurations/fields/text-field.d.ts +0 -41
- package/components/dynamic-form/configurations/form-field.d.ts +0 -190
- package/components/dynamic-form/configurations/grid/grid.d.ts +0 -14
- package/components/dynamic-form/configurations/grid/row.d.ts +0 -8
- package/components/dynamic-form/configurations/structure/fieldset.d.ts +0 -10
- package/components/dynamic-form/configurations/structure/section.d.ts +0 -20
- package/components/dynamic-form/configurations/structure/structure.d.ts +0 -15
- package/components/dynamic-form/dynamic-form.component.d.ts +0 -10
- package/components/dynamic-form/dynamic-form.d.ts +0 -56
- package/components/dynamic-form/dynamic-form.directive.d.ts +0 -28
- package/components/dynamic-form/dynamic-form.module.d.ts +0 -2
- package/components/dynamic-form/index.d.ts +0 -32
- package/components/dynamic-form/services/IAssist/iassist.service.d.ts +0 -13
- package/components/dynamic-form/services/IAssist/models/iassist-input-data.d.ts +0 -6
- package/components/dynamic-form/services/IAssist/models/iassist-response.d.ts +0 -5
- package/components/dynamic-form/services/IAssist/models/index.d.ts +0 -2
- package/components/editable-overlay/editable-overlay.directive.d.ts +0 -9
- package/components/editable-overlay/editable-overlay.module.d.ts +0 -2
- package/components/editable-overlay/index.d.ts +0 -2
- package/components/empty-state/empty-state.component.d.ts +0 -16
- package/components/empty-state/empty-state.module.d.ts +0 -2
- package/components/empty-state/go-back/go-back.component.d.ts +0 -11
- package/components/empty-state/index.d.ts +0 -2
- package/components/fieldset/fieldset.component.d.ts +0 -14
- package/components/fieldset/fieldset.models.d.ts +0 -4
- package/components/fieldset/fieldset.module.d.ts +0 -2
- package/components/fieldset/index.d.ts +0 -3
- package/components/file-upload/file-upload.component.d.ts +0 -76
- package/components/file-upload/file-upload.module.d.ts +0 -2
- package/components/file-upload/file-upload.service.d.ts +0 -6
- package/components/file-upload/index.d.ts +0 -3
- package/components/file-upload/models/file-dto.d.ts +0 -11
- package/components/file-upload/models/file-upload-permissions.d.ts +0 -6
- package/components/file-upload/models/index.d.ts +0 -4
- package/components/file-upload/models/uploadError.d.ts +0 -6
- package/components/file-upload/models/validate-errors.d.ts +0 -6
- package/components/gantt/components/gantt/arrow.d.ts +0 -16
- package/components/gantt/components/gantt/bar.d.ts +0 -44
- package/components/gantt/components/gantt/gantt-options.d.ts +0 -2
- package/components/gantt/components/gantt/gantt.d.ts +0 -64
- package/components/gantt/components/gantt/popup.d.ts +0 -14
- package/components/gantt/components/gantt/utils/svg-utils.d.ts +0 -11
- package/components/gantt/components/side-table/side-table.component.d.ts +0 -10
- package/components/gantt/gantt.component.d.ts +0 -30
- package/components/gantt/gantt.module.d.ts +0 -2
- package/components/gantt/index.d.ts +0 -3
- package/components/gantt/models/index.d.ts +0 -3
- package/components/gantt/models/options.d.ts +0 -26
- package/components/global-search/elements/dropdown/global-search-dropdown-item.component.d.ts +0 -24
- package/components/global-search/global-search-size.enum.d.ts +0 -5
- package/components/global-search/global-search.component.d.ts +0 -34
- package/components/global-search/global-search.module.d.ts +0 -2
- package/components/global-search/index.d.ts +0 -4
- package/components/grid-menu/components/grid-menu-item/grid-menu-item.component.d.ts +0 -14
- package/components/grid-menu/grid-menu.component.d.ts +0 -13
- package/components/grid-menu/grid-menu.module.d.ts +0 -2
- package/components/grid-menu/index.d.ts +0 -3
- package/components/grid-menu/types/grid-menu-item.d.ts +0 -11
- package/components/help-popover/help-popover/help-popover.component.d.ts +0 -32
- package/components/help-popover/help-popover.directive.d.ts +0 -64
- package/components/help-popover/help-popover.module.d.ts +0 -2
- package/components/help-popover/index.d.ts +0 -5
- package/components/help-popover/models/help-popover.models.d.ts +0 -2
- package/components/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.d.ts +0 -2
- package/components/ia-insight/components/ia-insight-card/ia-insight-card.component.d.ts +0 -22
- package/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.d.ts +0 -18
- package/components/ia-insight/ia-insight.component.d.ts +0 -28
- package/components/ia-insight/ia-insight.module.d.ts +0 -2
- package/components/ia-insight/index.d.ts +0 -3
- package/components/ia-insight/models/ia-insight-item.d.ts +0 -21
- package/components/ia-insight/models/ia-insight-template-types.d.ts +0 -5
- package/components/ia-insight/models/index.d.ts +0 -2
- package/components/image-cropper/image-cropper.component.d.ts +0 -42
- package/components/image-cropper/image-cropper.module.d.ts +0 -2
- package/components/image-cropper/image-cropper.service.d.ts +0 -39
- package/components/image-cropper/index.d.ts +0 -3
- package/components/index.d.ts +0 -76
- package/components/infinite-scroll/infinite-scroll.directive.d.ts +0 -7
- package/components/infinite-scroll/infinite-scroll.module.d.ts +0 -2
- package/components/info-sign/index.d.ts +0 -2
- package/components/info-sign/info-sign.component.d.ts +0 -7
- package/components/info-sign/info-sign.directive.d.ts +0 -16
- package/components/info-sign/info-sign.module.d.ts +0 -2
- package/components/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.d.ts +0 -17
- package/components/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.d.ts +0 -10
- package/components/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.d.ts +0 -18
- package/components/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.d.ts +0 -9
- package/components/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.d.ts +0 -10
- package/components/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.d.ts +0 -9
- package/components/inline-edit/components/inline-edit-item/inline-edit-item.component.d.ts +0 -27
- package/components/inline-edit/fields/index.d.ts +0 -7
- package/components/inline-edit/fields/inline-edit-calendar-field.d.ts +0 -44
- package/components/inline-edit/fields/inline-edit-field.d.ts +0 -13
- package/components/inline-edit/fields/inline-edit-lookup-field.d.ts +0 -79
- package/components/inline-edit/fields/inline-edit-number-field.d.ts +0 -38
- package/components/inline-edit/index.d.ts +0 -3
- package/components/inline-edit/inline-edit.component.d.ts +0 -14
- package/components/inline-edit/inline-edit.module.d.ts +0 -2
- package/components/kanban/components/kanban-column/kanban-column.component.d.ts +0 -18
- package/components/kanban/components/kanban-item/kanban-item.component.d.ts +0 -16
- package/components/kanban/components/kanban-item-dragging/kanban-item-dragging.component.d.ts +0 -3
- package/components/kanban/index.d.ts +0 -3
- package/components/kanban/kanban-event.service.d.ts +0 -12
- package/components/kanban/kanban.component.d.ts +0 -43
- package/components/kanban/kanban.module.d.ts +0 -2
- package/components/kanban/models/index.d.ts +0 -2
- package/components/kanban/models/kanban-data.d.ts +0 -27
- package/components/kanban/models/kanban-template-types.d.ts +0 -7
- package/components/label-value/index.d.ts +0 -3
- package/components/label-value/label-value.component.d.ts +0 -9
- package/components/label-value/label-value.module.d.ts +0 -2
- package/components/label-value/types/label-value-configuration.d.ts +0 -29
- package/components/loading-state/components/dots-indicator/dots-indicator.components.d.ts +0 -2
- package/components/loading-state/components/logo-indicator/logo-indicator.component.d.ts +0 -2
- package/components/loading-state/index.d.ts +0 -3
- package/components/loading-state/loading-state.component.d.ts +0 -20
- package/components/loading-state/loading-state.directive.d.ts +0 -19
- package/components/loading-state/loading-state.module.d.ts +0 -2
- package/components/locale/index.d.ts +0 -10
- package/components/locale/locale.module.d.ts +0 -5
- package/components/locale/locale.service.d.ts +0 -24
- package/components/locale/options/calendar.d.ts +0 -25
- package/components/locale/options/index.d.ts +0 -26
- package/components/locale/options/number.d.ts +0 -11
- package/components/locale/pipes/localized-bignumber-impure.pipe.d.ts +0 -6
- package/components/locale/pipes/localized-bignumber.pipe.d.ts +0 -9
- package/components/locale/pipes/localized-currency-impure.pipe.d.ts +0 -8
- package/components/locale/pipes/localized-currency.pipe.d.ts +0 -19
- package/components/locale/pipes/localized-date-impure.pipe.d.ts +0 -4
- package/components/locale/pipes/localized-date.pipe.d.ts +0 -7
- package/components/locale/pipes/localized-number.pipe.d.ts +0 -14
- package/components/locale/pipes/localized-time-impure.pipe.d.ts +0 -4
- package/components/locale/pipes/localized-time.pipe.d.ts +0 -7
- package/components/locale/pipes/numeric.pipe.d.ts +0 -13
- package/components/locale/services/numeric.service.d.ts +0 -27
- package/components/localized-number-input/index.d.ts +0 -2
- package/components/localized-number-input/localized-number-input.directive.d.ts +0 -13
- package/components/localized-number-input/localized-number-input.module.d.ts +0 -2
- package/components/mask/index.d.ts +0 -2
- package/components/mask/mask-formatter.module.d.ts +0 -2
- package/components/mask/mask-formatter.pipe.d.ts +0 -5
- package/components/mouse-events/double-click.directive.d.ts +0 -9
- package/components/mouse-events/index.d.ts +0 -3
- package/components/mouse-events/long-press.directive.d.ts +0 -13
- package/components/mouse-events/mouse-events.module.d.ts +0 -2
- package/components/navigation-button/index.d.ts +0 -3
- package/components/navigation-button/models/index.d.ts +0 -2
- package/components/navigation-button/models/navigation-button-step-changed-info.d.ts +0 -5
- package/components/navigation-button/navigation-button.component.d.ts +0 -30
- package/components/navigation-button/navigation-button.module.d.ts +0 -2
- package/components/number-input/index.d.ts +0 -2
- package/components/number-input/number-input.directive.d.ts +0 -44
- package/components/number-input/number-input.module.d.ts +0 -5
- package/components/object-card/elements/field/object-card-field.component.d.ts +0 -17
- package/components/object-card/elements/main/object-card-main.component.d.ts +0 -27
- package/components/object-card/index.d.ts +0 -4
- package/components/object-card/object-card.component.d.ts +0 -28
- package/components/object-card/object-card.module.d.ts +0 -2
- package/components/panel/index.d.ts +0 -2
- package/components/panel/panel.component.d.ts +0 -25
- package/components/panel/panel.module.d.ts +0 -2
- package/components/password-strength/index.d.ts +0 -4
- package/components/password-strength/models/index.d.ts +0 -2
- package/components/password-strength/models/password-positions.d.ts +0 -5
- package/components/password-strength/models/password-strengths.d.ts +0 -6
- package/components/password-strength/password-strength.component.d.ts +0 -19
- package/components/password-strength/password-strength.directive.d.ts +0 -26
- package/components/password-strength/password-strength.module.d.ts +0 -2
- package/components/picklist/index.d.ts +0 -4
- package/components/picklist/picklist/models/picklist-models.d.ts +0 -8
- package/components/picklist/picklist/picklist.component.d.ts +0 -71
- package/components/picklist/picklist.module.d.ts +0 -2
- package/components/product-header/index.d.ts +0 -2
- package/components/product-header/product-header.component.d.ts +0 -10
- package/components/product-header/product-header.module.d.ts +0 -2
- package/components/profile-picture-picker/index.d.ts +0 -3
- package/components/profile-picture-picker/models/file-validation-errors.d.ts +0 -10
- package/components/profile-picture-picker/models/index.d.ts +0 -4
- package/components/profile-picture-picker/profile-picture-picker.component.d.ts +0 -55
- package/components/profile-picture-picker/profile-picture-picker.module.d.ts +0 -2
- package/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.d.ts +0 -17
- package/components/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.d.ts +0 -5
- package/components/progressbar/index.d.ts +0 -3
- package/components/progressbar/models/index.d.ts +0 -2
- package/components/progressbar/models/progressbar-colors.d.ts +0 -6
- package/components/progressbar/models/progressbar-mode.d.ts +0 -4
- package/components/progressbar/progressbar.component.d.ts +0 -15
- package/components/progressbar/progressbar.module.d.ts +0 -2
- package/components/rating-scale/index.d.ts +0 -3
- package/components/rating-scale/models/index.d.ts +0 -1
- package/components/rating-scale/rating-scale.component.d.ts +0 -15
- package/components/rating-scale/rating-scale.module.d.ts +0 -2
- package/components/select-button/components/select-button-item/select-button-item.component.d.ts +0 -7
- package/components/select-button/index.d.ts +0 -3
- package/components/select-button/models/index.d.ts +0 -1
- package/components/select-button/select-button.component.d.ts +0 -19
- package/components/select-button/select-button.module.d.ts +0 -2
- package/components/shared/border-button/border-button.component.d.ts +0 -9
- package/components/shared/border-button/border-button.module.d.ts +0 -2
- package/components/shared/index.d.ts +0 -3
- package/components/shared/models/border-button-options.d.ts +0 -9
- package/components/shared/models/enum-severity.d.ts +0 -7
- package/components/sidebar/index.d.ts +0 -2
- package/components/sidebar/sidebar.component.d.ts +0 -22
- package/components/sidebar/sidebar.module.d.ts +0 -2
- package/components/slide-panel/index.d.ts +0 -2
- package/components/slide-panel/slide-panel.component.d.ts +0 -32
- package/components/slide-panel/slide-panel.module.d.ts +0 -2
- package/components/slide-panel/slide-panel.service.d.ts +0 -7
- package/components/slider/index.d.ts +0 -2
- package/components/slider/slider.component.d.ts +0 -95
- package/components/slider/slider.module.d.ts +0 -2
- package/components/speech-recognition/speech-recognition/speech-recognition.component.d.ts +0 -51
- package/components/speech-recognition/speech-recognition.module.d.ts +0 -2
- package/components/speech-recognition/speech-recognition.service.d.ts +0 -26
- package/components/speech-recognition/text-to-speech.service.d.ts +0 -23
- package/components/split-button/index.d.ts +0 -4
- package/components/split-button/models/split-button-type.d.ts +0 -5
- package/components/split-button/split-button.component.d.ts +0 -19
- package/components/split-button/split-button.module.d.ts +0 -2
- package/components/stats-card/index.d.ts +0 -2
- package/components/stats-card/stats-card.component.d.ts +0 -26
- package/components/stats-card/stats-card.module.d.ts +0 -2
- package/components/steps/index.d.ts +0 -2
- package/components/steps/steps.component.d.ts +0 -38
- package/components/steps/steps.module.d.ts +0 -2
- package/components/structure/footer.component.d.ts +0 -2
- package/components/structure/header.component.d.ts +0 -4
- package/components/structure/index.d.ts +0 -3
- package/components/structure/structure.module.d.ts +0 -2
- package/components/switch/index.d.ts +0 -2
- package/components/switch/switch.component.d.ts +0 -22
- package/components/switch/switch.module.d.ts +0 -2
- package/components/table/frozen-position/frozen-position.directive.d.ts +0 -28
- package/components/table/index.d.ts +0 -6
- package/components/table/navigation/navigation.directive.d.ts +0 -15
- package/components/table/row-toggler/row-toggler.directive.d.ts +0 -7
- package/components/table/table-column/index.d.ts +0 -1
- package/components/table/table-column/models/badge-column.interface.d.ts +0 -9
- package/components/table/table-column/models/badge-configs.interface.d.ts +0 -5
- package/components/table/table-column/models/column-colors.d.ts +0 -1
- package/components/table/table-column/models/column-values.interface.d.ts +0 -17
- package/components/table/table-column/models/column.interface.d.ts +0 -27
- package/components/table/table-column/models/dynamic-editable-grid.interface.d.ts +0 -13
- package/components/table/table-column/models/index.d.ts +0 -9
- package/components/table/table-column/models/locale-options.interface.d.ts +0 -6
- package/components/table/table-column/models/number-locale-options.interface.d.ts +0 -6
- package/components/table/table-column/table-columns.component.d.ts +0 -49
- package/components/table/table-paging/index.d.ts +0 -1
- package/components/table/table-paging/models/index.d.ts +0 -1
- package/components/table/table-paging/table-paging.component.d.ts +0 -63
- package/components/table/table.module.d.ts +0 -2
- package/components/table-header/index.d.ts +0 -2
- package/components/table-header/table-header-checkbox.component.d.ts +0 -25
- package/components/table-header/table-header-checkox.module.d.ts +0 -2
- package/components/template/index.d.ts +0 -2
- package/components/template/template.directive.d.ts +0 -6
- package/components/template/template.module.d.ts +0 -2
- package/components/text-area/index.d.ts +0 -2
- package/components/text-area/text-area/text-area.component.d.ts +0 -32
- package/components/text-area/text-area.module.d.ts +0 -2
- package/components/text-area-ia/index.d.ts +0 -2
- package/components/text-area-ia/text-area-ia.component.d.ts +0 -44
- package/components/text-area-ia/text-area-ia.module.d.ts +0 -2
- package/components/thumbnail/index.d.ts +0 -3
- package/components/thumbnail/thumbnail-size.d.ts +0 -5
- package/components/thumbnail/thumbnail.component.d.ts +0 -24
- package/components/thumbnail/thumbnail.module.d.ts +0 -2
- package/components/thumbnail/thumbnail.service.d.ts +0 -7
- package/components/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.d.ts +0 -3
- package/components/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.d.ts +0 -8
- package/components/thumbnails/components/thumbnail-item/thumbnail-item.component.d.ts +0 -20
- package/components/thumbnails/index.d.ts +0 -3
- package/components/thumbnails/models/thumbnails-item.d.ts +0 -20
- package/components/thumbnails/thumbnails.component.d.ts +0 -17
- package/components/thumbnails/thumbnails.module.d.ts +0 -2
- package/components/tiered-menu/components/tiered-menu/tiered-menu.component.d.ts +0 -32
- package/components/tiered-menu/components/tiered-menu-divider/tiered-menu-divider.component.d.ts +0 -2
- package/components/tiered-menu/components/tiered-menu-item/tiered-menu-item.component.d.ts +0 -15
- package/components/tiered-menu/components/tiered-menu-nested/tiered-menu-nested.component.d.ts +0 -24
- package/components/tiered-menu/index.d.ts +0 -3
- package/components/tiered-menu/models/index.d.ts +0 -2
- package/components/tiered-menu/models/tiered-menu-item-data.d.ts +0 -9
- package/components/tiered-menu/models/tiered-menu-item-internal-data.d.ts +0 -6
- package/components/tiered-menu/services/tiered-menu.event.service.d.ts +0 -11
- package/components/tiered-menu/services/tiered-menu.global.service.d.ts +0 -4
- package/components/tiered-menu/services/tiered-menu.service.d.ts +0 -12
- package/components/tiered-menu/tiered-menu.directive.d.ts +0 -41
- package/components/tiered-menu/tiered-menu.module.d.ts +0 -2
- package/components/tiered-menu/utils.d.ts +0 -2
- package/components/tile/index.d.ts +0 -2
- package/components/tile/tile.component.d.ts +0 -16
- package/components/tile/tile.module.d.ts +0 -2
- package/components/timeline/components/horizontal-timeline/horizontal-timeline.component.d.ts +0 -6
- package/components/timeline/components/horizontal-timeline/horizontal-timeline.module.d.ts +0 -2
- package/components/timeline/components/timeline-icon-item/timeline-icon-item.component.d.ts +0 -7
- package/components/timeline/components/timeline-icon-item/timeline-icon-item.module.d.ts +0 -2
- package/components/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.d.ts +0 -6
- package/components/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.d.ts +0 -10
- package/components/timeline/components/vertical-timeline/components/range-line/range-line.component.d.ts +0 -2
- package/components/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.d.ts +0 -8
- package/components/timeline/components/vertical-timeline/vertical-timeline.component.d.ts +0 -21
- package/components/timeline/components/vertical-timeline/vertical-timeline.module.d.ts +0 -2
- package/components/timeline/index.d.ts +0 -3
- package/components/timeline/models/index.d.ts +0 -3
- package/components/timeline/models/timeline-item.d.ts +0 -27
- package/components/timeline/timeline.component.d.ts +0 -20
- package/components/timeline/timeline.module.d.ts +0 -2
- package/components/toast/index.d.ts +0 -3
- package/components/toast/toast.component.d.ts +0 -12
- package/components/toast/toast.module.d.ts +0 -2
- package/components/toast/toast.service.d.ts +0 -12
- package/components/toast/types/toast.d.ts +0 -16
- package/components/token-list/index.d.ts +0 -3
- package/components/token-list/models/index.d.ts +0 -1
- package/components/token-list/token-list.component.d.ts +0 -13
- package/components/token-list/token-list.module.d.ts +0 -2
- package/components/tooltip/index.d.ts +0 -2
- package/components/tooltip/models/index.d.ts +0 -3
- package/components/tooltip/models/mobile-behavior.d.ts +0 -4
- package/components/tooltip/models/tooltip-event.d.ts +0 -4
- package/components/tooltip/models/tooltip-position.d.ts +0 -6
- package/components/tooltip/tooltip.component.d.ts +0 -9
- package/components/tooltip/tooltip.directive.d.ts +0 -57
- package/components/tooltip/tooltip.module.d.ts +0 -2
- package/components/tree/Models/tree.models.d.ts +0 -28
- package/components/tree/components/tree-node-item/tree-node-item.component.d.ts +0 -35
- package/components/tree/index.d.ts +0 -3
- package/components/tree/tree.component.d.ts +0 -33
- package/components/tree/tree.module.d.ts +0 -2
- package/components/utils/debouce.d.ts +0 -4
- package/components/utils/export-utils.d.ts +0 -9
- package/components/utils/index.d.ts +0 -5
- package/components/utils/utils.d.ts +0 -25
- package/components/workspace-switch/index.d.ts +0 -3
- package/components/workspace-switch/models/index.d.ts +0 -1
- package/components/workspace-switch/workspace-switch.component.d.ts +0 -30
- package/components/workspace-switch/workspace-switch.module.d.ts +0 -2
- package/esm2015/angular-components.module.js +0 -22
- package/esm2015/components/accessibility-events/accessibility-events.module.js +0 -17
- package/esm2015/components/accessibility-events/directives/accessibility-event.directive.js +0 -61
- package/esm2015/components/accessibility-events/index.js +0 -3
- package/esm2015/components/accordion/accordion.component.js +0 -100
- package/esm2015/components/accordion/accordion.module.js +0 -31
- package/esm2015/components/accordion/components/accordion-panel/accordion-panel.component.js +0 -118
- package/esm2015/components/accordion/index.js +0 -4
- package/esm2015/components/accordion/models/accordion-button-settings.js +0 -1
- package/esm2015/components/accordion/models/accordion-switch-settings.js +0 -1
- package/esm2015/components/alert/alert.component.js +0 -47
- package/esm2015/components/alert/alert.module.js +0 -15
- package/esm2015/components/alert/index.js +0 -3
- package/esm2015/components/badge/badge.component.js +0 -61
- package/esm2015/components/badge/badge.module.js +0 -17
- package/esm2015/components/badge/index.js +0 -4
- package/esm2015/components/badge/models/badge-colors.js +0 -12
- package/esm2015/components/badge/models/badge-types.js +0 -6
- package/esm2015/components/badge/models/index.js +0 -3
- package/esm2015/components/bignumber-input/bignumber-input.directive.js +0 -148
- package/esm2015/components/bignumber-input/bignumber-input.module.js +0 -15
- package/esm2015/components/bignumber-input/index.js +0 -3
- package/esm2015/components/breadcrumb/breadcrumb.component.js +0 -90
- package/esm2015/components/breadcrumb/breadcrumb.module.js +0 -17
- package/esm2015/components/breadcrumb/index.js +0 -3
- package/esm2015/components/button/button.component.js +0 -138
- package/esm2015/components/button/button.module.js +0 -20
- package/esm2015/components/button/index.js +0 -6
- package/esm2015/components/button/models/button-animation.js +0 -5
- package/esm2015/components/button/models/button-badge-config.js +0 -1
- package/esm2015/components/button/models/button-priority.js +0 -9
- package/esm2015/components/button/models/button-size.js +0 -6
- package/esm2015/components/calendar-mask/calendar-mask.directive.js +0 -573
- package/esm2015/components/calendar-mask/calendar-mask.module.js +0 -15
- package/esm2015/components/calendar-mask/index.js +0 -3
- package/esm2015/components/card/card.component.js +0 -73
- package/esm2015/components/card/card.module.js +0 -16
- package/esm2015/components/card/index.js +0 -4
- package/esm2015/components/card/models/card-template-types.js +0 -7
- package/esm2015/components/chat/chat.component.js +0 -32
- package/esm2015/components/chat/chat.module.js +0 -18
- package/esm2015/components/chat/components/chat-message/chat-message.component.js +0 -28
- package/esm2015/components/chat/index.js +0 -3
- package/esm2015/components/chat/types/chat-message.js +0 -1
- package/esm2015/components/checkbox/checkbox.component.js +0 -107
- package/esm2015/components/checkbox/checkbox.module.js +0 -16
- package/esm2015/components/checkbox/index.js +0 -3
- package/esm2015/components/checkbox/models/checkbox-data.js +0 -1
- package/esm2015/components/checkbox/models/checkbox-state.js +0 -1
- package/esm2015/components/checkbox/models/index.js +0 -1
- package/esm2015/components/chips/chip-item/chip-item.component.js +0 -68
- package/esm2015/components/chips/chips/chips.component.js +0 -228
- package/esm2015/components/chips/chips.module.js +0 -24
- package/esm2015/components/chips/index.js +0 -3
- package/esm2015/components/chips/models/chip-models.js +0 -1
- package/esm2015/components/code-editor/code-editor.component.js +0 -116
- package/esm2015/components/code-editor/code-editor.module.js +0 -24
- package/esm2015/components/code-editor/core/facades/core-facade.js +0 -91
- package/esm2015/components/code-editor/core/facades/linter-facade.js +0 -1
- package/esm2015/components/code-editor/core/models/enums/marker-severity.js +0 -7
- package/esm2015/components/code-editor/core/models/index.js +0 -3
- package/esm2015/components/code-editor/core/models/interfaces/marker.js +0 -1
- package/esm2015/components/code-editor/core/use-cases/core-linters.js +0 -9
- package/esm2015/components/code-editor/index.js +0 -5
- package/esm2015/components/code-editor/infra/cores/codemirror-6/codemirror-6-core.js +0 -120
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/editor-languages.js +0 -17
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/json/json.language.js +0 -67
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-empty-state.js +0 -29
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-loading-state.js +0 -29
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper-style.js +0 -17
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper.js +0 -75
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/index.js +0 -4
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-style.js +0 -35
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.js +0 -341
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.service.js +0 -34
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/base-configs.js +0 -18
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/grammar.js +0 -37
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/completion-types.js +0 -10
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/enum-type-order.js +0 -8
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/keywords.js +0 -12
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/meta-type.js +0 -36
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/request-types.js +0 -9
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/index.js +0 -7
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/completion-Item.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/facade-metadata-name.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/fields-order-by.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/get-facade-metadata-by-path.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-context-metadata-by-id.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-expression-metadata.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-facade-metadata-names.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-expression-metadata.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-context-metadata.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-facade-metadata.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-field-metadata.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-page-request.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/tax-calculation-configs.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation-language-configs.js +0 -10
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation.language.js +0 -9
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-language-configs.js +0 -15
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.js +0 -16
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/index.js +0 -3
- package/esm2015/components/code-editor/infra/cores/codemirror-6/models/index.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/models/types/editor-theme.js +0 -1
- package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/editor-themes.js +0 -15
- package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/autocomplete-tooltip.js +0 -61
- package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/font-style.js +0 -29
- package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/line-counter.js +0 -25
- package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/scrollbars.js +0 -18
- package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-highlight-style.js +0 -16
- package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-style.js +0 -13
- package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-theme.js +0 -22
- package/esm2015/components/code-editor/infra/cores/codemirror-6/utils/convert-markers-to-diagnostics.js +0 -18
- package/esm2015/components/code-editor/infra/cores/codemirror-6/utils/index.js +0 -3
- package/esm2015/components/code-editor/infra/cores/codemirror-6/utils/is-current-position-inside-string.js +0 -6
- package/esm2015/components/code-editor/infra/utils/custom-http-client/custom-http-client.js +0 -80
- package/esm2015/components/code-editor/infra/utils/custom-http-client/json-response-formatters/format-blob-response.js +0 -13
- package/esm2015/components/code-editor/infra/utils/custom-http-client/json-response-formatters/format-json-response.js +0 -12
- package/esm2015/components/code-editor/infra/utils/custom-http-client/json-response-formatters/index.js +0 -3
- package/esm2015/components/code-editor/infra/utils/custom-translations/custom-translations-service.js +0 -37
- package/esm2015/components/code-editor/infra/utils/custom-translations/custom-translations.module.js +0 -30
- package/esm2015/components/code-editor/infra/utils/custom-translations/index.js +0 -3
- package/esm2015/components/code-editor/infra/utils/custom-translations/models/index.js +0 -1
- package/esm2015/components/code-editor/infra/utils/custom-translations/models/interfaces/translations.js +0 -1
- package/esm2015/components/code-editor/infra/utils/index.js +0 -3
- package/esm2015/components/code-editor/models/enums/languages.js +0 -6
- package/esm2015/components/code-editor/models/enums/themes.js +0 -5
- package/esm2015/components/code-editor/models/index.js +0 -4
- package/esm2015/components/code-editor/models/interfaces/editor-options.js +0 -1
- package/esm2015/components/collapse-link/collapse-link.component.js +0 -73
- package/esm2015/components/collapse-link/collapse-link.module.js +0 -15
- package/esm2015/components/collapse-link/index.js +0 -3
- package/esm2015/components/control-errors/control-errors.component.js +0 -37
- package/esm2015/components/control-errors/control-errors.module.js +0 -16
- package/esm2015/components/control-errors/index.js +0 -3
- package/esm2015/components/country-phone-picker/country-phone-picker.component.js +0 -301
- package/esm2015/components/country-phone-picker/country-phone-picker.module.js +0 -27
- package/esm2015/components/country-phone-picker/country-phone-picker.service.js +0 -43
- package/esm2015/components/country-phone-picker/index.js +0 -5
- package/esm2015/components/country-phone-picker/models/country-phone-data.js +0 -1
- package/esm2015/components/country-phone-picker/models/index.js +0 -2
- package/esm2015/components/country-phone-picker/models/ordination.js +0 -7
- package/esm2015/components/country-phone-picker/models/phone-selection-data.js +0 -1
- package/esm2015/components/country-phone-picker/resources/countries.js +0 -228
- package/esm2015/components/country-phone-picker/resources/index.js +0 -2
- package/esm2015/components/custom-fields/custom-fields.component.js +0 -609
- package/esm2015/components/custom-fields/custom-fields.module.js +0 -30
- package/esm2015/components/custom-fields/custom-fields.service.js +0 -36
- package/esm2015/components/custom-fields/index.js +0 -4
- package/esm2015/components/custom-fields/models/custom-field-type.js +0 -17
- package/esm2015/components/dynamic-form/components/dynamic-field/dynamic-field.component.js +0 -37
- package/esm2015/components/dynamic-form/components/field-label/field-label.component.js +0 -18
- package/esm2015/components/dynamic-form/components/field-label/field-label.module.js +0 -19
- package/esm2015/components/dynamic-form/components/fields/autocomplete/autocomplete-field.component.js +0 -32
- package/esm2015/components/dynamic-form/components/fields/base-field-component.js +0 -9
- package/esm2015/components/dynamic-form/components/fields/bignumber/bignumber-field.component.js +0 -113
- package/esm2015/components/dynamic-form/components/fields/bignumber/bignumber-field.module.js +0 -32
- package/esm2015/components/dynamic-form/components/fields/boolean/boolean-field.component.js +0 -20
- package/esm2015/components/dynamic-form/components/fields/boolean/boolean-switch-field.component.js +0 -17
- package/esm2015/components/dynamic-form/components/fields/button-field/button-field.component.js +0 -31
- package/esm2015/components/dynamic-form/components/fields/calendar/calendar-field.component.js +0 -106
- package/esm2015/components/dynamic-form/components/fields/checkbox/checkbox-field.component.js +0 -17
- package/esm2015/components/dynamic-form/components/fields/checkbox/checkbox-field.module.js +0 -17
- package/esm2015/components/dynamic-form/components/fields/chips/chips-field.component.js +0 -53
- package/esm2015/components/dynamic-form/components/fields/country-phone-picker/country-phone-picker-field.component.js +0 -32
- package/esm2015/components/dynamic-form/components/fields/currency/currency-field.component.js +0 -71
- package/esm2015/components/dynamic-form/components/fields/currency/currency-field.module.js +0 -30
- package/esm2015/components/dynamic-form/components/fields/editor/editor-field.component.js +0 -18
- package/esm2015/components/dynamic-form/components/fields/editor/editor-field.module.js +0 -18
- package/esm2015/components/dynamic-form/components/fields/file-upload/file-upload.component.js +0 -51
- package/esm2015/components/dynamic-form/components/fields/index.js +0 -22
- package/esm2015/components/dynamic-form/components/fields/lookup/lookup-field.component.js +0 -17
- package/esm2015/components/dynamic-form/components/fields/number/number-field.component.js +0 -109
- package/esm2015/components/dynamic-form/components/fields/number/number-field.module.js +0 -34
- package/esm2015/components/dynamic-form/components/fields/password/password-field.component.js +0 -77
- package/esm2015/components/dynamic-form/components/fields/password/password-field.module.js +0 -30
- package/esm2015/components/dynamic-form/components/fields/profile-picture/profile-picture-field.component.js +0 -17
- package/esm2015/components/dynamic-form/components/fields/profile-picture/profile-picture-field.module.js +0 -24
- package/esm2015/components/dynamic-form/components/fields/radio-button/radio-button-field.component.js +0 -60
- package/esm2015/components/dynamic-form/components/fields/select/select-field.component.js +0 -18
- package/esm2015/components/dynamic-form/components/fields/slider/slider-field.component.js +0 -111
- package/esm2015/components/dynamic-form/components/fields/text/text-field.component.js +0 -86
- package/esm2015/components/dynamic-form/components/fields/text/text-field.module.js +0 -32
- package/esm2015/components/dynamic-form/components/fields/text-area/text-area-field.component.js +0 -26
- package/esm2015/components/dynamic-form/components/fields/text-area-ia/text-area-ia-field.component.js +0 -92
- package/esm2015/components/dynamic-form/components/grid/row/row.component.js +0 -77
- package/esm2015/components/dynamic-form/components/lookup/lookup.component.js +0 -585
- package/esm2015/components/dynamic-form/components/lookup/models/default-filter.js +0 -1
- package/esm2015/components/dynamic-form/components/lookup/models/index.js +0 -1
- package/esm2015/components/dynamic-form/components/structure/base-structure-component.js +0 -1
- package/esm2015/components/dynamic-form/components/structure/fieldset/fieldset.component.js +0 -31
- package/esm2015/components/dynamic-form/components/structure/section/section.component.js +0 -52
- package/esm2015/components/dynamic-form/configurations/addon-config.js +0 -1
- package/esm2015/components/dynamic-form/configurations/dynamic-config.js +0 -71
- package/esm2015/components/dynamic-form/configurations/dynamic-type.js +0 -26
- package/esm2015/components/dynamic-form/configurations/field-size.js +0 -9
- package/esm2015/components/dynamic-form/configurations/field-type.js +0 -32
- package/esm2015/components/dynamic-form/configurations/fields/autocomplete-field.js +0 -11
- package/esm2015/components/dynamic-form/configurations/fields/bignumber-field.js +0 -23
- package/esm2015/components/dynamic-form/configurations/fields/blob-field.js +0 -19
- package/esm2015/components/dynamic-form/configurations/fields/boolean-field.js +0 -21
- package/esm2015/components/dynamic-form/configurations/fields/boolean-switch-field.js +0 -13
- package/esm2015/components/dynamic-form/configurations/fields/button-field.js +0 -30
- package/esm2015/components/dynamic-form/configurations/fields/calendar-field.js +0 -37
- package/esm2015/components/dynamic-form/configurations/fields/checkbox-field.js +0 -8
- package/esm2015/components/dynamic-form/configurations/fields/chips-field.js +0 -17
- package/esm2015/components/dynamic-form/configurations/fields/country-phone-picker-field.js +0 -11
- package/esm2015/components/dynamic-form/configurations/fields/currency-field.js +0 -12
- package/esm2015/components/dynamic-form/configurations/fields/decimal-field.js +0 -14
- package/esm2015/components/dynamic-form/configurations/fields/editor-field.js +0 -11
- package/esm2015/components/dynamic-form/configurations/fields/field.js +0 -41
- package/esm2015/components/dynamic-form/configurations/fields/index.js +0 -22
- package/esm2015/components/dynamic-form/configurations/fields/lookup-field.js +0 -33
- package/esm2015/components/dynamic-form/configurations/fields/number-field.js +0 -23
- package/esm2015/components/dynamic-form/configurations/fields/password-field.js +0 -20
- package/esm2015/components/dynamic-form/configurations/fields/profile-picture.js +0 -21
- package/esm2015/components/dynamic-form/configurations/fields/radio-button-field.js +0 -19
- package/esm2015/components/dynamic-form/configurations/fields/select-field.js +0 -26
- package/esm2015/components/dynamic-form/configurations/fields/slider-field.js +0 -21
- package/esm2015/components/dynamic-form/configurations/fields/text-area-field.js +0 -20
- package/esm2015/components/dynamic-form/configurations/fields/text-area-ia-field.js +0 -21
- package/esm2015/components/dynamic-form/configurations/fields/text-field.js +0 -24
- package/esm2015/components/dynamic-form/configurations/form-field.js +0 -92
- package/esm2015/components/dynamic-form/configurations/grid/grid.js +0 -10
- package/esm2015/components/dynamic-form/configurations/grid/row.js +0 -7
- package/esm2015/components/dynamic-form/configurations/grid-type.js +0 -5
- package/esm2015/components/dynamic-form/configurations/structure/fieldset.js +0 -8
- package/esm2015/components/dynamic-form/configurations/structure/section.js +0 -29
- package/esm2015/components/dynamic-form/configurations/structure/structure.js +0 -7
- package/esm2015/components/dynamic-form/configurations/structure-type.js +0 -6
- package/esm2015/components/dynamic-form/dynamic-form.component.js +0 -32
- package/esm2015/components/dynamic-form/dynamic-form.directive.js +0 -80
- package/esm2015/components/dynamic-form/dynamic-form.js +0 -196
- package/esm2015/components/dynamic-form/dynamic-form.module.js +0 -191
- package/esm2015/components/dynamic-form/index.js +0 -31
- package/esm2015/components/dynamic-form/services/IAssist/iassist.service.js +0 -75
- package/esm2015/components/dynamic-form/services/IAssist/models/iassist-input-data.js +0 -1
- package/esm2015/components/dynamic-form/services/IAssist/models/iassist-response.js +0 -1
- package/esm2015/components/dynamic-form/services/IAssist/models/index.js +0 -1
- package/esm2015/components/editable-overlay/editable-overlay.directive.js +0 -42
- package/esm2015/components/editable-overlay/editable-overlay.module.js +0 -15
- package/esm2015/components/editable-overlay/index.js +0 -3
- package/esm2015/components/empty-state/empty-state.component.js +0 -57
- package/esm2015/components/empty-state/empty-state.module.js +0 -19
- package/esm2015/components/empty-state/go-back/go-back.component.js +0 -37
- package/esm2015/components/empty-state/index.js +0 -3
- package/esm2015/components/fieldset/fieldset.component.js +0 -68
- package/esm2015/components/fieldset/fieldset.models.js +0 -1
- package/esm2015/components/fieldset/fieldset.module.js +0 -16
- package/esm2015/components/fieldset/index.js +0 -3
- package/esm2015/components/file-upload/file-upload.component.js +0 -285
- package/esm2015/components/file-upload/file-upload.module.js +0 -27
- package/esm2015/components/file-upload/file-upload.service.js +0 -19
- package/esm2015/components/file-upload/index.js +0 -4
- package/esm2015/components/file-upload/models/file-dto.js +0 -1
- package/esm2015/components/file-upload/models/file-upload-permissions.js +0 -12
- package/esm2015/components/file-upload/models/index.js +0 -3
- package/esm2015/components/file-upload/models/list-blob-metadata.js +0 -1
- package/esm2015/components/file-upload/models/uploadError.js +0 -1
- package/esm2015/components/file-upload/models/validate-errors.js +0 -8
- package/esm2015/components/gantt/components/gantt/arrow.js +0 -82
- package/esm2015/components/gantt/components/gantt/bar.js +0 -264
- package/esm2015/components/gantt/components/gantt/gantt-options.js +0 -20
- package/esm2015/components/gantt/components/gantt/gantt.js +0 -808
- package/esm2015/components/gantt/components/gantt/popup.js +0 -100
- package/esm2015/components/gantt/components/gantt/utils/date-utils.js +0 -127
- package/esm2015/components/gantt/components/gantt/utils/svg-utils.js +0 -119
- package/esm2015/components/gantt/components/side-table/side-table.component.js +0 -32
- package/esm2015/components/gantt/gantt.component.js +0 -160
- package/esm2015/components/gantt/gantt.module.js +0 -20
- package/esm2015/components/gantt/index.js +0 -4
- package/esm2015/components/gantt/models/index.js +0 -2
- package/esm2015/components/gantt/models/options.js +0 -1
- package/esm2015/components/gantt/models/task.js +0 -1
- package/esm2015/components/gantt/models/view-mode.js +0 -12
- package/esm2015/components/global-search/elements/dropdown/global-search-dropdown-item.component.js +0 -76
- package/esm2015/components/global-search/global-search-size.enum.js +0 -7
- package/esm2015/components/global-search/global-search.component.js +0 -135
- package/esm2015/components/global-search/global-search.module.js +0 -50
- package/esm2015/components/global-search/index.js +0 -5
- package/esm2015/components/grid-menu/components/grid-menu-item/grid-menu-item.component.js +0 -66
- package/esm2015/components/grid-menu/grid-menu.component.js +0 -61
- package/esm2015/components/grid-menu/grid-menu.module.js +0 -17
- package/esm2015/components/grid-menu/index.js +0 -3
- package/esm2015/components/grid-menu/types/grid-menu-item.js +0 -1
- package/esm2015/components/help-popover/help-popover/help-popover.component.js +0 -82
- package/esm2015/components/help-popover/help-popover.directive.js +0 -328
- package/esm2015/components/help-popover/help-popover.module.js +0 -20
- package/esm2015/components/help-popover/index.js +0 -4
- package/esm2015/components/help-popover/models/help-popover.models.js +0 -1
- package/esm2015/components/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.js +0 -13
- package/esm2015/components/ia-insight/components/ia-insight-card/ia-insight-card.component.js +0 -94
- package/esm2015/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.js +0 -60
- package/esm2015/components/ia-insight/ia-insight.component.js +0 -82
- package/esm2015/components/ia-insight/ia-insight.module.js +0 -40
- package/esm2015/components/ia-insight/index.js +0 -4
- package/esm2015/components/ia-insight/models/ia-insight-item.js +0 -1
- package/esm2015/components/ia-insight/models/ia-insight-template-types.js +0 -7
- package/esm2015/components/ia-insight/models/index.js +0 -2
- package/esm2015/components/image-cropper/image-cropper.component.js +0 -183
- package/esm2015/components/image-cropper/image-cropper.module.js +0 -20
- package/esm2015/components/image-cropper/image-cropper.service.js +0 -62
- package/esm2015/components/image-cropper/index.js +0 -4
- package/esm2015/components/index.js +0 -77
- package/esm2015/components/infinite-scroll/infinite-scroll.directive.js +0 -30
- package/esm2015/components/infinite-scroll/infinite-scroll.module.js +0 -21
- package/esm2015/components/info-sign/index.js +0 -3
- package/esm2015/components/info-sign/info-sign.component.js +0 -13
- package/esm2015/components/info-sign/info-sign.directive.js +0 -68
- package/esm2015/components/info-sign/info-sign.module.js +0 -24
- package/esm2015/components/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.js +0 -51
- package/esm2015/components/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.js +0 -30
- package/esm2015/components/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.js +0 -75
- package/esm2015/components/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.js +0 -30
- package/esm2015/components/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.js +0 -30
- package/esm2015/components/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.js +0 -30
- package/esm2015/components/inline-edit/components/index.js +0 -8
- package/esm2015/components/inline-edit/components/inline-edit-item/inline-edit-item.component.js +0 -98
- package/esm2015/components/inline-edit/fields/index.js +0 -8
- package/esm2015/components/inline-edit/fields/inline-edit-calendar-field.js +0 -26
- package/esm2015/components/inline-edit/fields/inline-edit-field.js +0 -9
- package/esm2015/components/inline-edit/fields/inline-edit-lookup-field.js +0 -32
- package/esm2015/components/inline-edit/fields/inline-edit-number-field.js +0 -24
- package/esm2015/components/inline-edit/fields/inline-edit-text-area-field.js +0 -11
- package/esm2015/components/inline-edit/fields/inline-edit-text-area-ia-field.js +0 -7
- package/esm2015/components/inline-edit/fields/inline-edit-text-field.js +0 -7
- package/esm2015/components/inline-edit/index.js +0 -4
- package/esm2015/components/inline-edit/inline-edit.component.js +0 -70
- package/esm2015/components/inline-edit/inline-edit.module.js +0 -62
- package/esm2015/components/kanban/components/kanban-column/kanban-column.component.js +0 -96
- package/esm2015/components/kanban/components/kanban-item/kanban-item.component.js +0 -60
- package/esm2015/components/kanban/components/kanban-item-dragging/kanban-item-dragging.component.js +0 -19
- package/esm2015/components/kanban/index.js +0 -4
- package/esm2015/components/kanban/kanban-event.service.js +0 -27
- package/esm2015/components/kanban/kanban.component.js +0 -217
- package/esm2015/components/kanban/kanban.module.js +0 -45
- package/esm2015/components/kanban/models/index.js +0 -2
- package/esm2015/components/kanban/models/kanban-data.js +0 -1
- package/esm2015/components/kanban/models/kanban-template-types.js +0 -9
- package/esm2015/components/label-value/index.js +0 -3
- package/esm2015/components/label-value/label-value.component.js +0 -31
- package/esm2015/components/label-value/label-value.module.js +0 -20
- package/esm2015/components/label-value/types/label-value-configuration.js +0 -1
- package/esm2015/components/loading-state/components/dots-indicator/dots-indicator.components.js +0 -13
- package/esm2015/components/loading-state/components/loading-state-indicators.js +0 -6
- package/esm2015/components/loading-state/components/logo-indicator/logo-indicator.component.js +0 -13
- package/esm2015/components/loading-state/index.js +0 -4
- package/esm2015/components/loading-state/loading-state.component.js +0 -73
- package/esm2015/components/loading-state/loading-state.directive.js +0 -60
- package/esm2015/components/loading-state/loading-state.module.js +0 -31
- package/esm2015/components/locale/index.js +0 -11
- package/esm2015/components/locale/locale.module.js +0 -71
- package/esm2015/components/locale/locale.service.js +0 -89
- package/esm2015/components/locale/options/calendar.js +0 -29
- package/esm2015/components/locale/options/index.js +0 -24
- package/esm2015/components/locale/options/number.js +0 -9
- package/esm2015/components/locale/pipes/localized-bignumber-impure.pipe.js +0 -16
- package/esm2015/components/locale/pipes/localized-bignumber.pipe.js +0 -39
- package/esm2015/components/locale/pipes/localized-currency-impure.pipe.js +0 -19
- package/esm2015/components/locale/pipes/localized-currency.pipe.js +0 -53
- package/esm2015/components/locale/pipes/localized-date-impure.pipe.js +0 -13
- package/esm2015/components/locale/pipes/localized-date.pipe.js +0 -24
- package/esm2015/components/locale/pipes/localized-number.pipe.js +0 -31
- package/esm2015/components/locale/pipes/localized-time-impure.pipe.js +0 -13
- package/esm2015/components/locale/pipes/localized-time.pipe.js +0 -24
- package/esm2015/components/locale/pipes/numeric.pipe.js +0 -28
- package/esm2015/components/locale/services/numeric.service.js +0 -86
- package/esm2015/components/localized-number-input/index.js +0 -3
- package/esm2015/components/localized-number-input/localized-number-input.directive.js +0 -58
- package/esm2015/components/localized-number-input/localized-number-input.module.js +0 -15
- package/esm2015/components/mask/index.js +0 -3
- package/esm2015/components/mask/mask-formatter.module.js +0 -13
- package/esm2015/components/mask/mask-formatter.pipe.js +0 -71
- package/esm2015/components/mouse-events/double-click.directive.js +0 -38
- package/esm2015/components/mouse-events/index.js +0 -4
- package/esm2015/components/mouse-events/long-press.directive.js +0 -49
- package/esm2015/components/mouse-events/mouse-events.module.js +0 -22
- package/esm2015/components/navigation-button/index.js +0 -3
- package/esm2015/components/navigation-button/models/index.js +0 -1
- package/esm2015/components/navigation-button/models/navigation-button-item.js +0 -1
- package/esm2015/components/navigation-button/models/navigation-button-step-changed-info.js +0 -1
- package/esm2015/components/navigation-button/navigation-button.component.js +0 -126
- package/esm2015/components/navigation-button/navigation-button.module.js +0 -17
- package/esm2015/components/number-input/index.js +0 -3
- package/esm2015/components/number-input/number-input.directive.js +0 -162
- package/esm2015/components/number-input/number-input.module.js +0 -18
- package/esm2015/components/object-card/elements/field/object-card-field.component.js +0 -53
- package/esm2015/components/object-card/elements/main/object-card-main.component.js +0 -93
- package/esm2015/components/object-card/index.js +0 -5
- package/esm2015/components/object-card/object-card.component.js +0 -137
- package/esm2015/components/object-card/object-card.module.js +0 -21
- package/esm2015/components/panel/index.js +0 -3
- package/esm2015/components/panel/panel.component.js +0 -84
- package/esm2015/components/panel/panel.module.js +0 -17
- package/esm2015/components/password-strength/index.js +0 -5
- package/esm2015/components/password-strength/models/index.js +0 -3
- package/esm2015/components/password-strength/models/password-positions.js +0 -7
- package/esm2015/components/password-strength/models/password-strengths.js +0 -8
- package/esm2015/components/password-strength/password-strength.component.js +0 -95
- package/esm2015/components/password-strength/password-strength.directive.js +0 -196
- package/esm2015/components/password-strength/password-strength.module.js +0 -19
- package/esm2015/components/picklist/index.js +0 -5
- package/esm2015/components/picklist/picklist/models/picklist-models.js +0 -6
- package/esm2015/components/picklist/picklist/picklist.component.js +0 -305
- package/esm2015/components/picklist/picklist.module.js +0 -25
- package/esm2015/components/product-header/index.js +0 -3
- package/esm2015/components/product-header/product-header.component.js +0 -45
- package/esm2015/components/product-header/product-header.module.js +0 -17
- package/esm2015/components/profile-picture-picker/index.js +0 -4
- package/esm2015/components/profile-picture-picker/models/confirmation-texts.js +0 -1
- package/esm2015/components/profile-picture-picker/models/cropper-labels-config.js +0 -1
- package/esm2015/components/profile-picture-picker/models/file-validation-errors.js +0 -8
- package/esm2015/components/profile-picture-picker/models/index.js +0 -2
- package/esm2015/components/profile-picture-picker/models/profile-picture-picker-data.js +0 -1
- package/esm2015/components/profile-picture-picker/profile-picture-picker.component.js +0 -262
- package/esm2015/components/profile-picture-picker/profile-picture-picker.module.js +0 -33
- package/esm2015/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.js +0 -61
- package/esm2015/components/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.js +0 -19
- package/esm2015/components/progressbar/index.js +0 -4
- package/esm2015/components/progressbar/models/index.js +0 -3
- package/esm2015/components/progressbar/models/progressbar-colors.js +0 -8
- package/esm2015/components/progressbar/models/progressbar-mode.js +0 -6
- package/esm2015/components/progressbar/progressbar.component.js +0 -62
- package/esm2015/components/progressbar/progressbar.module.js +0 -21
- package/esm2015/components/rating-scale/index.js +0 -3
- package/esm2015/components/rating-scale/models/index.js +0 -1
- package/esm2015/components/rating-scale/models/rating-scale-node.js +0 -1
- package/esm2015/components/rating-scale/rating-scale.component.js +0 -52
- package/esm2015/components/rating-scale/rating-scale.module.js +0 -19
- package/esm2015/components/select-button/components/select-button-item/select-button-item.component.js +0 -34
- package/esm2015/components/select-button/index.js +0 -3
- package/esm2015/components/select-button/models/index.js +0 -1
- package/esm2015/components/select-button/models/select-button-item.js +0 -1
- package/esm2015/components/select-button/select-button.component.js +0 -114
- package/esm2015/components/select-button/select-button.module.js +0 -19
- package/esm2015/components/shared/border-button/border-button.component.js +0 -26
- package/esm2015/components/shared/border-button/border-button.module.js +0 -16
- package/esm2015/components/shared/helpers.js +0 -30
- package/esm2015/components/shared/index.js +0 -3
- package/esm2015/components/shared/models/border-button-options.js +0 -1
- package/esm2015/components/shared/models/enum-severity.js +0 -9
- package/esm2015/components/sidebar/index.js +0 -3
- package/esm2015/components/sidebar/sidebar.component.js +0 -72
- package/esm2015/components/sidebar/sidebar.module.js +0 -19
- package/esm2015/components/slide-panel/index.js +0 -3
- package/esm2015/components/slide-panel/slide-panel.component.js +0 -140
- package/esm2015/components/slide-panel/slide-panel.module.js +0 -17
- package/esm2015/components/slide-panel/slide-panel.service.js +0 -27
- package/esm2015/components/slider/index.js +0 -3
- package/esm2015/components/slider/slider.component.js +0 -620
- package/esm2015/components/slider/slider.module.js +0 -16
- package/esm2015/components/speech-recognition/speech-recognition/speech-recognition.component.js +0 -224
- package/esm2015/components/speech-recognition/speech-recognition.module.js +0 -19
- package/esm2015/components/speech-recognition/speech-recognition.service.js +0 -151
- package/esm2015/components/speech-recognition/text-to-speech.service.js +0 -84
- package/esm2015/components/split-button/index.js +0 -4
- package/esm2015/components/split-button/models/split-button-option.js +0 -1
- package/esm2015/components/split-button/models/split-button-type.js +0 -7
- package/esm2015/components/split-button/split-button.component.js +0 -68
- package/esm2015/components/split-button/split-button.module.js +0 -15
- package/esm2015/components/stats-card/index.js +0 -3
- package/esm2015/components/stats-card/stats-card.component.js +0 -124
- package/esm2015/components/stats-card/stats-card.module.js +0 -23
- package/esm2015/components/steps/index.js +0 -3
- package/esm2015/components/steps/steps.component.js +0 -97
- package/esm2015/components/steps/steps.module.js +0 -16
- package/esm2015/components/structure/footer.component.js +0 -12
- package/esm2015/components/structure/header.component.js +0 -18
- package/esm2015/components/structure/index.js +0 -4
- package/esm2015/components/structure/structure.module.js +0 -16
- package/esm2015/components/switch/index.js +0 -3
- package/esm2015/components/switch/switch.component.js +0 -92
- package/esm2015/components/switch/switch.module.js +0 -15
- package/esm2015/components/table/frozen-position/frozen-position.directive.js +0 -203
- package/esm2015/components/table/index.js +0 -6
- package/esm2015/components/table/navigation/navigation.directive.js +0 -134
- package/esm2015/components/table/row-toggler/row-toggler.directive.js +0 -36
- package/esm2015/components/table/table-column/index.js +0 -2
- package/esm2015/components/table/table-column/models/badge-column.interface.js +0 -1
- package/esm2015/components/table/table-column/models/badge-configs.interface.js +0 -1
- package/esm2015/components/table/table-column/models/column-colors.js +0 -1
- package/esm2015/components/table/table-column/models/column-values.interface.js +0 -1
- package/esm2015/components/table/table-column/models/column.interface.js +0 -1
- package/esm2015/components/table/table-column/models/dynamic-editable-grid.interface.js +0 -1
- package/esm2015/components/table/table-column/models/enum-badge-colors.js +0 -10
- package/esm2015/components/table/table-column/models/enum-column-field-type.js +0 -13
- package/esm2015/components/table/table-column/models/index.js +0 -3
- package/esm2015/components/table/table-column/models/locale-options.interface.js +0 -1
- package/esm2015/components/table/table-column/models/number-locale-options.interface.js +0 -1
- package/esm2015/components/table/table-column/table-columns.component.js +0 -285
- package/esm2015/components/table/table-paging/index.js +0 -1
- package/esm2015/components/table/table-paging/models/custom-action.interface.js +0 -1
- package/esm2015/components/table/table-paging/models/index.js +0 -1
- package/esm2015/components/table/table-paging/table-paging.component.js +0 -313
- package/esm2015/components/table/table.module.js +0 -45
- package/esm2015/components/table-header/index.js +0 -3
- package/esm2015/components/table-header/table-header-checkbox.component.js +0 -141
- package/esm2015/components/table-header/table-header-checkox.module.js +0 -15
- package/esm2015/components/template/index.js +0 -3
- package/esm2015/components/template/template.directive.js +0 -20
- package/esm2015/components/template/template.module.js +0 -15
- package/esm2015/components/text-area/index.js +0 -3
- package/esm2015/components/text-area/text-area/text-area.component.js +0 -115
- package/esm2015/components/text-area/text-area.module.js +0 -24
- package/esm2015/components/text-area-ia/index.js +0 -3
- package/esm2015/components/text-area-ia/text-area-ia.component.js +0 -144
- package/esm2015/components/text-area-ia/text-area-ia.module.js +0 -32
- package/esm2015/components/thumbnail/index.js +0 -4
- package/esm2015/components/thumbnail/thumbnail-size.js +0 -7
- package/esm2015/components/thumbnail/thumbnail.component.js +0 -80
- package/esm2015/components/thumbnail/thumbnail.module.js +0 -17
- package/esm2015/components/thumbnail/thumbnail.service.js +0 -61
- package/esm2015/components/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.js +0 -16
- package/esm2015/components/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.js +0 -41
- package/esm2015/components/thumbnails/components/thumbnail-item/thumbnail-item.component.js +0 -66
- package/esm2015/components/thumbnails/index.js +0 -3
- package/esm2015/components/thumbnails/models/thumbnails-item.js +0 -1
- package/esm2015/components/thumbnails/thumbnails.component.js +0 -56
- package/esm2015/components/thumbnails/thumbnails.module.js +0 -21
- package/esm2015/components/tiered-menu/components/tiered-menu/tiered-menu.component.js +0 -283
- package/esm2015/components/tiered-menu/components/tiered-menu-divider/tiered-menu-divider.component.js +0 -13
- package/esm2015/components/tiered-menu/components/tiered-menu-item/tiered-menu-item.component.js +0 -76
- package/esm2015/components/tiered-menu/components/tiered-menu-nested/tiered-menu-nested.component.js +0 -178
- package/esm2015/components/tiered-menu/index.js +0 -3
- package/esm2015/components/tiered-menu/models/index.js +0 -1
- package/esm2015/components/tiered-menu/models/tiered-menu-item-data.js +0 -1
- package/esm2015/components/tiered-menu/models/tiered-menu-item-internal-data.js +0 -1
- package/esm2015/components/tiered-menu/services/tiered-menu.event.service.js +0 -18
- package/esm2015/components/tiered-menu/services/tiered-menu.global.service.js +0 -9
- package/esm2015/components/tiered-menu/services/tiered-menu.service.js +0 -51
- package/esm2015/components/tiered-menu/tiered-menu.directive.js +0 -220
- package/esm2015/components/tiered-menu/tiered-menu.module.js +0 -29
- package/esm2015/components/tiered-menu/utils.js +0 -7
- package/esm2015/components/tile/index.js +0 -3
- package/esm2015/components/tile/tile.component.js +0 -71
- package/esm2015/components/tile/tile.module.js +0 -24
- package/esm2015/components/timeline/components/horizontal-timeline/horizontal-timeline.component.js +0 -25
- package/esm2015/components/timeline/components/horizontal-timeline/horizontal-timeline.module.js +0 -21
- package/esm2015/components/timeline/components/timeline-icon-item/timeline-icon-item.component.js +0 -25
- package/esm2015/components/timeline/components/timeline-icon-item/timeline-icon-item.module.js +0 -19
- package/esm2015/components/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.js +0 -26
- package/esm2015/components/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.js +0 -35
- package/esm2015/components/timeline/components/vertical-timeline/components/range-line/range-line.component.js +0 -13
- package/esm2015/components/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.js +0 -28
- package/esm2015/components/timeline/components/vertical-timeline/vertical-timeline.component.js +0 -53
- package/esm2015/components/timeline/components/vertical-timeline/vertical-timeline.module.js +0 -29
- package/esm2015/components/timeline/index.js +0 -4
- package/esm2015/components/timeline/models/index.js +0 -4
- package/esm2015/components/timeline/models/timeline-item-severity.js +0 -7
- package/esm2015/components/timeline/models/timeline-item-size.js +0 -6
- package/esm2015/components/timeline/models/timeline-item.js +0 -37
- package/esm2015/components/timeline/timeline.component.js +0 -66
- package/esm2015/components/timeline/timeline.module.js +0 -27
- package/esm2015/components/toast/index.js +0 -4
- package/esm2015/components/toast/toast.component.js +0 -51
- package/esm2015/components/toast/toast.module.js +0 -14
- package/esm2015/components/toast/toast.service.js +0 -68
- package/esm2015/components/toast/types/toast.js +0 -1
- package/esm2015/components/token-list/index.js +0 -3
- package/esm2015/components/token-list/models/index.js +0 -1
- package/esm2015/components/token-list/models/token.js +0 -1
- package/esm2015/components/token-list/token-list.component.js +0 -50
- package/esm2015/components/token-list/token-list.module.js +0 -15
- package/esm2015/components/tooltip/index.js +0 -3
- package/esm2015/components/tooltip/models/index.js +0 -4
- package/esm2015/components/tooltip/models/mobile-behavior.js +0 -6
- package/esm2015/components/tooltip/models/tooltip-event.js +0 -6
- package/esm2015/components/tooltip/models/tooltip-position.js +0 -8
- package/esm2015/components/tooltip/tooltip.component.js +0 -21
- package/esm2015/components/tooltip/tooltip.directive.js +0 -331
- package/esm2015/components/tooltip/tooltip.module.js +0 -19
- package/esm2015/components/tree/Models/tree.models.js +0 -1
- package/esm2015/components/tree/components/tree-node-item/tree-node-item.component.js +0 -154
- package/esm2015/components/tree/index.js +0 -3
- package/esm2015/components/tree/tree.component.js +0 -254
- package/esm2015/components/tree/tree.module.js +0 -20
- package/esm2015/components/utils/breakpoints.js +0 -11
- package/esm2015/components/utils/debouce.js +0 -35
- package/esm2015/components/utils/export-utils.js +0 -89
- package/esm2015/components/utils/index.js +0 -6
- package/esm2015/components/utils/locale-utils.js +0 -15
- package/esm2015/components/utils/utils.js +0 -44
- package/esm2015/components/workspace-switch/index.js +0 -3
- package/esm2015/components/workspace-switch/models/index.js +0 -1
- package/esm2015/components/workspace-switch/models/workspace.js +0 -1
- package/esm2015/components/workspace-switch/workspace-switch.component.js +0 -143
- package/esm2015/components/workspace-switch/workspace-switch.module.js +0 -15
- package/esm2015/locale/fallback.js +0 -333
- package/esm2015/public-api.js +0 -5
- package/esm2015/seniorsistemas-angular-components.js +0 -117
- package/esm2015/utils/currency/currency.service.js +0 -189
- package/esm2015/utils/currency/index.js +0 -2
- package/esm2015/utils/index.js +0 -3
- package/esm2015/utils/svg-factory/components/iassist-icon/iassist-icon.component.js +0 -11
- package/esm2015/utils/svg-factory/components/senior-icon/senior-icon.component.js +0 -11
- package/esm2015/utils/svg-factory/components/svg-factory-icons.js +0 -6
- package/esm2015/utils/svg-factory/index.js +0 -3
- package/esm2015/utils/svg-factory/svg-factory.directive.js +0 -49
- package/esm2015/utils/svg-factory/svg-factory.module.js +0 -21
- package/esm5/angular-components.module.js +0 -26
- package/esm5/components/accessibility-events/accessibility-events.module.js +0 -20
- package/esm5/components/accessibility-events/directives/accessibility-event.directive.js +0 -67
- package/esm5/components/accessibility-events/index.js +0 -3
- package/esm5/components/accordion/accordion.component.js +0 -115
- package/esm5/components/accordion/accordion.module.js +0 -34
- package/esm5/components/accordion/components/accordion-panel/accordion-panel.component.js +0 -124
- package/esm5/components/accordion/index.js +0 -4
- package/esm5/components/accordion/models/accordion-button-settings.js +0 -1
- package/esm5/components/accordion/models/accordion-switch-settings.js +0 -1
- package/esm5/components/alert/alert.component.js +0 -52
- package/esm5/components/alert/alert.module.js +0 -18
- package/esm5/components/alert/index.js +0 -3
- package/esm5/components/badge/badge.component.js +0 -62
- package/esm5/components/badge/badge.module.js +0 -20
- package/esm5/components/badge/index.js +0 -4
- package/esm5/components/badge/models/badge-colors.js +0 -12
- package/esm5/components/badge/models/badge-types.js +0 -6
- package/esm5/components/badge/models/index.js +0 -3
- package/esm5/components/bignumber-input/bignumber-input.directive.js +0 -153
- package/esm5/components/bignumber-input/bignumber-input.module.js +0 -18
- package/esm5/components/bignumber-input/index.js +0 -3
- package/esm5/components/breadcrumb/breadcrumb.component.js +0 -95
- package/esm5/components/breadcrumb/breadcrumb.module.js +0 -20
- package/esm5/components/breadcrumb/index.js +0 -3
- package/esm5/components/button/button.component.js +0 -141
- package/esm5/components/button/button.module.js +0 -23
- package/esm5/components/button/index.js +0 -6
- package/esm5/components/button/models/button-animation.js +0 -5
- package/esm5/components/button/models/button-badge-config.js +0 -1
- package/esm5/components/button/models/button-priority.js +0 -9
- package/esm5/components/button/models/button-size.js +0 -6
- package/esm5/components/calendar-mask/calendar-mask.directive.js +0 -584
- package/esm5/components/calendar-mask/calendar-mask.module.js +0 -18
- package/esm5/components/calendar-mask/index.js +0 -3
- package/esm5/components/card/card.component.js +0 -79
- package/esm5/components/card/card.module.js +0 -19
- package/esm5/components/card/index.js +0 -4
- package/esm5/components/card/models/card-template-types.js +0 -7
- package/esm5/components/chat/chat.component.js +0 -34
- package/esm5/components/chat/chat.module.js +0 -21
- package/esm5/components/chat/components/chat-message/chat-message.component.js +0 -29
- package/esm5/components/chat/index.js +0 -3
- package/esm5/components/chat/types/chat-message.js +0 -1
- package/esm5/components/checkbox/checkbox.component.js +0 -116
- package/esm5/components/checkbox/checkbox.module.js +0 -19
- package/esm5/components/checkbox/index.js +0 -3
- package/esm5/components/checkbox/models/checkbox-data.js +0 -1
- package/esm5/components/checkbox/models/checkbox-state.js +0 -1
- package/esm5/components/checkbox/models/index.js +0 -1
- package/esm5/components/chips/chip-item/chip-item.component.js +0 -77
- package/esm5/components/chips/chips/chips.component.js +0 -235
- package/esm5/components/chips/chips.module.js +0 -27
- package/esm5/components/chips/index.js +0 -3
- package/esm5/components/chips/models/chip-models.js +0 -1
- package/esm5/components/code-editor/code-editor.component.js +0 -131
- package/esm5/components/code-editor/code-editor.module.js +0 -27
- package/esm5/components/code-editor/core/facades/core-facade.js +0 -102
- package/esm5/components/code-editor/core/facades/linter-facade.js +0 -1
- package/esm5/components/code-editor/core/models/enums/marker-severity.js +0 -7
- package/esm5/components/code-editor/core/models/index.js +0 -3
- package/esm5/components/code-editor/core/models/interfaces/marker.js +0 -1
- package/esm5/components/code-editor/core/use-cases/core-linters.js +0 -13
- package/esm5/components/code-editor/index.js +0 -5
- package/esm5/components/code-editor/infra/cores/codemirror-6/codemirror-6-core.js +0 -132
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/editor-languages.js +0 -21
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/json/json.language.js +0 -25
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-empty-state.js +0 -29
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-loading-state.js +0 -29
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper-style.js +0 -17
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper.js +0 -68
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/index.js +0 -4
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-style.js +0 -35
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.js +0 -355
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.service.js +0 -46
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/base-configs.js +0 -19
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/grammar.js +0 -2
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/completion-types.js +0 -10
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/enum-type-order.js +0 -8
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/keywords.js +0 -12
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/meta-type.js +0 -36
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/request-types.js +0 -9
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/index.js +0 -7
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/completion-Item.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/facade-metadata-name.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/fields-order-by.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/get-facade-metadata-by-path.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-context-metadata-by-id.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-expression-metadata.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-facade-metadata-names.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-expression-metadata.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-context-metadata.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-facade-metadata.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-field-metadata.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-page-request.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/tax-calculation-configs.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation-language-configs.js +0 -14
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation.language.js +0 -9
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-language-configs.js +0 -15
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.js +0 -27
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/index.js +0 -3
- package/esm5/components/code-editor/infra/cores/codemirror-6/models/index.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/models/types/editor-theme.js +0 -1
- package/esm5/components/code-editor/infra/cores/codemirror-6/themes/editor-themes.js +0 -19
- package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/autocomplete-tooltip.js +0 -61
- package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/font-style.js +0 -30
- package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/line-counter.js +0 -25
- package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/scrollbars.js +0 -18
- package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-highlight-style.js +0 -16
- package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-style.js +0 -13
- package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-theme.js +0 -22
- package/esm5/components/code-editor/infra/cores/codemirror-6/utils/convert-markers-to-diagnostics.js +0 -18
- package/esm5/components/code-editor/infra/cores/codemirror-6/utils/index.js +0 -3
- package/esm5/components/code-editor/infra/cores/codemirror-6/utils/is-current-position-inside-string.js +0 -6
- package/esm5/components/code-editor/infra/utils/custom-http-client/custom-http-client.js +0 -126
- package/esm5/components/code-editor/infra/utils/custom-http-client/json-response-formatters/format-blob-response.js +0 -21
- package/esm5/components/code-editor/infra/utils/custom-http-client/json-response-formatters/format-json-response.js +0 -14
- package/esm5/components/code-editor/infra/utils/custom-http-client/json-response-formatters/index.js +0 -3
- package/esm5/components/code-editor/infra/utils/custom-translations/custom-translations-service.js +0 -41
- package/esm5/components/code-editor/infra/utils/custom-translations/custom-translations.module.js +0 -31
- package/esm5/components/code-editor/infra/utils/custom-translations/index.js +0 -3
- package/esm5/components/code-editor/infra/utils/custom-translations/models/index.js +0 -1
- package/esm5/components/code-editor/infra/utils/custom-translations/models/interfaces/translations.js +0 -1
- package/esm5/components/code-editor/infra/utils/index.js +0 -3
- package/esm5/components/code-editor/models/enums/languages.js +0 -6
- package/esm5/components/code-editor/models/enums/themes.js +0 -5
- package/esm5/components/code-editor/models/index.js +0 -4
- package/esm5/components/code-editor/models/interfaces/editor-options.js +0 -1
- package/esm5/components/collapse-link/collapse-link.component.js +0 -75
- package/esm5/components/collapse-link/collapse-link.module.js +0 -18
- package/esm5/components/collapse-link/index.js +0 -3
- package/esm5/components/control-errors/control-errors.component.js +0 -40
- package/esm5/components/control-errors/control-errors.module.js +0 -19
- package/esm5/components/control-errors/index.js +0 -3
- package/esm5/components/country-phone-picker/country-phone-picker.component.js +0 -327
- package/esm5/components/country-phone-picker/country-phone-picker.module.js +0 -30
- package/esm5/components/country-phone-picker/country-phone-picker.service.js +0 -46
- package/esm5/components/country-phone-picker/index.js +0 -5
- package/esm5/components/country-phone-picker/models/country-phone-data.js +0 -1
- package/esm5/components/country-phone-picker/models/index.js +0 -2
- package/esm5/components/country-phone-picker/models/ordination.js +0 -7
- package/esm5/components/country-phone-picker/models/phone-selection-data.js +0 -1
- package/esm5/components/country-phone-picker/resources/countries.js +0 -228
- package/esm5/components/country-phone-picker/resources/index.js +0 -2
- package/esm5/components/custom-fields/custom-fields.component.js +0 -649
- package/esm5/components/custom-fields/custom-fields.module.js +0 -33
- package/esm5/components/custom-fields/custom-fields.service.js +0 -37
- package/esm5/components/custom-fields/index.js +0 -4
- package/esm5/components/custom-fields/models/custom-field-type.js +0 -17
- package/esm5/components/dynamic-form/components/dynamic-field/dynamic-field.component.js +0 -38
- package/esm5/components/dynamic-form/components/field-label/field-label.component.js +0 -21
- package/esm5/components/dynamic-form/components/field-label/field-label.module.js +0 -22
- package/esm5/components/dynamic-form/components/fields/autocomplete/autocomplete-field.component.js +0 -33
- package/esm5/components/dynamic-form/components/fields/base-field-component.js +0 -13
- package/esm5/components/dynamic-form/components/fields/bignumber/bignumber-field.component.js +0 -122
- package/esm5/components/dynamic-form/components/fields/bignumber/bignumber-field.module.js +0 -35
- package/esm5/components/dynamic-form/components/fields/boolean/boolean-field.component.js +0 -23
- package/esm5/components/dynamic-form/components/fields/boolean/boolean-switch-field.component.js +0 -20
- package/esm5/components/dynamic-form/components/fields/button-field/button-field.component.js +0 -34
- package/esm5/components/dynamic-form/components/fields/calendar/calendar-field.component.js +0 -107
- package/esm5/components/dynamic-form/components/fields/checkbox/checkbox-field.component.js +0 -20
- package/esm5/components/dynamic-form/components/fields/checkbox/checkbox-field.module.js +0 -20
- package/esm5/components/dynamic-form/components/fields/chips/chips-field.component.js +0 -55
- package/esm5/components/dynamic-form/components/fields/country-phone-picker/country-phone-picker-field.component.js +0 -33
- package/esm5/components/dynamic-form/components/fields/currency/currency-field.component.js +0 -75
- package/esm5/components/dynamic-form/components/fields/currency/currency-field.module.js +0 -33
- package/esm5/components/dynamic-form/components/fields/editor/editor-field.component.js +0 -23
- package/esm5/components/dynamic-form/components/fields/editor/editor-field.module.js +0 -21
- package/esm5/components/dynamic-form/components/fields/file-upload/file-upload.component.js +0 -55
- package/esm5/components/dynamic-form/components/fields/index.js +0 -22
- package/esm5/components/dynamic-form/components/fields/lookup/lookup-field.component.js +0 -20
- package/esm5/components/dynamic-form/components/fields/number/number-field.component.js +0 -122
- package/esm5/components/dynamic-form/components/fields/number/number-field.module.js +0 -37
- package/esm5/components/dynamic-form/components/fields/password/password-field.component.js +0 -79
- package/esm5/components/dynamic-form/components/fields/password/password-field.module.js +0 -33
- package/esm5/components/dynamic-form/components/fields/profile-picture/profile-picture-field.component.js +0 -20
- package/esm5/components/dynamic-form/components/fields/profile-picture/profile-picture-field.module.js +0 -27
- package/esm5/components/dynamic-form/components/fields/radio-button/radio-button-field.component.js +0 -51
- package/esm5/components/dynamic-form/components/fields/select/select-field.component.js +0 -23
- package/esm5/components/dynamic-form/components/fields/slider/slider-field.component.js +0 -123
- package/esm5/components/dynamic-form/components/fields/text/text-field.component.js +0 -94
- package/esm5/components/dynamic-form/components/fields/text/text-field.module.js +0 -35
- package/esm5/components/dynamic-form/components/fields/text-area/text-area-field.component.js +0 -27
- package/esm5/components/dynamic-form/components/fields/text-area-ia/text-area-ia-field.component.js +0 -94
- package/esm5/components/dynamic-form/components/grid/row/row.component.js +0 -37
- package/esm5/components/dynamic-form/components/lookup/lookup.component.js +0 -598
- package/esm5/components/dynamic-form/components/lookup/models/default-filter.js +0 -1
- package/esm5/components/dynamic-form/components/lookup/models/index.js +0 -1
- package/esm5/components/dynamic-form/components/structure/base-structure-component.js +0 -1
- package/esm5/components/dynamic-form/components/structure/fieldset/fieldset.component.js +0 -26
- package/esm5/components/dynamic-form/components/structure/section/section.component.js +0 -44
- package/esm5/components/dynamic-form/configurations/addon-config.js +0 -1
- package/esm5/components/dynamic-form/configurations/dynamic-config.js +0 -73
- package/esm5/components/dynamic-form/configurations/dynamic-type.js +0 -26
- package/esm5/components/dynamic-form/configurations/field-size.js +0 -12
- package/esm5/components/dynamic-form/configurations/field-type.js +0 -32
- package/esm5/components/dynamic-form/configurations/fields/autocomplete-field.js +0 -16
- package/esm5/components/dynamic-form/configurations/fields/bignumber-field.js +0 -28
- package/esm5/components/dynamic-form/configurations/fields/blob-field.js +0 -24
- package/esm5/components/dynamic-form/configurations/fields/boolean-field.js +0 -28
- package/esm5/components/dynamic-form/configurations/fields/boolean-switch-field.js +0 -18
- package/esm5/components/dynamic-form/configurations/fields/button-field.js +0 -35
- package/esm5/components/dynamic-form/configurations/fields/calendar-field.js +0 -42
- package/esm5/components/dynamic-form/configurations/fields/checkbox-field.js +0 -13
- package/esm5/components/dynamic-form/configurations/fields/chips-field.js +0 -22
- package/esm5/components/dynamic-form/configurations/fields/country-phone-picker-field.js +0 -16
- package/esm5/components/dynamic-form/configurations/fields/currency-field.js +0 -17
- package/esm5/components/dynamic-form/configurations/fields/decimal-field.js +0 -19
- package/esm5/components/dynamic-form/configurations/fields/editor-field.js +0 -16
- package/esm5/components/dynamic-form/configurations/fields/field.js +0 -49
- package/esm5/components/dynamic-form/configurations/fields/index.js +0 -22
- package/esm5/components/dynamic-form/configurations/fields/lookup-field.js +0 -51
- package/esm5/components/dynamic-form/configurations/fields/number-field.js +0 -28
- package/esm5/components/dynamic-form/configurations/fields/password-field.js +0 -25
- package/esm5/components/dynamic-form/configurations/fields/profile-picture.js +0 -26
- package/esm5/components/dynamic-form/configurations/fields/radio-button-field.js +0 -26
- package/esm5/components/dynamic-form/configurations/fields/select-field.js +0 -33
- package/esm5/components/dynamic-form/configurations/fields/slider-field.js +0 -26
- package/esm5/components/dynamic-form/configurations/fields/text-area-field.js +0 -25
- package/esm5/components/dynamic-form/configurations/fields/text-area-ia-field.js +0 -26
- package/esm5/components/dynamic-form/configurations/fields/text-field.js +0 -29
- package/esm5/components/dynamic-form/configurations/form-field.js +0 -96
- package/esm5/components/dynamic-form/configurations/grid/grid.js +0 -13
- package/esm5/components/dynamic-form/configurations/grid/row.js +0 -11
- package/esm5/components/dynamic-form/configurations/grid-type.js +0 -5
- package/esm5/components/dynamic-form/configurations/structure/fieldset.js +0 -13
- package/esm5/components/dynamic-form/configurations/structure/section.js +0 -34
- package/esm5/components/dynamic-form/configurations/structure/structure.js +0 -10
- package/esm5/components/dynamic-form/configurations/structure-type.js +0 -6
- package/esm5/components/dynamic-form/dynamic-form.component.js +0 -33
- package/esm5/components/dynamic-form/dynamic-form.directive.js +0 -85
- package/esm5/components/dynamic-form/dynamic-form.js +0 -215
- package/esm5/components/dynamic-form/dynamic-form.module.js +0 -194
- package/esm5/components/dynamic-form/index.js +0 -31
- package/esm5/components/dynamic-form/services/IAssist/iassist.service.js +0 -58
- package/esm5/components/dynamic-form/services/IAssist/models/iassist-input-data.js +0 -1
- package/esm5/components/dynamic-form/services/IAssist/models/iassist-response.js +0 -1
- package/esm5/components/dynamic-form/services/IAssist/models/index.js +0 -1
- package/esm5/components/editable-overlay/editable-overlay.directive.js +0 -45
- package/esm5/components/editable-overlay/editable-overlay.module.js +0 -18
- package/esm5/components/editable-overlay/index.js +0 -3
- package/esm5/components/empty-state/empty-state.component.js +0 -59
- package/esm5/components/empty-state/empty-state.module.js +0 -22
- package/esm5/components/empty-state/go-back/go-back.component.js +0 -38
- package/esm5/components/empty-state/index.js +0 -3
- package/esm5/components/fieldset/fieldset.component.js +0 -69
- package/esm5/components/fieldset/fieldset.models.js +0 -1
- package/esm5/components/fieldset/fieldset.module.js +0 -19
- package/esm5/components/fieldset/index.js +0 -3
- package/esm5/components/file-upload/file-upload.component.js +0 -304
- package/esm5/components/file-upload/file-upload.module.js +0 -30
- package/esm5/components/file-upload/file-upload.service.js +0 -22
- package/esm5/components/file-upload/index.js +0 -4
- package/esm5/components/file-upload/models/file-dto.js +0 -1
- package/esm5/components/file-upload/models/file-upload-permissions.js +0 -12
- package/esm5/components/file-upload/models/index.js +0 -3
- package/esm5/components/file-upload/models/list-blob-metadata.js +0 -1
- package/esm5/components/file-upload/models/uploadError.js +0 -1
- package/esm5/components/file-upload/models/validate-errors.js +0 -8
- package/esm5/components/gantt/components/gantt/arrow.js +0 -81
- package/esm5/components/gantt/components/gantt/bar.js +0 -299
- package/esm5/components/gantt/components/gantt/gantt-options.js +0 -20
- package/esm5/components/gantt/components/gantt/gantt.js +0 -924
- package/esm5/components/gantt/components/gantt/popup.js +0 -84
- package/esm5/components/gantt/components/gantt/utils/date-utils.js +0 -135
- package/esm5/components/gantt/components/gantt/utils/svg-utils.js +0 -121
- package/esm5/components/gantt/components/side-table/side-table.component.js +0 -33
- package/esm5/components/gantt/gantt.component.js +0 -162
- package/esm5/components/gantt/gantt.module.js +0 -23
- package/esm5/components/gantt/index.js +0 -4
- package/esm5/components/gantt/models/index.js +0 -2
- package/esm5/components/gantt/models/options.js +0 -1
- package/esm5/components/gantt/models/task.js +0 -1
- package/esm5/components/gantt/models/view-mode.js +0 -12
- package/esm5/components/global-search/elements/dropdown/global-search-dropdown-item.component.js +0 -78
- package/esm5/components/global-search/global-search-size.enum.js +0 -7
- package/esm5/components/global-search/global-search.component.js +0 -137
- package/esm5/components/global-search/global-search.module.js +0 -53
- package/esm5/components/global-search/index.js +0 -5
- package/esm5/components/grid-menu/components/grid-menu-item/grid-menu-item.component.js +0 -79
- package/esm5/components/grid-menu/grid-menu.component.js +0 -66
- package/esm5/components/grid-menu/grid-menu.module.js +0 -20
- package/esm5/components/grid-menu/index.js +0 -3
- package/esm5/components/grid-menu/types/grid-menu-item.js +0 -1
- package/esm5/components/help-popover/help-popover/help-popover.component.js +0 -115
- package/esm5/components/help-popover/help-popover.directive.js +0 -348
- package/esm5/components/help-popover/help-popover.module.js +0 -23
- package/esm5/components/help-popover/index.js +0 -4
- package/esm5/components/help-popover/models/help-popover.models.js +0 -1
- package/esm5/components/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.js +0 -16
- package/esm5/components/ia-insight/components/ia-insight-card/ia-insight-card.component.js +0 -96
- package/esm5/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.js +0 -61
- package/esm5/components/ia-insight/ia-insight.component.js +0 -83
- package/esm5/components/ia-insight/ia-insight.module.js +0 -43
- package/esm5/components/ia-insight/index.js +0 -4
- package/esm5/components/ia-insight/models/ia-insight-item.js +0 -1
- package/esm5/components/ia-insight/models/ia-insight-template-types.js +0 -7
- package/esm5/components/ia-insight/models/index.js +0 -2
- package/esm5/components/image-cropper/image-cropper.component.js +0 -185
- package/esm5/components/image-cropper/image-cropper.module.js +0 -23
- package/esm5/components/image-cropper/image-cropper.service.js +0 -70
- package/esm5/components/image-cropper/index.js +0 -4
- package/esm5/components/index.js +0 -77
- package/esm5/components/infinite-scroll/infinite-scroll.directive.js +0 -31
- package/esm5/components/infinite-scroll/infinite-scroll.module.js +0 -24
- package/esm5/components/info-sign/index.js +0 -3
- package/esm5/components/info-sign/info-sign.component.js +0 -16
- package/esm5/components/info-sign/info-sign.directive.js +0 -69
- package/esm5/components/info-sign/info-sign.module.js +0 -27
- package/esm5/components/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.js +0 -53
- package/esm5/components/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.js +0 -33
- package/esm5/components/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.js +0 -99
- package/esm5/components/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.js +0 -33
- package/esm5/components/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.js +0 -33
- package/esm5/components/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.js +0 -33
- package/esm5/components/inline-edit/components/index.js +0 -8
- package/esm5/components/inline-edit/components/inline-edit-item/inline-edit-item.component.js +0 -112
- package/esm5/components/inline-edit/fields/index.js +0 -8
- package/esm5/components/inline-edit/fields/inline-edit-calendar-field.js +0 -31
- package/esm5/components/inline-edit/fields/inline-edit-field.js +0 -11
- package/esm5/components/inline-edit/fields/inline-edit-lookup-field.js +0 -50
- package/esm5/components/inline-edit/fields/inline-edit-number-field.js +0 -29
- package/esm5/components/inline-edit/fields/inline-edit-text-area-field.js +0 -16
- package/esm5/components/inline-edit/fields/inline-edit-text-area-ia-field.js +0 -11
- package/esm5/components/inline-edit/fields/inline-edit-text-field.js +0 -11
- package/esm5/components/inline-edit/index.js +0 -4
- package/esm5/components/inline-edit/inline-edit.component.js +0 -84
- package/esm5/components/inline-edit/inline-edit.module.js +0 -65
- package/esm5/components/kanban/components/kanban-column/kanban-column.component.js +0 -99
- package/esm5/components/kanban/components/kanban-item/kanban-item.component.js +0 -62
- package/esm5/components/kanban/components/kanban-item-dragging/kanban-item-dragging.component.js +0 -20
- package/esm5/components/kanban/index.js +0 -4
- package/esm5/components/kanban/kanban-event.service.js +0 -28
- package/esm5/components/kanban/kanban.component.js +0 -221
- package/esm5/components/kanban/kanban.module.js +0 -48
- package/esm5/components/kanban/models/index.js +0 -2
- package/esm5/components/kanban/models/kanban-data.js +0 -1
- package/esm5/components/kanban/models/kanban-template-types.js +0 -9
- package/esm5/components/label-value/index.js +0 -3
- package/esm5/components/label-value/label-value.component.js +0 -34
- package/esm5/components/label-value/label-value.module.js +0 -23
- package/esm5/components/label-value/types/label-value-configuration.js +0 -1
- package/esm5/components/loading-state/components/dots-indicator/dots-indicator.components.js +0 -16
- package/esm5/components/loading-state/components/loading-state-indicators.js +0 -6
- package/esm5/components/loading-state/components/logo-indicator/logo-indicator.component.js +0 -16
- package/esm5/components/loading-state/index.js +0 -4
- package/esm5/components/loading-state/loading-state.component.js +0 -81
- package/esm5/components/loading-state/loading-state.directive.js +0 -65
- package/esm5/components/loading-state/loading-state.module.js +0 -34
- package/esm5/components/locale/index.js +0 -11
- package/esm5/components/locale/locale.module.js +0 -75
- package/esm5/components/locale/locale.service.js +0 -93
- package/esm5/components/locale/options/calendar.js +0 -33
- package/esm5/components/locale/options/index.js +0 -28
- package/esm5/components/locale/options/number.js +0 -12
- package/esm5/components/locale/pipes/localized-bignumber-impure.pipe.js +0 -21
- package/esm5/components/locale/pipes/localized-bignumber.pipe.js +0 -40
- package/esm5/components/locale/pipes/localized-currency-impure.pipe.js +0 -25
- package/esm5/components/locale/pipes/localized-currency.pipe.js +0 -59
- package/esm5/components/locale/pipes/localized-date-impure.pipe.js +0 -18
- package/esm5/components/locale/pipes/localized-date.pipe.js +0 -26
- package/esm5/components/locale/pipes/localized-number.pipe.js +0 -32
- package/esm5/components/locale/pipes/localized-time-impure.pipe.js +0 -18
- package/esm5/components/locale/pipes/localized-time.pipe.js +0 -26
- package/esm5/components/locale/pipes/numeric.pipe.js +0 -32
- package/esm5/components/locale/services/numeric.service.js +0 -87
- package/esm5/components/localized-number-input/index.js +0 -3
- package/esm5/components/localized-number-input/localized-number-input.directive.js +0 -61
- package/esm5/components/localized-number-input/localized-number-input.module.js +0 -18
- package/esm5/components/mask/index.js +0 -3
- package/esm5/components/mask/mask-formatter.module.js +0 -16
- package/esm5/components/mask/mask-formatter.pipe.js +0 -72
- package/esm5/components/mouse-events/double-click.directive.js +0 -40
- package/esm5/components/mouse-events/index.js +0 -4
- package/esm5/components/mouse-events/long-press.directive.js +0 -51
- package/esm5/components/mouse-events/mouse-events.module.js +0 -25
- package/esm5/components/navigation-button/index.js +0 -3
- package/esm5/components/navigation-button/models/index.js +0 -1
- package/esm5/components/navigation-button/models/navigation-button-item.js +0 -1
- package/esm5/components/navigation-button/models/navigation-button-step-changed-info.js +0 -1
- package/esm5/components/navigation-button/navigation-button.component.js +0 -131
- package/esm5/components/navigation-button/navigation-button.module.js +0 -20
- package/esm5/components/number-input/index.js +0 -3
- package/esm5/components/number-input/number-input.directive.js +0 -167
- package/esm5/components/number-input/number-input.module.js +0 -21
- package/esm5/components/object-card/elements/field/object-card-field.component.js +0 -55
- package/esm5/components/object-card/elements/main/object-card-main.component.js +0 -99
- package/esm5/components/object-card/index.js +0 -5
- package/esm5/components/object-card/object-card.component.js +0 -139
- package/esm5/components/object-card/object-card.module.js +0 -24
- package/esm5/components/panel/index.js +0 -3
- package/esm5/components/panel/panel.component.js +0 -85
- package/esm5/components/panel/panel.module.js +0 -20
- package/esm5/components/password-strength/index.js +0 -5
- package/esm5/components/password-strength/models/index.js +0 -3
- package/esm5/components/password-strength/models/password-positions.js +0 -7
- package/esm5/components/password-strength/models/password-strengths.js +0 -8
- package/esm5/components/password-strength/password-strength.component.js +0 -96
- package/esm5/components/password-strength/password-strength.directive.js +0 -197
- package/esm5/components/password-strength/password-strength.module.js +0 -22
- package/esm5/components/picklist/index.js +0 -5
- package/esm5/components/picklist/picklist/models/picklist-models.js +0 -6
- package/esm5/components/picklist/picklist/picklist.component.js +0 -339
- package/esm5/components/picklist/picklist.module.js +0 -28
- package/esm5/components/product-header/index.js +0 -3
- package/esm5/components/product-header/product-header.component.js +0 -47
- package/esm5/components/product-header/product-header.module.js +0 -20
- package/esm5/components/profile-picture-picker/index.js +0 -4
- package/esm5/components/profile-picture-picker/models/confirmation-texts.js +0 -1
- package/esm5/components/profile-picture-picker/models/cropper-labels-config.js +0 -1
- package/esm5/components/profile-picture-picker/models/file-validation-errors.js +0 -8
- package/esm5/components/profile-picture-picker/models/index.js +0 -2
- package/esm5/components/profile-picture-picker/models/profile-picture-picker-data.js +0 -1
- package/esm5/components/profile-picture-picker/profile-picture-picker.component.js +0 -270
- package/esm5/components/profile-picture-picker/profile-picture-picker.module.js +0 -36
- package/esm5/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.js +0 -63
- package/esm5/components/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.js +0 -22
- package/esm5/components/progressbar/index.js +0 -4
- package/esm5/components/progressbar/models/index.js +0 -3
- package/esm5/components/progressbar/models/progressbar-colors.js +0 -8
- package/esm5/components/progressbar/models/progressbar-mode.js +0 -6
- package/esm5/components/progressbar/progressbar.component.js +0 -63
- package/esm5/components/progressbar/progressbar.module.js +0 -24
- package/esm5/components/rating-scale/index.js +0 -3
- package/esm5/components/rating-scale/models/index.js +0 -1
- package/esm5/components/rating-scale/models/rating-scale-node.js +0 -1
- package/esm5/components/rating-scale/rating-scale.component.js +0 -54
- package/esm5/components/rating-scale/rating-scale.module.js +0 -22
- package/esm5/components/select-button/components/select-button-item/select-button-item.component.js +0 -35
- package/esm5/components/select-button/index.js +0 -3
- package/esm5/components/select-button/models/index.js +0 -1
- package/esm5/components/select-button/models/select-button-item.js +0 -1
- package/esm5/components/select-button/select-button.component.js +0 -128
- package/esm5/components/select-button/select-button.module.js +0 -22
- package/esm5/components/shared/border-button/border-button.component.js +0 -27
- package/esm5/components/shared/border-button/border-button.module.js +0 -19
- package/esm5/components/shared/helpers.js +0 -35
- package/esm5/components/shared/index.js +0 -3
- package/esm5/components/shared/models/border-button-options.js +0 -1
- package/esm5/components/shared/models/enum-severity.js +0 -9
- package/esm5/components/sidebar/index.js +0 -3
- package/esm5/components/sidebar/sidebar.component.js +0 -74
- package/esm5/components/sidebar/sidebar.module.js +0 -22
- package/esm5/components/slide-panel/index.js +0 -3
- package/esm5/components/slide-panel/slide-panel.component.js +0 -145
- package/esm5/components/slide-panel/slide-panel.module.js +0 -20
- package/esm5/components/slide-panel/slide-panel.service.js +0 -28
- package/esm5/components/slider/index.js +0 -3
- package/esm5/components/slider/slider.component.js +0 -648
- package/esm5/components/slider/slider.module.js +0 -19
- package/esm5/components/speech-recognition/speech-recognition/speech-recognition.component.js +0 -248
- package/esm5/components/speech-recognition/speech-recognition.module.js +0 -22
- package/esm5/components/speech-recognition/speech-recognition.service.js +0 -168
- package/esm5/components/speech-recognition/text-to-speech.service.js +0 -92
- package/esm5/components/split-button/index.js +0 -4
- package/esm5/components/split-button/models/split-button-option.js +0 -1
- package/esm5/components/split-button/models/split-button-type.js +0 -7
- package/esm5/components/split-button/split-button.component.js +0 -69
- package/esm5/components/split-button/split-button.module.js +0 -18
- package/esm5/components/stats-card/index.js +0 -3
- package/esm5/components/stats-card/stats-card.component.js +0 -131
- package/esm5/components/stats-card/stats-card.module.js +0 -26
- package/esm5/components/steps/index.js +0 -3
- package/esm5/components/steps/steps.component.js +0 -107
- package/esm5/components/steps/steps.module.js +0 -19
- package/esm5/components/structure/footer.component.js +0 -15
- package/esm5/components/structure/header.component.js +0 -18
- package/esm5/components/structure/index.js +0 -4
- package/esm5/components/structure/structure.module.js +0 -19
- package/esm5/components/switch/index.js +0 -3
- package/esm5/components/switch/switch.component.js +0 -94
- package/esm5/components/switch/switch.module.js +0 -18
- package/esm5/components/table/frozen-position/frozen-position.directive.js +0 -256
- package/esm5/components/table/index.js +0 -6
- package/esm5/components/table/navigation/navigation.directive.js +0 -137
- package/esm5/components/table/row-toggler/row-toggler.directive.js +0 -39
- package/esm5/components/table/table-column/index.js +0 -2
- package/esm5/components/table/table-column/models/badge-column.interface.js +0 -1
- package/esm5/components/table/table-column/models/badge-configs.interface.js +0 -1
- package/esm5/components/table/table-column/models/column-colors.js +0 -1
- package/esm5/components/table/table-column/models/column-values.interface.js +0 -1
- package/esm5/components/table/table-column/models/column.interface.js +0 -1
- package/esm5/components/table/table-column/models/dynamic-editable-grid.interface.js +0 -1
- package/esm5/components/table/table-column/models/enum-badge-colors.js +0 -10
- package/esm5/components/table/table-column/models/enum-column-field-type.js +0 -13
- package/esm5/components/table/table-column/models/index.js +0 -3
- package/esm5/components/table/table-column/models/locale-options.interface.js +0 -1
- package/esm5/components/table/table-column/models/number-locale-options.interface.js +0 -1
- package/esm5/components/table/table-column/table-columns.component.js +0 -288
- package/esm5/components/table/table-paging/index.js +0 -1
- package/esm5/components/table/table-paging/models/custom-action.interface.js +0 -1
- package/esm5/components/table/table-paging/models/index.js +0 -1
- package/esm5/components/table/table-paging/table-paging.component.js +0 -361
- package/esm5/components/table/table.module.js +0 -48
- package/esm5/components/table-header/index.js +0 -3
- package/esm5/components/table-header/table-header-checkbox.component.js +0 -157
- package/esm5/components/table-header/table-header-checkox.module.js +0 -18
- package/esm5/components/template/index.js +0 -3
- package/esm5/components/template/template.directive.js +0 -21
- package/esm5/components/template/template.module.js +0 -18
- package/esm5/components/text-area/index.js +0 -3
- package/esm5/components/text-area/text-area/text-area.component.js +0 -126
- package/esm5/components/text-area/text-area.module.js +0 -27
- package/esm5/components/text-area-ia/index.js +0 -3
- package/esm5/components/text-area-ia/text-area-ia.component.js +0 -147
- package/esm5/components/text-area-ia/text-area-ia.module.js +0 -35
- package/esm5/components/thumbnail/index.js +0 -4
- package/esm5/components/thumbnail/thumbnail-size.js +0 -7
- package/esm5/components/thumbnail/thumbnail.component.js +0 -83
- package/esm5/components/thumbnail/thumbnail.module.js +0 -20
- package/esm5/components/thumbnail/thumbnail.service.js +0 -65
- package/esm5/components/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.js +0 -19
- package/esm5/components/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.js +0 -44
- package/esm5/components/thumbnails/components/thumbnail-item/thumbnail-item.component.js +0 -68
- package/esm5/components/thumbnails/index.js +0 -3
- package/esm5/components/thumbnails/models/thumbnails-item.js +0 -1
- package/esm5/components/thumbnails/thumbnails.component.js +0 -61
- package/esm5/components/thumbnails/thumbnails.module.js +0 -24
- package/esm5/components/tiered-menu/components/tiered-menu/tiered-menu.component.js +0 -288
- package/esm5/components/tiered-menu/components/tiered-menu-divider/tiered-menu-divider.component.js +0 -16
- package/esm5/components/tiered-menu/components/tiered-menu-item/tiered-menu-item.component.js +0 -78
- package/esm5/components/tiered-menu/components/tiered-menu-nested/tiered-menu-nested.component.js +0 -180
- package/esm5/components/tiered-menu/index.js +0 -3
- package/esm5/components/tiered-menu/models/index.js +0 -1
- package/esm5/components/tiered-menu/models/tiered-menu-item-data.js +0 -1
- package/esm5/components/tiered-menu/models/tiered-menu-item-internal-data.js +0 -1
- package/esm5/components/tiered-menu/services/tiered-menu.event.service.js +0 -19
- package/esm5/components/tiered-menu/services/tiered-menu.global.service.js +0 -12
- package/esm5/components/tiered-menu/services/tiered-menu.service.js +0 -54
- package/esm5/components/tiered-menu/tiered-menu.directive.js +0 -224
- package/esm5/components/tiered-menu/tiered-menu.module.js +0 -32
- package/esm5/components/tiered-menu/utils.js +0 -7
- package/esm5/components/tile/index.js +0 -3
- package/esm5/components/tile/tile.component.js +0 -77
- package/esm5/components/tile/tile.module.js +0 -27
- package/esm5/components/timeline/components/horizontal-timeline/horizontal-timeline.component.js +0 -26
- package/esm5/components/timeline/components/horizontal-timeline/horizontal-timeline.module.js +0 -24
- package/esm5/components/timeline/components/timeline-icon-item/timeline-icon-item.component.js +0 -28
- package/esm5/components/timeline/components/timeline-icon-item/timeline-icon-item.module.js +0 -22
- package/esm5/components/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.js +0 -27
- package/esm5/components/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.js +0 -36
- package/esm5/components/timeline/components/vertical-timeline/components/range-line/range-line.component.js +0 -16
- package/esm5/components/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.js +0 -31
- package/esm5/components/timeline/components/vertical-timeline/vertical-timeline.component.js +0 -58
- package/esm5/components/timeline/components/vertical-timeline/vertical-timeline.module.js +0 -32
- package/esm5/components/timeline/index.js +0 -4
- package/esm5/components/timeline/models/index.js +0 -4
- package/esm5/components/timeline/models/timeline-item-severity.js +0 -7
- package/esm5/components/timeline/models/timeline-item-size.js +0 -6
- package/esm5/components/timeline/models/timeline-item.js +0 -39
- package/esm5/components/timeline/timeline.component.js +0 -71
- package/esm5/components/timeline/timeline.module.js +0 -30
- package/esm5/components/toast/index.js +0 -4
- package/esm5/components/toast/toast.component.js +0 -54
- package/esm5/components/toast/toast.module.js +0 -17
- package/esm5/components/toast/toast.service.js +0 -70
- package/esm5/components/toast/types/toast.js +0 -1
- package/esm5/components/token-list/index.js +0 -3
- package/esm5/components/token-list/models/index.js +0 -1
- package/esm5/components/token-list/models/token.js +0 -1
- package/esm5/components/token-list/token-list.component.js +0 -52
- package/esm5/components/token-list/token-list.module.js +0 -18
- package/esm5/components/tooltip/index.js +0 -3
- package/esm5/components/tooltip/models/index.js +0 -4
- package/esm5/components/tooltip/models/mobile-behavior.js +0 -6
- package/esm5/components/tooltip/models/tooltip-event.js +0 -6
- package/esm5/components/tooltip/models/tooltip-position.js +0 -8
- package/esm5/components/tooltip/tooltip.component.js +0 -22
- package/esm5/components/tooltip/tooltip.directive.js +0 -339
- package/esm5/components/tooltip/tooltip.module.js +0 -22
- package/esm5/components/tree/Models/tree.models.js +0 -1
- package/esm5/components/tree/components/tree-node-item/tree-node-item.component.js +0 -169
- package/esm5/components/tree/index.js +0 -3
- package/esm5/components/tree/tree.component.js +0 -280
- package/esm5/components/tree/tree.module.js +0 -23
- package/esm5/components/utils/breakpoints.js +0 -11
- package/esm5/components/utils/debouce.js +0 -50
- package/esm5/components/utils/export-utils.js +0 -96
- package/esm5/components/utils/index.js +0 -6
- package/esm5/components/utils/locale-utils.js +0 -15
- package/esm5/components/utils/utils.js +0 -44
- package/esm5/components/workspace-switch/index.js +0 -3
- package/esm5/components/workspace-switch/models/index.js +0 -1
- package/esm5/components/workspace-switch/models/workspace.js +0 -1
- package/esm5/components/workspace-switch/workspace-switch.component.js +0 -148
- package/esm5/components/workspace-switch/workspace-switch.module.js +0 -18
- package/esm5/locale/fallback.js +0 -333
- package/esm5/public-api.js +0 -5
- package/esm5/seniorsistemas-angular-components.js +0 -117
- package/esm5/utils/currency/currency.service.js +0 -191
- package/esm5/utils/currency/index.js +0 -2
- package/esm5/utils/index.js +0 -3
- package/esm5/utils/svg-factory/components/iassist-icon/iassist-icon.component.js +0 -14
- package/esm5/utils/svg-factory/components/senior-icon/senior-icon.component.js +0 -14
- package/esm5/utils/svg-factory/components/svg-factory-icons.js +0 -6
- package/esm5/utils/svg-factory/index.js +0 -3
- package/esm5/utils/svg-factory/svg-factory.directive.js +0 -54
- package/esm5/utils/svg-factory/svg-factory.module.js +0 -24
- package/fesm2015/seniorsistemas-angular-components.js +0 -22423
- package/fesm2015/seniorsistemas-angular-components.js.map +0 -1
- package/fesm5/seniorsistemas-angular-components.js +0 -24034
- package/fesm5/seniorsistemas-angular-components.js.map +0 -1
- package/seniorsistemas-angular-components.d.ts +0 -116
- package/seniorsistemas-angular-components.metadata.json +0 -1
- package/utils/currency/currency.service.d.ts +0 -642
- package/utils/currency/index.d.ts +0 -1
- package/utils/svg-factory/components/iassist-icon/iassist-icon.component.d.ts +0 -2
- package/utils/svg-factory/components/senior-icon/senior-icon.component.d.ts +0 -2
- package/utils/svg-factory/components/svg-factory-icons.d.ts +0 -4
- package/utils/svg-factory/index.d.ts +0 -2
- package/utils/svg-factory/svg-factory.directive.d.ts +0 -13
- package/utils/svg-factory/svg-factory.module.d.ts +0 -2
- /package/{components → code-editor/lib}/code-editor/core/facades/linter-facade.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/core/models/enums/marker-severity.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/core/models/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/core/models/interfaces/marker.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/editor-languages.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/json/json.language.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-empty-state.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-loading-state.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper-style.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-style.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.service.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/base-configs.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/grammar.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/completion-types.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/enum-type-order.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/keywords.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/meta-type.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/request-types.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/completion-Item.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/facade-metadata-name.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/fields-order-by.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/get-facade-metadata-by-path.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-context-metadata-by-id.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-expression-metadata.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-facade-metadata-names.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-expression-metadata.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-context-metadata.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-facade-metadata.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-field-metadata.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-page-request.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/tax-calculation-configs.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation-language-configs.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation.language.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-language-configs.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/models/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/themes/editor-themes.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/autocomplete-tooltip.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/font-style.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/line-counter.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/scrollbars.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-highlight-style.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-style.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-theme.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/utils/convert-markers-to-diagnostics.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/utils/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/cores/codemirror-6/utils/is-current-position-inside-string.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/utils/custom-http-client/json-response-formatters/format-blob-response.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/utils/custom-http-client/json-response-formatters/format-json-response.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/utils/custom-http-client/json-response-formatters/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/utils/custom-translations/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/utils/custom-translations/models/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/utils/custom-translations/models/interfaces/translations.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/infra/utils/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/models/enums/languages.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/models/enums/themes.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/models/index.d.ts +0 -0
- /package/{components → code-editor/lib}/code-editor/models/interfaces/editor-options.d.ts +0 -0
- /package/{components → country-phone-picker/lib}/country-phone-picker/models/country-phone-data.d.ts +0 -0
- /package/{components → country-phone-picker/lib}/country-phone-picker/models/ordination.d.ts +0 -0
- /package/{components → country-phone-picker/lib}/country-phone-picker/models/phone-selection-data.d.ts +0 -0
- /package/{components → custom-fields/lib}/custom-fields/models/custom-field-type.d.ts +0 -0
- /package/{components → dynamic-form/lib}/dynamic-form/configurations/dynamic-config.d.ts +0 -0
- /package/{components → dynamic-form/lib}/dynamic-form/configurations/dynamic-type.d.ts +0 -0
- /package/{components → dynamic-form/lib}/dynamic-form/configurations/grid-type.d.ts +0 -0
- /package/{components → dynamic-form/lib}/dynamic-form/configurations/structure-type.d.ts +0 -0
- /package/{components/dynamic-form → dynamic-form/lib/dynamic-form/form-field}/configurations/field-size.d.ts +0 -0
- /package/{components/dynamic-form → dynamic-form/lib/dynamic-form/form-field}/configurations/fields/editor-field.d.ts +0 -0
- /package/{components → file-upload/lib}/file-upload/models/list-blob-metadata.d.ts +0 -0
- /package/{components → gantt/lib}/gantt/components/gantt/utils/date-utils.d.ts +0 -0
- /package/{components → gantt/lib}/gantt/models/task.d.ts +0 -0
- /package/{components → gantt/lib}/gantt/models/view-mode.d.ts +0 -0
- /package/{components → inline-edit/lib}/inline-edit/components/index.d.ts +0 -0
- /package/{components → inline-edit/lib}/inline-edit/fields/inline-edit-text-area-field.d.ts +0 -0
- /package/{components → inline-edit/lib}/inline-edit/fields/inline-edit-text-area-ia-field.d.ts +0 -0
- /package/{components → inline-edit/lib}/inline-edit/fields/inline-edit-text-field.d.ts +0 -0
- /package/{locale → lib/locale}/fallback.d.ts +0 -0
- /package/{components → loading-state/lib}/loading-state/components/loading-state-indicators.d.ts +0 -0
- /package/{components → navigation-button/lib}/navigation-button/models/navigation-button-item.d.ts +0 -0
- /package/{components → profile-picture-picker/lib}/profile-picture-picker/models/confirmation-texts.d.ts +0 -0
- /package/{components → profile-picture-picker/lib}/profile-picture-picker/models/cropper-labels-config.d.ts +0 -0
- /package/{components → profile-picture-picker/lib}/profile-picture-picker/models/profile-picture-picker-data.d.ts +0 -0
- /package/{components → rating-scale/lib}/rating-scale/models/rating-scale-node.d.ts +0 -0
- /package/{components → select-button/lib}/select-button/models/select-button-item.d.ts +0 -0
- /package/{components → shared/lib}/shared/helpers.d.ts +0 -0
- /package/{components → split-button/lib}/split-button/models/split-button-option.d.ts +0 -0
- /package/{components/utils → table/lib}/locale-utils.d.ts +0 -0
- /package/{components → table/lib}/table/table-column/models/enum-badge-colors.d.ts +0 -0
- /package/{components → table/lib}/table/table-column/models/enum-column-field-type.d.ts +0 -0
- /package/{components → table/lib}/table/table-paging/models/custom-action.interface.d.ts +0 -0
- /package/{components → timeline/lib}/timeline/models/timeline-item-severity.d.ts +0 -0
- /package/{components → timeline/lib}/timeline/models/timeline-item-size.d.ts +0 -0
- /package/{components → token-list/lib}/token-list/models/token.d.ts +0 -0
- /package/{components → utils/lib}/utils/breakpoints.d.ts +0 -0
- /package/{components → workspace-switch/lib}/workspace-switch/models/workspace.d.ts +0 -0
|
@@ -0,0 +1,640 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import { animate, animateChild, group, query, state, style, transition, trigger } from '@angular/animations';
|
|
3
|
+
import { Component, EventEmitter, forwardRef, Input, Output, viewChild, ViewChild, ViewEncapsulation, } from '@angular/core';
|
|
4
|
+
import { FormControl, FormGroup, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
5
|
+
import { Hotkey } from 'angular2-hotkeys';
|
|
6
|
+
import BigNumber from 'bignumber.js';
|
|
7
|
+
import { AutoComplete } from 'primeng/autocomplete';
|
|
8
|
+
import { Table } from 'primeng/table';
|
|
9
|
+
import { Subject } from 'rxjs';
|
|
10
|
+
import { takeUntil } from 'rxjs/operators';
|
|
11
|
+
import { LoadingStateIndicators } from '@seniorsistemas/angular-components/loading-state';
|
|
12
|
+
import { CalendarLocaleOptions } from '@seniorsistemas/angular-components/locale';
|
|
13
|
+
import { CheckDisabled } from '@seniorsistemas/angular-components/shared';
|
|
14
|
+
import { isNullOrUndefined } from '@seniorsistemas/angular-components/utils';
|
|
15
|
+
import { FieldType } from '../../form-field/configurations/field-type';
|
|
16
|
+
import { FormField } from '../../form-field/form-field';
|
|
17
|
+
import * as i0 from "@angular/core";
|
|
18
|
+
import * as i1 from "angular2-hotkeys";
|
|
19
|
+
import * as i2 from "@ngx-translate/core";
|
|
20
|
+
import * as i3 from "primeng/autocomplete";
|
|
21
|
+
import * as i4 from "primeng/api";
|
|
22
|
+
import * as i5 from "@seniorsistemas/angular-components/badge";
|
|
23
|
+
import * as i6 from "@seniorsistemas/angular-components/button";
|
|
24
|
+
import * as i7 from "@angular/common";
|
|
25
|
+
import * as i8 from "@seniorsistemas/angular-components/dialog";
|
|
26
|
+
import * as i9 from "@seniorsistemas/angular-components/empty-state";
|
|
27
|
+
import * as i10 from "@angular/forms";
|
|
28
|
+
import * as i11 from "@seniorsistemas/angular-components/loading-state";
|
|
29
|
+
import * as i12 from "primeng/table";
|
|
30
|
+
import * as i13 from "@seniorsistemas/angular-components/tooltip";
|
|
31
|
+
import * as i14 from "@seniorsistemas/angular-components/table-header";
|
|
32
|
+
import * as i15 from "@seniorsistemas/angular-components/mouse-events";
|
|
33
|
+
import * as i16 from "@seniorsistemas/angular-components/template";
|
|
34
|
+
import * as i17 from "../../dynamic-form.component";
|
|
35
|
+
import * as i18 from "@seniorsistemas/angular-components/locale";
|
|
36
|
+
import * as i19 from "@seniorsistemas/angular-components/mask";
|
|
37
|
+
export class LookupComponent {
|
|
38
|
+
hotkeysService;
|
|
39
|
+
translateService;
|
|
40
|
+
changeDetectorRef;
|
|
41
|
+
lookupDialogContainer = viewChild('dialogContainer');
|
|
42
|
+
rowType = 'Row';
|
|
43
|
+
indicatorLogo = LoadingStateIndicators.Logo;
|
|
44
|
+
static nextId = 0;
|
|
45
|
+
formControlName;
|
|
46
|
+
id = `s-lookup-${LookupComponent.nextId++}`;
|
|
47
|
+
autocompleteForceSelection = true;
|
|
48
|
+
multiple = false;
|
|
49
|
+
dataKey;
|
|
50
|
+
disabled = false;
|
|
51
|
+
showSearch = true;
|
|
52
|
+
lookupSuggestions = [];
|
|
53
|
+
lookupDisplayField;
|
|
54
|
+
lookupDisplayFieldTooltip = false;
|
|
55
|
+
lookupEmptyMessage;
|
|
56
|
+
lookupAppendTo = 'body';
|
|
57
|
+
searchEmptyDescription;
|
|
58
|
+
searchGridData = [];
|
|
59
|
+
searchTotalRecords = 0;
|
|
60
|
+
searchFields = [];
|
|
61
|
+
searchGridFields = [];
|
|
62
|
+
multiSortMeta = [];
|
|
63
|
+
placeholder;
|
|
64
|
+
sortableColumnsDisabled = [];
|
|
65
|
+
lookupRowProps = [];
|
|
66
|
+
defaultFilter = [];
|
|
67
|
+
showAddOption = false;
|
|
68
|
+
showEditOption = false;
|
|
69
|
+
showRemoveOption = false;
|
|
70
|
+
onLookupRequest = new EventEmitter();
|
|
71
|
+
onSearchRequest = new EventEmitter();
|
|
72
|
+
onFocus = new EventEmitter();
|
|
73
|
+
onBlur = new EventEmitter();
|
|
74
|
+
onKeyUp = new EventEmitter();
|
|
75
|
+
onSelect = new EventEmitter();
|
|
76
|
+
onUnselect = new EventEmitter();
|
|
77
|
+
onClear = new EventEmitter();
|
|
78
|
+
onAdd = new EventEmitter();
|
|
79
|
+
onEdit = new EventEmitter();
|
|
80
|
+
onRemove = new EventEmitter();
|
|
81
|
+
onClearButtonClick = new EventEmitter();
|
|
82
|
+
table = null;
|
|
83
|
+
autocomplete = null;
|
|
84
|
+
labelOptions;
|
|
85
|
+
value;
|
|
86
|
+
loading = false;
|
|
87
|
+
animating = false;
|
|
88
|
+
dialogVisible = false;
|
|
89
|
+
collapsed = false;
|
|
90
|
+
selected = [];
|
|
91
|
+
formGroupDialog;
|
|
92
|
+
transitionOptions = '400ms cubic-bezier(0.86, 0, 0.07, 1)';
|
|
93
|
+
onChange;
|
|
94
|
+
onTouched;
|
|
95
|
+
originalFormValues = {};
|
|
96
|
+
ngUnsubscribe = new Subject();
|
|
97
|
+
constructor(hotkeysService, translateService, changeDetectorRef) {
|
|
98
|
+
this.hotkeysService = hotkeysService;
|
|
99
|
+
this.translateService = translateService;
|
|
100
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
101
|
+
}
|
|
102
|
+
ngOnInit() {
|
|
103
|
+
if (!this.searchGridFields.length) {
|
|
104
|
+
this.searchGridFields = this.searchFields
|
|
105
|
+
.filter((item) => !item.visible || item.visible?.())
|
|
106
|
+
.map((item) => new FormField({ ...item }));
|
|
107
|
+
}
|
|
108
|
+
this.searchFields = this.searchFields.map((value) => new FormField({
|
|
109
|
+
...value,
|
|
110
|
+
size: { sm: 12, md: 12, lg: 12, xl: 12 },
|
|
111
|
+
}));
|
|
112
|
+
this.searchGridFields = this.searchGridFields
|
|
113
|
+
.filter((gridField) => !gridField.visible || gridField.visible?.())
|
|
114
|
+
.map((gridField) => {
|
|
115
|
+
if (gridField.label) {
|
|
116
|
+
gridField['width'] = this.getColWidth(gridField.label);
|
|
117
|
+
}
|
|
118
|
+
const calendarOptions = new CalendarLocaleOptions({ ...gridField.calendarLocaleOptions });
|
|
119
|
+
if (calendarOptions?.dateFormat) {
|
|
120
|
+
switch (gridField.type) {
|
|
121
|
+
case FieldType.Date:
|
|
122
|
+
calendarOptions.dateFormat = this._convertToMomentDateFormat(calendarOptions.dateFormat);
|
|
123
|
+
break;
|
|
124
|
+
case FieldType.Time:
|
|
125
|
+
calendarOptions.dateFormat = this._convertToMomentHourFormat(calendarOptions.hourFormat, calendarOptions.dateFormat);
|
|
126
|
+
break;
|
|
127
|
+
}
|
|
128
|
+
gridField.calendarLocaleOptions = calendarOptions;
|
|
129
|
+
}
|
|
130
|
+
return gridField;
|
|
131
|
+
});
|
|
132
|
+
const hasFieldWithDotInName = this.searchFields.some((field) => field.name.includes('.'));
|
|
133
|
+
if (hasFieldWithDotInName) {
|
|
134
|
+
const fieldsWithDot = this.searchFields
|
|
135
|
+
.filter((item) => item.name.includes('.'))
|
|
136
|
+
.map((item) => item.name)
|
|
137
|
+
.join();
|
|
138
|
+
throw new Error(`This fields: [${fieldsWithDot}] can't have dot in their names, please replace.`);
|
|
139
|
+
}
|
|
140
|
+
const formGroup = this.searchFields.reduce((result, field) => {
|
|
141
|
+
if (field.name) {
|
|
142
|
+
result[field.name] = new FormControl(field.defaultValue);
|
|
143
|
+
this.originalFormValues[field.name] = field.defaultValue;
|
|
144
|
+
}
|
|
145
|
+
return result;
|
|
146
|
+
}, {});
|
|
147
|
+
this.formGroupDialog = new FormGroup(formGroup);
|
|
148
|
+
this._subscribeEvents();
|
|
149
|
+
}
|
|
150
|
+
printRecordTotalizer() {
|
|
151
|
+
if (this.labelOptions?.searchTotalRecordsLabel) {
|
|
152
|
+
return this.labelOptions?.searchTotalRecordsLabel;
|
|
153
|
+
}
|
|
154
|
+
const recordLabel = this.labelOptions?.recordLabel
|
|
155
|
+
? `${this.searchTotalRecords} ${this.labelOptions?.recordLabel}`
|
|
156
|
+
: this.translateService.instant('platform.angular_components.total_record', {
|
|
157
|
+
count: this.searchTotalRecords,
|
|
158
|
+
});
|
|
159
|
+
const recordsLabel = this.labelOptions?.recordsLabel
|
|
160
|
+
? `${this.searchTotalRecords} ${this.labelOptions?.recordsLabel}`
|
|
161
|
+
: this.translateService.instant('platform.angular_components.total_records', {
|
|
162
|
+
count: this.searchTotalRecords,
|
|
163
|
+
});
|
|
164
|
+
return this.searchTotalRecords === 1 ? recordLabel : recordsLabel;
|
|
165
|
+
}
|
|
166
|
+
_convertToMomentHourFormat(hourFormat, format) {
|
|
167
|
+
if (format === 'dd/mm/yy') {
|
|
168
|
+
// valor padrão para o format.
|
|
169
|
+
return 'LTS';
|
|
170
|
+
}
|
|
171
|
+
if (hourFormat === '12') {
|
|
172
|
+
return format
|
|
173
|
+
.replace(/\bH\b/, 'h') // hour (12 hour time) (no leading zero)
|
|
174
|
+
.replace(/\bHH\b/, 'hh'); // hour (12 hour time)
|
|
175
|
+
}
|
|
176
|
+
if (hourFormat === '24') {
|
|
177
|
+
return format
|
|
178
|
+
.replace(/\bh\b/, 'H') // hour (24 hour time) (no leading zero)
|
|
179
|
+
.replace(/\bhh\b/, 'HH'); // hour (24 hour time)
|
|
180
|
+
}
|
|
181
|
+
return format;
|
|
182
|
+
}
|
|
183
|
+
_convertToMomentDateFormat(format) {
|
|
184
|
+
// A ordem dos replaces é importante.
|
|
185
|
+
return format
|
|
186
|
+
.replace(/\bd\b/, 'D') // day of month (no leading zero)
|
|
187
|
+
.replace(/\bdd\b/, 'DD') // day of month
|
|
188
|
+
.replace(/\bo\b/, 'DDD') // day of the year (no leading zero)
|
|
189
|
+
.replace(/\boo\b/, 'DDDD') // day of the year
|
|
190
|
+
.replace(/\bM\b/, 'MMM') // month name short
|
|
191
|
+
.replace(/\bMM\b/, 'MMMM') // month name long
|
|
192
|
+
.replace(/\bm\b/, 'M') // month of year (no leading)
|
|
193
|
+
.replace(/\bmm\b/, 'MM') // month of year
|
|
194
|
+
.replace(/\by\b/, 'YY') // year (two digits)
|
|
195
|
+
.replace(/\byy\b/, 'YYYY'); // year (four digits)
|
|
196
|
+
}
|
|
197
|
+
ngOnChanges(changes) {
|
|
198
|
+
if (this.dialogVisible && changes['searchGridData']) {
|
|
199
|
+
this.loading = false;
|
|
200
|
+
}
|
|
201
|
+
this._setFocusFilter();
|
|
202
|
+
}
|
|
203
|
+
ngOnDestroy() {
|
|
204
|
+
this.ngUnsubscribe.next();
|
|
205
|
+
this.ngUnsubscribe.complete();
|
|
206
|
+
}
|
|
207
|
+
getGridData() {
|
|
208
|
+
return this.searchGridData;
|
|
209
|
+
}
|
|
210
|
+
getLookupSuggestions() {
|
|
211
|
+
return this.lookupSuggestions;
|
|
212
|
+
}
|
|
213
|
+
makeSearchRequestParams(event) {
|
|
214
|
+
const filters = this.formGroupDialog?.getRawValue();
|
|
215
|
+
const params = { ...event, filterData: filters };
|
|
216
|
+
const { multiSortMeta } = event;
|
|
217
|
+
this.multiSortMeta = multiSortMeta || this.multiSortMeta;
|
|
218
|
+
return params;
|
|
219
|
+
}
|
|
220
|
+
lazyLoadGrid(event) {
|
|
221
|
+
// Ao definir uma ordenação na tabela do lookup esse método é chamado 2 vezes https://github.com/primefaces/primeng/issues/5480
|
|
222
|
+
const params = this.makeSearchRequestParams(event);
|
|
223
|
+
this.onSearchRequest.next(params);
|
|
224
|
+
}
|
|
225
|
+
onCompleteMethod(event) {
|
|
226
|
+
if (!this.autocompleteForceSelection) {
|
|
227
|
+
this.onChange?.(this.value === '' ? null : this.value);
|
|
228
|
+
}
|
|
229
|
+
this.onLookupRequest.next(event.query);
|
|
230
|
+
}
|
|
231
|
+
setDefaultFilters() {
|
|
232
|
+
if (!this.defaultFilter)
|
|
233
|
+
return;
|
|
234
|
+
this.defaultFilter
|
|
235
|
+
.filter(({ field }) => this.formGroupDialog?.contains(field) && !this.formGroupDialog?.get([field])?.dirty)
|
|
236
|
+
.forEach(({ value, field }) => {
|
|
237
|
+
this.formGroupDialog?.get([field])?.patchValue(value instanceof Function ? value() : value);
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
async showDialog() {
|
|
241
|
+
this.setDefaultFilters();
|
|
242
|
+
this.searchGridData = [];
|
|
243
|
+
this.onTouched?.();
|
|
244
|
+
this.hotkeysService.pause([...this.hotkeysService.hotkeys]);
|
|
245
|
+
this.setHotkeys();
|
|
246
|
+
let selected = [];
|
|
247
|
+
if (this.multiple && this.value) {
|
|
248
|
+
selected = selected.concat(this.value);
|
|
249
|
+
}
|
|
250
|
+
else if (this.value) {
|
|
251
|
+
selected = [this.value];
|
|
252
|
+
}
|
|
253
|
+
this.selected = selected;
|
|
254
|
+
this.loading = true;
|
|
255
|
+
this.dialogVisible = true;
|
|
256
|
+
}
|
|
257
|
+
setInputs(componentRef, configs, form) {
|
|
258
|
+
componentRef.instance.configs = configs;
|
|
259
|
+
componentRef.instance.form = form;
|
|
260
|
+
// chame ngOnChanges manualmente se necessário
|
|
261
|
+
if (typeof componentRef.instance.ngOnChanges === 'function') {
|
|
262
|
+
componentRef.instance.ngOnChanges();
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
onVisibleChange(visibilityState) {
|
|
266
|
+
if (visibilityState) {
|
|
267
|
+
return;
|
|
268
|
+
}
|
|
269
|
+
this.hideDialog();
|
|
270
|
+
}
|
|
271
|
+
hideDialog() {
|
|
272
|
+
if (!this.autocomplete) {
|
|
273
|
+
return;
|
|
274
|
+
}
|
|
275
|
+
const { inputEL, multiInputEl } = this.autocomplete;
|
|
276
|
+
this.dialogVisible = false;
|
|
277
|
+
this.collapsed = false;
|
|
278
|
+
this.hotkeysService.unpause([...this.hotkeysService.pausedHotkeys]);
|
|
279
|
+
if (this.multiple) {
|
|
280
|
+
multiInputEl?.nativeElement?.focus();
|
|
281
|
+
}
|
|
282
|
+
else {
|
|
283
|
+
inputEL?.nativeElement?.focus();
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
search() {
|
|
287
|
+
this.resetTable();
|
|
288
|
+
this.collapsed = true;
|
|
289
|
+
const dialogContainer = this.lookupDialogContainer()?.nativeElement;
|
|
290
|
+
if (dialogContainer) {
|
|
291
|
+
dialogContainer.scrollIntoView({ behavior: 'smooth' });
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
clear() {
|
|
295
|
+
this.formGroupDialog?.reset(this.originalFormValues);
|
|
296
|
+
this.resetTable();
|
|
297
|
+
this.onClearButtonClick.emit();
|
|
298
|
+
}
|
|
299
|
+
resetTable() {
|
|
300
|
+
this.table?.reset();
|
|
301
|
+
}
|
|
302
|
+
select() {
|
|
303
|
+
if (!this.selected.length)
|
|
304
|
+
return;
|
|
305
|
+
const selected = this.selected && (this.multiple ? this.selected : this.selected[0]);
|
|
306
|
+
this.value = selected;
|
|
307
|
+
this.onSelect.next(selected);
|
|
308
|
+
this.hideDialog();
|
|
309
|
+
}
|
|
310
|
+
onSelectionChange(selected) {
|
|
311
|
+
if (!selected)
|
|
312
|
+
return;
|
|
313
|
+
if (Array.isArray(selected))
|
|
314
|
+
this.selected = selected;
|
|
315
|
+
else
|
|
316
|
+
this.selected = [selected];
|
|
317
|
+
}
|
|
318
|
+
registerOnChange(onChange) {
|
|
319
|
+
this.onChange = (value) => {
|
|
320
|
+
this.writeValue(value);
|
|
321
|
+
onChange(value);
|
|
322
|
+
};
|
|
323
|
+
}
|
|
324
|
+
registerOnTouched(onTouched) {
|
|
325
|
+
this.onTouched = onTouched;
|
|
326
|
+
}
|
|
327
|
+
writeValue(value) {
|
|
328
|
+
this.value = value;
|
|
329
|
+
}
|
|
330
|
+
setDisabledState(disabled) {
|
|
331
|
+
this.disabled = disabled;
|
|
332
|
+
}
|
|
333
|
+
getFieldValue(obj, path) {
|
|
334
|
+
return path.split('.').reduce((result, prop) => (result[prop] === undefined ? '' : result[prop]), obj);
|
|
335
|
+
}
|
|
336
|
+
getBadgeFromValue(value, options) {
|
|
337
|
+
return options?.find((opt) => opt.value === value)?.badge;
|
|
338
|
+
}
|
|
339
|
+
getLabelForValue(value, options) {
|
|
340
|
+
if (!options)
|
|
341
|
+
return `${value}`;
|
|
342
|
+
const option = options.find((opt) => opt.value === value);
|
|
343
|
+
return option ? option.label : `${value}`;
|
|
344
|
+
}
|
|
345
|
+
isBooleanValue(obj, path) {
|
|
346
|
+
const value = this.getFieldValue(obj, path);
|
|
347
|
+
if (value === true || value === false)
|
|
348
|
+
return true;
|
|
349
|
+
else
|
|
350
|
+
return false;
|
|
351
|
+
}
|
|
352
|
+
getBooleanLabel(obj, path, optionsLabel) {
|
|
353
|
+
if (!optionsLabel) {
|
|
354
|
+
return;
|
|
355
|
+
}
|
|
356
|
+
if (this.getFieldValue(obj, path)) {
|
|
357
|
+
return optionsLabel.true;
|
|
358
|
+
}
|
|
359
|
+
else {
|
|
360
|
+
return optionsLabel.false;
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
isNumber(obj, path) {
|
|
364
|
+
return !new BigNumber(this.getFieldValue(obj, path)).isNaN();
|
|
365
|
+
}
|
|
366
|
+
setHotkeys() {
|
|
367
|
+
const clearHotkey = this.newHotkey('alt+shift+l', this.clear.bind(this));
|
|
368
|
+
const findHotkey = this.newHotkey('alt+shift+f', this.search.bind(this));
|
|
369
|
+
const hideHotkey = this.newHotkey('alt+shift+c', this.hideDialog.bind(this));
|
|
370
|
+
const selectHotkey = this.newHotkey('alt+shift+s', this.select.bind(this));
|
|
371
|
+
const bindedHotkeys = [clearHotkey, findHotkey, hideHotkey, selectHotkey];
|
|
372
|
+
bindedHotkeys.forEach((hotkey) => this.hotkeysService.add(hotkey));
|
|
373
|
+
}
|
|
374
|
+
newHotkey(combo, fn) {
|
|
375
|
+
return new Hotkey(combo, () => {
|
|
376
|
+
fn();
|
|
377
|
+
return false;
|
|
378
|
+
}, ['INPUT', 'SELECT', 'TEXTAREA']);
|
|
379
|
+
}
|
|
380
|
+
filterToggle() {
|
|
381
|
+
if (this.animating)
|
|
382
|
+
return;
|
|
383
|
+
this.animating = true;
|
|
384
|
+
this.collapsed = !this.collapsed;
|
|
385
|
+
}
|
|
386
|
+
onToggleDone() {
|
|
387
|
+
this.animating = false;
|
|
388
|
+
}
|
|
389
|
+
/**
|
|
390
|
+
* Calculate the table column size. The minimum value is 14.286em, which is equals to 200px duo to the current font size.
|
|
391
|
+
* @param label Column name.
|
|
392
|
+
*/
|
|
393
|
+
getColWidth(label) {
|
|
394
|
+
const size = label.length;
|
|
395
|
+
if (size < 14.286)
|
|
396
|
+
return `14.286em`;
|
|
397
|
+
return `${size}em`;
|
|
398
|
+
}
|
|
399
|
+
getScale(scale) {
|
|
400
|
+
return this.isFunction(scale) ? scale() : scale;
|
|
401
|
+
}
|
|
402
|
+
isFunction(value) {
|
|
403
|
+
return value instanceof Function;
|
|
404
|
+
}
|
|
405
|
+
getIntegerMaskConfig(col) {
|
|
406
|
+
return {
|
|
407
|
+
scale: 0,
|
|
408
|
+
thousandsSeparator: col.numberLocaleOptions?.thousandsSeparator,
|
|
409
|
+
prefix: '',
|
|
410
|
+
};
|
|
411
|
+
}
|
|
412
|
+
getDoubleMaskConfig(col) {
|
|
413
|
+
return {
|
|
414
|
+
scale: this.getScale(col.scale),
|
|
415
|
+
decimalSeparator: col.numberLocaleOptions?.decimalSeparator,
|
|
416
|
+
thousandsSeparator: col.numberLocaleOptions?.thousandsSeparator,
|
|
417
|
+
prefix: '',
|
|
418
|
+
};
|
|
419
|
+
}
|
|
420
|
+
getMoneyMaskConfig(col) {
|
|
421
|
+
return {
|
|
422
|
+
scale: this.getScale(col.scale),
|
|
423
|
+
decimalSeparator: col.numberLocaleOptions?.decimalSeparator,
|
|
424
|
+
thousandsSeparator: col.numberLocaleOptions?.thousandsSeparator,
|
|
425
|
+
prefix: col.numberLocaleOptions?.currencySymbol,
|
|
426
|
+
};
|
|
427
|
+
}
|
|
428
|
+
getNumberMaskConfig(col) {
|
|
429
|
+
return {
|
|
430
|
+
scale: this.getScale(col.scale),
|
|
431
|
+
decimalSeparator: col.numberLocaleOptions?.decimalSeparator,
|
|
432
|
+
thousandsSeparator: col.numberLocaleOptions?.thousandsSeparator,
|
|
433
|
+
prefix: col.numberLocaleOptions?.currencySymbol,
|
|
434
|
+
};
|
|
435
|
+
}
|
|
436
|
+
parseValueMaskValue(col, rowData) {
|
|
437
|
+
const _mask = col.mask;
|
|
438
|
+
const isFunction = this.isFunction(_mask);
|
|
439
|
+
return isFunction ? _mask({ value: rowData }) : _mask;
|
|
440
|
+
}
|
|
441
|
+
onTableRowDoubleClick(rowData) {
|
|
442
|
+
this.selected = [rowData];
|
|
443
|
+
this.select();
|
|
444
|
+
}
|
|
445
|
+
_setFocusFilter() {
|
|
446
|
+
if (this.dialogVisible && !this.collapsed) {
|
|
447
|
+
const input = this.lookupDialogContainer()?.nativeElement.querySelector('input');
|
|
448
|
+
if (input) {
|
|
449
|
+
input.focus();
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
_subscribeEvents() {
|
|
454
|
+
this.onSearchRequest.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => (this.loading = true));
|
|
455
|
+
this.onSelect.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => this.onChange?.(this.value));
|
|
456
|
+
this.onUnselect.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => this.onChange?.(this.value));
|
|
457
|
+
this.onClear.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => {
|
|
458
|
+
if (this.multiple) {
|
|
459
|
+
return;
|
|
460
|
+
}
|
|
461
|
+
this.onChange?.(null);
|
|
462
|
+
});
|
|
463
|
+
this.onFocus.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => {
|
|
464
|
+
this.onTouched?.();
|
|
465
|
+
});
|
|
466
|
+
this.onBlur.pipe(takeUntil(this.ngUnsubscribe)).subscribe((event) => {
|
|
467
|
+
if (isNullOrUndefined(this.lookupDisplayField))
|
|
468
|
+
return;
|
|
469
|
+
const target = event.target;
|
|
470
|
+
const currentValue = this.value && this.value[this.lookupDisplayField];
|
|
471
|
+
const { value } = target;
|
|
472
|
+
if (this.multiple || !currentValue || currentValue == value)
|
|
473
|
+
return;
|
|
474
|
+
const newValue = '';
|
|
475
|
+
target.value = newValue;
|
|
476
|
+
this.onChange?.(newValue);
|
|
477
|
+
});
|
|
478
|
+
}
|
|
479
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LookupComponent, deps: [{ token: i1.HotkeysService }, { token: i2.TranslateService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
480
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: LookupComponent, selector: "s-lookup", inputs: { formControlName: "formControlName", id: "id", autocompleteForceSelection: "autocompleteForceSelection", multiple: "multiple", dataKey: "dataKey", disabled: "disabled", showSearch: "showSearch", lookupSuggestions: "lookupSuggestions", lookupDisplayField: "lookupDisplayField", lookupDisplayFieldTooltip: "lookupDisplayFieldTooltip", lookupEmptyMessage: "lookupEmptyMessage", lookupAppendTo: "lookupAppendTo", searchEmptyDescription: "searchEmptyDescription", searchGridData: "searchGridData", searchTotalRecords: "searchTotalRecords", searchFields: "searchFields", searchGridFields: "searchGridFields", multiSortMeta: "multiSortMeta", placeholder: "placeholder", sortableColumnsDisabled: "sortableColumnsDisabled", lookupRowProps: "lookupRowProps", defaultFilter: "defaultFilter", showAddOption: "showAddOption", showEditOption: "showEditOption", showRemoveOption: "showRemoveOption", labelOptions: "labelOptions" }, outputs: { onLookupRequest: "onLookupRequest", onSearchRequest: "onSearchRequest", onFocus: "onFocus", onBlur: "onBlur", onKeyUp: "onKeyUp", onSelect: "onSelect", onUnselect: "onUnselect", onClear: "onClear", onAdd: "onAdd", onEdit: "onEdit", onRemove: "onRemove", onClearButtonClick: "onClearButtonClick" }, providers: [
|
|
481
|
+
{
|
|
482
|
+
provide: NG_VALUE_ACCESSOR,
|
|
483
|
+
useExisting: forwardRef(() => LookupComponent),
|
|
484
|
+
multi: true,
|
|
485
|
+
},
|
|
486
|
+
], viewQueries: [{ propertyName: "lookupDialogContainer", first: true, predicate: ["dialogContainer"], descendants: true, isSignal: true }, { propertyName: "table", first: true, predicate: Table, descendants: true }, { propertyName: "autocomplete", first: true, predicate: AutoComplete, descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div [ngClass]=\"{ inputgroup: showSearch }\">\n <p-autoComplete\n #autocomplete\n [(ngModel)]=\"value\"\n [disabled]=\"disabled\"\n [dataKey]=\"dataKey\"\n [multiple]=\"multiple\"\n [inputId]=\"id + '-autocomplete'\"\n [forceSelection]=\"autocompleteForceSelection\"\n [suggestions]=\"getLookupSuggestions()\"\n (completeMethod)=\"onCompleteMethod($event)\"\n (onSelect)=\"onSelect.next($event)\"\n (onBlur)=\"onBlur.next($event)\"\n (onFocus)=\"onFocus.next($event)\"\n (onUnselect)=\"onUnselect.next($event)\"\n (onClear)=\"onClear.next($event)\"\n (onKeyUp)=\"onKeyUp.next($event)\"\n [field]=\"lookupDisplayField\"\n [emptyMessage]=\"lookupEmptyMessage\"\n [dropdown]=\"!showSearch\"\n [appendTo]=\"lookupAppendTo\"\n [placeholder]=\"placeholder || ' '\"\n [autoHighlight]=\"true\"\n inputStyleClass=\"mousetrap\"\n >\n </p-autoComplete>\n @if (showSearch) {\n <button\n class=\"button-addon\"\n [class.button-addon--disabled]=\"disabled\"\n [disabled]=\"disabled\"\n (click)=\"showDialog()\"\n >\n <i class=\"fa fa-search\"></i>\n </button>\n }\n</div>\n\n<s-dialog\n [(visible)]=\"dialogVisible\"\n (visibleChange)=\"onVisibleChange($event!)\"\n [header]=\"labelOptions?.searchTitle || 'platform.angular_components.advanced_search' | translate\"\n contentClassName=\"s-lookup-modal\"\n size=\"xl\"\n>\n @if (dialogVisible) {\n <div\n class=\"s-lookup-modal-container\"\n #dialogContainer\n >\n @if (searchFields && searchFields.length) {\n <div\n class=\"filter\"\n [@collapseContent]=\"\n collapsed\n ? { value: 'hidden', params: { transitionParams: transitionOptions } }\n : { value: 'visible', params: { transitionParams: transitionOptions } }\n \"\n (@collapseContent.done)=\"onToggleDone()\"\n >\n <form\n [formGroup]=\"formGroupDialog\"\n novalidate\n autocomplete=\"off\"\n >\n @if (!collapsed) {\n <div\n class=\"form-content\"\n [@childCollapseContent]=\"\n collapsed\n ? { value: ':leave', params: { transitionParams: transitionOptions } }\n : { value: ':enter', params: { transitionParams: transitionOptions } }\n \"\n >\n <div class=\"filter-title sds-section-title\">\n {{ labelOptions?.filterTitle || 'platform.angular_components.filters' | translate }}\n </div>\n <div class=\"form-fields\">\n @let configs =\n [\n {\n type: rowType,\n fields: searchFields,\n },\n ];\n\n <s-dynamic-form\n [configs]=\"configs\"\n [form]=\"formGroupDialog\"\n >\n </s-dynamic-form>\n </div>\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button\n [id]=\"id + '-filter-button'\"\n type=\"submit\"\n [label]=\"\n labelOptions?.filterLabel || 'platform.angular_components.filter'\n | translate\n \"\n (clicked)=\"search()\"\n sTooltip=\"(ALT + SHIFT + F)\"\n >\n </s-button>\n <s-button\n [id]=\"id + '-clear-button'\"\n type=\"button\"\n [label]=\"\n labelOptions?.clearLabel || 'platform.angular_components.clear'\n | translate\n \"\n (clicked)=\"clear()\"\n priority=\"link\"\n sTooltip=\"(ALT + SHIFT + L)\"\n >\n </s-button>\n </div>\n </div>\n </div>\n }\n </form>\n </div>\n }\n @if (searchFields && searchFields.length) {\n <div class=\"filter-toggle\">\n <button\n [id]=\"id + '-filter-toggle-button'\"\n type=\"button\"\n (click)=\"filterToggle()\"\n >\n <span\n class=\"fa\"\n [ngClass]=\"{ 'fa-chevron-left': !collapsed, 'fa-chevron-right': collapsed }\"\n aria-hidden=\"true\"\n >\n </span>\n </button>\n </div>\n }\n @let isEmptyContent = !searchTotalRecords && !loading;\n <div\n class=\"content\"\n #contentContainer\n [ngClass]=\"{ 'empty-content': isEmptyContent }\"\n >\n @if (isEmptyContent) {\n <s-empty-state\n [id]=\"id + '-empty-state'\"\n [title]=\"\n labelOptions?.searchEmptyTitle || 'platform.angular_components.no_records_found' | translate\n \"\n [description]=\"searchEmptyDescription\"\n iconClass=\"fa fa-search\"\n >\n </s-empty-state>\n }\n <div class=\"content-child\">\n <p-table\n [dataKey]=\"dataKey\"\n [value]=\"getGridData()\"\n [columns]=\"searchGridFields\"\n [lazy]=\"true\"\n [scrollable]=\"true\"\n [paginator]=\"true\"\n sortMode=\"multiple\"\n [totalRecords]=\"searchTotalRecords\"\n [rows]=\"10\"\n [selection]=\"selected\"\n (onLazyLoad)=\"lazyLoadGrid($event)\"\n [multiSortMeta]=\"multiSortMeta\"\n [attr.data-hidden]=\"!searchTotalRecords && !loading\"\n [selectionMode]=\"multiple ? 'multiple' : 'single'\"\n (selectionChange)=\"onSelectionChange($event)\"\n *sLoadingState=\"{ loading: loading, indicator: indicatorLogo }\"\n >\n <ng-template pTemplate=\"caption\">\n <div>\n @if (showAddOption) {\n <s-button\n priority=\"default\"\n [label]=\"'platform.angular_components.add' | translate\"\n (clicked)=\"onAdd.emit()\"\n >\n </s-button>\n }\n @if (showEditOption) {\n <s-button\n priority=\"default\"\n [label]=\"'platform.angular_components.edit' | translate\"\n [disabled]=\"selected.length !== 1\"\n (clicked)=\"onEdit.emit(this.selected[0])\"\n >\n </s-button>\n }\n @if (showRemoveOption) {\n <s-button\n priority=\"default\"\n [label]=\"'platform.angular_components.remove' | translate\"\n [disabled]=\"!selected.length\"\n (clicked)=\"onRemove.emit(this.selected)\"\n >\n </s-button>\n }\n </div>\n </ng-template>\n <ng-template\n pTemplate=\"colgroup\"\n let-columns\n >\n <colgroup>\n @if (multiple) {\n <col style=\"width: 50px\" />\n }\n\n @for (col of columns; track $index) {\n <col [style.width]=\"col.width\" />\n }\n </colgroup>\n </ng-template>\n <ng-template\n pTemplate=\"header\"\n let-columns\n >\n <tr>\n @if (multiple) {\n <th style=\"width: 50px\">\n <s-table-header-checkbox\n [useAllObject]=\"lookupRowProps ? false : true\"\n [rowProps]=\"lookupRowProps\"\n >\n </s-table-header-checkbox>\n </th>\n }\n @for (col of columns; track $index) {\n <th\n [style.width]=\"col.width\"\n [pSortableColumn]=\"col.name\"\n [pSortableColumnDisabled]=\"sortableColumnsDisabled.includes(col.name)\"\n >\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.label }}</span>\n @if (!sortableColumnsDisabled.includes(col.name)) {\n <p-sortIcon [field]=\"col.name\"> </p-sortIcon>\n }\n </div>\n </th>\n }\n </tr>\n </ng-template>\n <ng-template\n pTemplate=\"body\"\n let-rowData\n let-columns\n let-rowIndex=\"rowIndex\"\n >\n <tr\n sNavigation\n [pSelectableRow]=\"rowData\"\n [pSelectableRowIndex]=\"rowIndex\"\n sDoubleClick\n (onDoubleClick)=\"onTableRowDoubleClick(rowData)\"\n >\n @if (multiple) {\n <td\n style=\"width: 50px\"\n tabindex=\"0\"\n >\n <p-tableCheckbox\n [value]=\"rowData\"\n [pSelectableRow]=\"rowData\"\n >\n </p-tableCheckbox>\n </td>\n }\n @for (col of searchGridFields; track $index) {\n <td\n [style.width]=\"col.width\"\n [ngSwitch]=\"col.type\"\n tabindex=\"0\"\n >\n @switch (col.type) {\n @case ('Boolean') {\n <ng-container\n *ngIf=\"isBooleanValue(rowData, col.name); else emptyTemplate\"\n >\n <span>{{\n getBooleanLabel(rowData, col.name, col.optionsLabel)\n }}</span>\n </ng-container>\n }\n @case ('Date') {\n <ng-container\n *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\"\n >\n <span>{{\n getFieldValue(rowData, col.name)\n | localizedDate\n : col.calendarLocaleOptions?.dateFormat || 'L'\n | async\n }}</span>\n </ng-container>\n }\n @case ('DateTime') {\n <ng-container\n *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\"\n >\n <span>{{\n getFieldValue(rowData, col.name) | localizedDate | async\n }}</span>\n </ng-container>\n }\n @case ('LocalDateTime') {\n <ng-container\n *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\"\n >\n <span>{{\n getFieldValue(rowData, col.name) | localizedDate | async\n }}</span>\n </ng-container>\n }\n @case ('Time') {\n <ng-container\n *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\"\n >\n <span>{{\n getFieldValue(rowData, col.name)\n | localizedTime\n : col.calendarLocaleOptions?.dateFormat || 'LTS'\n | async\n }}</span>\n </ng-container>\n }\n @case ('Integer') {\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span>\n {{\n getFieldValue(rowData, col.name)\n | localizedBignumber: getIntegerMaskConfig(col)\n | async\n }}\n </span>\n </ng-container>\n }\n @case ('Double') {\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span>\n {{\n getFieldValue(rowData, col.name)\n | localizedBignumber: getDoubleMaskConfig(col)\n | async\n }}\n </span>\n </ng-container>\n }\n @case ('Money') {\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span>\n {{\n getFieldValue(rowData, col.name)\n | localizedBignumber: getMoneyMaskConfig(col)\n | async\n }}\n </span>\n </ng-container>\n }\n @case ('Number') {\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span>\n {{\n getFieldValue(rowData, col.name)\n | localizedBignumber: getNumberMaskConfig(col)\n | async\n }}\n </span>\n </ng-container>\n }\n @case ('Enum') {\n <ng-container\n *ngIf=\"\n getLabelForValue(getFieldValue(rowData, col.name), col.options);\n else emptyTemplate\n \"\n >\n <ng-container\n *ngIf=\"\n getBadgeFromValue(\n getFieldValue(rowData, col.name),\n col.options\n );\n then withBadge;\n else withoutBadge\n \"\n ></ng-container>\n <ng-template #withBadge>\n <s-badge\n [text]=\"\n getLabelForValue(\n getFieldValue(rowData, col.name),\n col.options\n )\n \"\n [color]=\"\n getBadgeFromValue(\n getFieldValue(rowData, col.name),\n col.options\n )?.color\n \"\n [type]=\"\n getBadgeFromValue(\n getFieldValue(rowData, col.name),\n col.options\n )?.type\n \"\n [iconClass]=\"\n getBadgeFromValue(\n getFieldValue(rowData, col.name),\n col.options\n )?.iconClass\n \"\n [iconPosition]=\"\n getBadgeFromValue(\n getFieldValue(rowData, col.name),\n col.options\n )?.iconPosition\n \"\n >\n </s-badge>\n </ng-template>\n <ng-template #withoutBadge>\n <span>\n {{\n getLabelForValue(\n getFieldValue(rowData, col.name),\n col.options\n )\n }}\n </span>\n </ng-template>\n </ng-container>\n }\n @default {\n @if (col.mask && parseValueMaskValue(col, rowData)) {\n <ng-container\n *ngIf=\"\n isNumber(rowData, col.name) ||\n getFieldValue(rowData, col.name)\n \"\n >\n <span>{{\n getFieldValue(rowData, col.name)\n | sMaskFormatter: parseValueMaskValue(col, rowData)\n }}</span>\n </ng-container>\n } @else {\n <ng-container\n *ngIf=\"\n isNumber(rowData, col.name) ||\n getFieldValue(rowData, col.name);\n else emptyTemplate\n \"\n >\n <span>{{ getFieldValue(rowData, col.name) }}</span>\n </ng-container>\n }\n }\n }\n </td>\n }\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span [attr.data-hidden]=\"loading\">\n {{ printRecordTotalizer() }}\n </span>\n </ng-template>\n </p-table>\n </div>\n </div>\n </div>\n\n <ng-template sTemplate=\"footer\">\n <div class=\"flex w-full justify-end\">\n <s-button\n [id]=\"id + '-cancel-button'\"\n type=\"button\"\n priority=\"link\"\n [label]=\"labelOptions?.cancelLabel || 'platform.angular_components.cancel' | translate\"\n (clicked)=\"hideDialog()\"\n sTooltip=\"(ALT + SHIFT + C)\"\n >\n </s-button>\n <s-button\n [id]=\"id + '-select-button'\"\n type=\"button\"\n [label]=\"labelOptions?.selectLabel || 'platform.angular_components.select' | translate\"\n (clicked)=\"select()\"\n sTooltip=\"(ALT + SHIFT + S)\"\n [disabled]=\"!selected.length\"\n >\n </s-button>\n </div>\n </ng-template>\n }\n</s-dialog>\n\n<ng-template #emptyTemplate>\n <span class=\"sds-empty-value\">\n {{ labelOptions?.emptyFieldLabel || 'platform.angular_components.not_informed' | translate }}\n </span>\n</ng-template>\n", styles: ["s-lookup.ng-dirty.ng-invalid .ui-inputtext{border-color:#c13018}s-lookup .p-autocomplete-input-multiple{border-top-right-radius:0!important;border-bottom-right-radius:0!important}s-lookup .inputgroup p-autocomplete+button,s-lookup p-autocomplete .ui-autocomplete-dropdown.ui-button{background-color:#fff;border-color:#ccc;border-width:1px 1px 1px 0;color:#333;min-height:35px;height:auto!important;min-width:auto;width:35px!important;overflow:hidden;border-radius:0 4px 4px 0}s-lookup p-autocomplete span.ui-autocomplete-multiple,s-lookup .inputgroup{display:flex}s-lookup .inputgroup p-autocomplete{display:inline-block}s-lookup .inputgroup p-autocomplete .p-autocomplete-input{width:100%}s-lookup .inputgroup p-autocomplete+button:enabled:hover,s-lookup .inputgroup p-autocomplete+button:focus{background-color:highlight(#ccc);border-color:#ccc}s-lookup:not(.ng-dirty.ng-invalid) .inputgroup p-autocomplete .ui-widget .ui-inputtext{border-right-width:1px;border-right-style:solid}s-lookup .ui-autocomplete-input-token{width:100%}s-lookup .ui-autocomplete-input-token input{width:100%}s-lookup .ui-autocomplete .ui-autocomplete-token{max-width:100%}s-lookup .ui-autocomplete .ui-autocomplete-token-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}body .s-lookup-modal.p-dialog .p-dialog-content{padding:0;margin-bottom:0;max-height:none}s-lookup .p-table-scrollable-body{min-width:100%}.s-lookup-modal main{padding:0}.s-lookup-modal .s-lookup-modal-container{height:85vh;display:flex;flex-direction:row;width:100%}.s-lookup-modal .s-lookup-modal-container .filter{width:min-content;height:auto;flex-grow:0;flex-shrink:0;background-color:#e5eaea80;padding:.571rem}.s-lookup-modal .s-lookup-modal-container .filter form{width:100%;height:100%}.s-lookup-modal .s-lookup-modal-container .filter form .form-content{height:100%;display:flex;flex-direction:column}.s-lookup-modal .s-lookup-modal-container .filter form .form-content .filter-title{padding-left:.5rem}.s-lookup-modal .s-lookup-modal-container .filter form .form-content .form-fields{overflow-y:auto}.s-lookup-modal .s-lookup-modal-container .filter-toggle{margin-top:15px;flex-grow:0;flex-shrink:0;width:35px;border-radius:0 4px 4px 0}.s-lookup-modal .s-lookup-modal-container .filter-toggle button{align-items:center;position:relative;background-color:#e5eaea80;height:35px;width:100%;border:1px solid #e5eaea;outline:none;border-left:none;border-radius:0 4px 4px 0;cursor:pointer;text-decoration:none;text-transform:none;padding:7px;transition:background-color .2s ease-out,color .2s ease-out,border-color .2s ease-out}.s-lookup-modal .s-lookup-modal-container .filter-toggle button:hover,.s-lookup-modal .s-lookup-modal-container .filter-toggle button:focus{background-color:active(rgba(229,234,234,.5));border-color:active(#e5eaea)}.s-lookup-modal .s-lookup-modal-container .content{flex-grow:1;flex-basis:auto;overflow-x:auto;display:flex;flex-direction:column;padding:.5rem}.s-lookup-modal .s-lookup-modal-container .content-child{height:100%}.s-lookup-modal .s-lookup-modal-container .content s-loading-state{height:100%;display:block}.s-lookup-modal .s-lookup-modal-container .content .s-loading-state,.s-lookup-modal .s-lookup-modal-container .content .s-loading-state .state-contents{height:100%}.s-lookup-modal .s-lookup-modal-container .content.empty-content{align-self:center}.s-lookup-modal .s-lookup-modal-container .content.empty-content .content-child{display:none}.s-lookup-modal .s-lookup-modal-container .content p-table>.p-datatable{height:100%;display:flex;flex-direction:column}.s-lookup-modal .s-lookup-modal-container .content p-table>.p-datatable .p-datatable-table-container{flex:1;margin-bottom:0}.inputgroup p-autocomplete{width:calc(100% - 35px)}\n"], dependencies: [{ kind: "component", type: i3.AutoComplete, selector: "p-autoComplete, p-autocomplete, p-auto-complete", inputs: ["minLength", "delay", "style", "panelStyle", "styleClass", "panelStyleClass", "inputStyle", "inputId", "inputStyleClass", "placeholder", "readonly", "disabled", "scrollHeight", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "maxlength", "name", "required", "size", "appendTo", "autoHighlight", "forceSelection", "type", "autoZIndex", "baseZIndex", "ariaLabel", "dropdownAriaLabel", "ariaLabelledBy", "dropdownIcon", "unique", "group", "completeOnFocus", "showClear", "field", "dropdown", "showEmptyMessage", "dropdownMode", "multiple", "tabindex", "dataKey", "emptyMessage", "showTransitionOptions", "hideTransitionOptions", "autofocus", "autocomplete", "optionGroupChildren", "optionGroupLabel", "overlayOptions", "suggestions", "itemSize", "optionLabel", "optionValue", "id", "searchMessage", "emptySelectionMessage", "selectionMessage", "autoOptionFocus", "selectOnFocus", "searchLocale", "optionDisabled", "focusOnHover", "typeahead", "variant", "fluid"], outputs: ["completeMethod", "onSelect", "onUnselect", "onFocus", "onBlur", "onDropdownClick", "onClear", "onKeyUp", "onShow", "onHide", "onLazyLoad"] }, { kind: "directive", type: i4.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i5.BadgeComponent, selector: "s-badge", inputs: ["type", "color", "title", "text", "selectable", "iconClass", "iconPosition", "infoSign"], outputs: ["selected"] }, { kind: "component", type: i6.ButtonComponent, selector: "s-button", inputs: ["id", "label", "tooltip", "tooltipPosition", "iconClass", "rightIconClass", "caret", "styleClass", "baseZIndex", "disabled", "auxiliary", "type", "priority", "menuOptions", "size", "slide", "animation", "badge", "iconColor"], outputs: ["clicked"] }, { kind: "directive", type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i7.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "component", type: i8.DialogComponent, selector: "s-dialog", inputs: ["header", "visible", "size", "contentClassName", "escapeOnEsc", "destroyClickOutside"], outputs: ["visibleChange"] }, { kind: "component", type: i9.EmptyStateComponent, selector: "s-empty-state", inputs: ["id", "title", "iconClass", "description", "showPrimaryAction", "showSecondaryAction", "primaryActionLabel", "secondaryActionLabel", "primaryModel"], outputs: ["primaryAction", "secondaryAction"] }, { kind: "directive", type: i10.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i10.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i10.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i10.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i11.LoadingStateDirective, selector: "[sLoadingState]", inputs: ["sLoadingState"] }, { kind: "component", type: i12.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "style", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorStyleClass", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "scrollDirection", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "responsive", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "autoLayout", "exportFunction", "exportHeader", "stateKey", "stateStorage", "editMode", "groupRowsBy", "size", "showGridlines", "stripedRows", "groupRowsByOrder", "responsiveLayout", "breakpoint", "paginatorLocale", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "virtualRowHeight", "selectAll"], outputs: ["contextMenuSelectionChange", "selectAllChange", "selectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { kind: "directive", type: i12.SortableColumn, selector: "[pSortableColumn]", inputs: ["pSortableColumn", "pSortableColumnDisabled"] }, { kind: "directive", type: i12.SelectableRow, selector: "[pSelectableRow]", inputs: ["pSelectableRow", "pSelectableRowIndex", "pSelectableRowDisabled"] }, { kind: "component", type: i12.SortIcon, selector: "p-sortIcon", inputs: ["field"] }, { kind: "component", type: i12.TableCheckbox, selector: "p-tableCheckbox", inputs: ["disabled", "value", "index", "inputId", "name", "required", "ariaLabel"] }, { kind: "directive", type: i10.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i13.TooltipDirective, selector: "[sTooltip]", inputs: ["sTooltip", "tooltipPosition", "showDelay", "displayTime", "tooltipEvent", "escape", "visible", "mobileBehavior", "focusedInputRef", "checkTruncatedText"] }, { kind: "component", type: i14.TableHeaderCheckboxComponent, selector: "s-table-header-checkbox", inputs: ["id", "disabled", "rowProps", "useAllObject"] }, { kind: "directive", type: i15.DoubleClickDirective, selector: "[sDoubleClick]", outputs: ["doubleClicked"] }, { kind: "directive", type: i16.TemplateDirective, selector: "[sTemplate]", inputs: ["sTemplate"] }, { kind: "component", type: i17.DynamicFormComponent, selector: "s-dynamic-form", inputs: ["id", "configs", "fields", "form", "errorMessages"] }, { kind: "pipe", type: i7.AsyncPipe, name: "async" }, { kind: "pipe", type: i18.LocalizedDatePipe, name: "localizedDate" }, { kind: "pipe", type: i18.LocalizedTimePipe, name: "localizedTime" }, { kind: "pipe", type: i18.LocalizedBignumberPipe, name: "localizedBignumber" }, { kind: "pipe", type: i19.MaskFormatterPipe, name: "sMaskFormatter" }, { kind: "pipe", type: i2.TranslatePipe, name: "translate" }], animations: [
|
|
487
|
+
trigger('collapseContent', [
|
|
488
|
+
state('hidden', style({
|
|
489
|
+
width: '10px',
|
|
490
|
+
padding: 0,
|
|
491
|
+
})),
|
|
492
|
+
state('visible', style({
|
|
493
|
+
width: '*',
|
|
494
|
+
})),
|
|
495
|
+
transition('visible <=> hidden', [
|
|
496
|
+
group([query('@childCollapseContent', animateChild()), animate('{{transitionParams}}')]),
|
|
497
|
+
]),
|
|
498
|
+
]),
|
|
499
|
+
trigger('childCollapseContent', [
|
|
500
|
+
state(':leave', style({
|
|
501
|
+
opacity: 0,
|
|
502
|
+
})),
|
|
503
|
+
state(':enter', style({
|
|
504
|
+
opacity: 1,
|
|
505
|
+
})),
|
|
506
|
+
transition('* <=> *', animate('{{transitionParams}}')),
|
|
507
|
+
]),
|
|
508
|
+
], encapsulation: i0.ViewEncapsulation.None });
|
|
509
|
+
}
|
|
510
|
+
__decorate([
|
|
511
|
+
CheckDisabled()
|
|
512
|
+
], LookupComponent.prototype, "showDialog", null);
|
|
513
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LookupComponent, decorators: [{
|
|
514
|
+
type: Component,
|
|
515
|
+
args: [{ selector: 's-lookup', providers: [
|
|
516
|
+
{
|
|
517
|
+
provide: NG_VALUE_ACCESSOR,
|
|
518
|
+
useExisting: forwardRef(() => LookupComponent),
|
|
519
|
+
multi: true,
|
|
520
|
+
},
|
|
521
|
+
], encapsulation: ViewEncapsulation.None, animations: [
|
|
522
|
+
trigger('collapseContent', [
|
|
523
|
+
state('hidden', style({
|
|
524
|
+
width: '10px',
|
|
525
|
+
padding: 0,
|
|
526
|
+
})),
|
|
527
|
+
state('visible', style({
|
|
528
|
+
width: '*',
|
|
529
|
+
})),
|
|
530
|
+
transition('visible <=> hidden', [
|
|
531
|
+
group([query('@childCollapseContent', animateChild()), animate('{{transitionParams}}')]),
|
|
532
|
+
]),
|
|
533
|
+
]),
|
|
534
|
+
trigger('childCollapseContent', [
|
|
535
|
+
state(':leave', style({
|
|
536
|
+
opacity: 0,
|
|
537
|
+
})),
|
|
538
|
+
state(':enter', style({
|
|
539
|
+
opacity: 1,
|
|
540
|
+
})),
|
|
541
|
+
transition('* <=> *', animate('{{transitionParams}}')),
|
|
542
|
+
]),
|
|
543
|
+
], template: "<div [ngClass]=\"{ inputgroup: showSearch }\">\n <p-autoComplete\n #autocomplete\n [(ngModel)]=\"value\"\n [disabled]=\"disabled\"\n [dataKey]=\"dataKey\"\n [multiple]=\"multiple\"\n [inputId]=\"id + '-autocomplete'\"\n [forceSelection]=\"autocompleteForceSelection\"\n [suggestions]=\"getLookupSuggestions()\"\n (completeMethod)=\"onCompleteMethod($event)\"\n (onSelect)=\"onSelect.next($event)\"\n (onBlur)=\"onBlur.next($event)\"\n (onFocus)=\"onFocus.next($event)\"\n (onUnselect)=\"onUnselect.next($event)\"\n (onClear)=\"onClear.next($event)\"\n (onKeyUp)=\"onKeyUp.next($event)\"\n [field]=\"lookupDisplayField\"\n [emptyMessage]=\"lookupEmptyMessage\"\n [dropdown]=\"!showSearch\"\n [appendTo]=\"lookupAppendTo\"\n [placeholder]=\"placeholder || ' '\"\n [autoHighlight]=\"true\"\n inputStyleClass=\"mousetrap\"\n >\n </p-autoComplete>\n @if (showSearch) {\n <button\n class=\"button-addon\"\n [class.button-addon--disabled]=\"disabled\"\n [disabled]=\"disabled\"\n (click)=\"showDialog()\"\n >\n <i class=\"fa fa-search\"></i>\n </button>\n }\n</div>\n\n<s-dialog\n [(visible)]=\"dialogVisible\"\n (visibleChange)=\"onVisibleChange($event!)\"\n [header]=\"labelOptions?.searchTitle || 'platform.angular_components.advanced_search' | translate\"\n contentClassName=\"s-lookup-modal\"\n size=\"xl\"\n>\n @if (dialogVisible) {\n <div\n class=\"s-lookup-modal-container\"\n #dialogContainer\n >\n @if (searchFields && searchFields.length) {\n <div\n class=\"filter\"\n [@collapseContent]=\"\n collapsed\n ? { value: 'hidden', params: { transitionParams: transitionOptions } }\n : { value: 'visible', params: { transitionParams: transitionOptions } }\n \"\n (@collapseContent.done)=\"onToggleDone()\"\n >\n <form\n [formGroup]=\"formGroupDialog\"\n novalidate\n autocomplete=\"off\"\n >\n @if (!collapsed) {\n <div\n class=\"form-content\"\n [@childCollapseContent]=\"\n collapsed\n ? { value: ':leave', params: { transitionParams: transitionOptions } }\n : { value: ':enter', params: { transitionParams: transitionOptions } }\n \"\n >\n <div class=\"filter-title sds-section-title\">\n {{ labelOptions?.filterTitle || 'platform.angular_components.filters' | translate }}\n </div>\n <div class=\"form-fields\">\n @let configs =\n [\n {\n type: rowType,\n fields: searchFields,\n },\n ];\n\n <s-dynamic-form\n [configs]=\"configs\"\n [form]=\"formGroupDialog\"\n >\n </s-dynamic-form>\n </div>\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button\n [id]=\"id + '-filter-button'\"\n type=\"submit\"\n [label]=\"\n labelOptions?.filterLabel || 'platform.angular_components.filter'\n | translate\n \"\n (clicked)=\"search()\"\n sTooltip=\"(ALT + SHIFT + F)\"\n >\n </s-button>\n <s-button\n [id]=\"id + '-clear-button'\"\n type=\"button\"\n [label]=\"\n labelOptions?.clearLabel || 'platform.angular_components.clear'\n | translate\n \"\n (clicked)=\"clear()\"\n priority=\"link\"\n sTooltip=\"(ALT + SHIFT + L)\"\n >\n </s-button>\n </div>\n </div>\n </div>\n }\n </form>\n </div>\n }\n @if (searchFields && searchFields.length) {\n <div class=\"filter-toggle\">\n <button\n [id]=\"id + '-filter-toggle-button'\"\n type=\"button\"\n (click)=\"filterToggle()\"\n >\n <span\n class=\"fa\"\n [ngClass]=\"{ 'fa-chevron-left': !collapsed, 'fa-chevron-right': collapsed }\"\n aria-hidden=\"true\"\n >\n </span>\n </button>\n </div>\n }\n @let isEmptyContent = !searchTotalRecords && !loading;\n <div\n class=\"content\"\n #contentContainer\n [ngClass]=\"{ 'empty-content': isEmptyContent }\"\n >\n @if (isEmptyContent) {\n <s-empty-state\n [id]=\"id + '-empty-state'\"\n [title]=\"\n labelOptions?.searchEmptyTitle || 'platform.angular_components.no_records_found' | translate\n \"\n [description]=\"searchEmptyDescription\"\n iconClass=\"fa fa-search\"\n >\n </s-empty-state>\n }\n <div class=\"content-child\">\n <p-table\n [dataKey]=\"dataKey\"\n [value]=\"getGridData()\"\n [columns]=\"searchGridFields\"\n [lazy]=\"true\"\n [scrollable]=\"true\"\n [paginator]=\"true\"\n sortMode=\"multiple\"\n [totalRecords]=\"searchTotalRecords\"\n [rows]=\"10\"\n [selection]=\"selected\"\n (onLazyLoad)=\"lazyLoadGrid($event)\"\n [multiSortMeta]=\"multiSortMeta\"\n [attr.data-hidden]=\"!searchTotalRecords && !loading\"\n [selectionMode]=\"multiple ? 'multiple' : 'single'\"\n (selectionChange)=\"onSelectionChange($event)\"\n *sLoadingState=\"{ loading: loading, indicator: indicatorLogo }\"\n >\n <ng-template pTemplate=\"caption\">\n <div>\n @if (showAddOption) {\n <s-button\n priority=\"default\"\n [label]=\"'platform.angular_components.add' | translate\"\n (clicked)=\"onAdd.emit()\"\n >\n </s-button>\n }\n @if (showEditOption) {\n <s-button\n priority=\"default\"\n [label]=\"'platform.angular_components.edit' | translate\"\n [disabled]=\"selected.length !== 1\"\n (clicked)=\"onEdit.emit(this.selected[0])\"\n >\n </s-button>\n }\n @if (showRemoveOption) {\n <s-button\n priority=\"default\"\n [label]=\"'platform.angular_components.remove' | translate\"\n [disabled]=\"!selected.length\"\n (clicked)=\"onRemove.emit(this.selected)\"\n >\n </s-button>\n }\n </div>\n </ng-template>\n <ng-template\n pTemplate=\"colgroup\"\n let-columns\n >\n <colgroup>\n @if (multiple) {\n <col style=\"width: 50px\" />\n }\n\n @for (col of columns; track $index) {\n <col [style.width]=\"col.width\" />\n }\n </colgroup>\n </ng-template>\n <ng-template\n pTemplate=\"header\"\n let-columns\n >\n <tr>\n @if (multiple) {\n <th style=\"width: 50px\">\n <s-table-header-checkbox\n [useAllObject]=\"lookupRowProps ? false : true\"\n [rowProps]=\"lookupRowProps\"\n >\n </s-table-header-checkbox>\n </th>\n }\n @for (col of columns; track $index) {\n <th\n [style.width]=\"col.width\"\n [pSortableColumn]=\"col.name\"\n [pSortableColumnDisabled]=\"sortableColumnsDisabled.includes(col.name)\"\n >\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.label }}</span>\n @if (!sortableColumnsDisabled.includes(col.name)) {\n <p-sortIcon [field]=\"col.name\"> </p-sortIcon>\n }\n </div>\n </th>\n }\n </tr>\n </ng-template>\n <ng-template\n pTemplate=\"body\"\n let-rowData\n let-columns\n let-rowIndex=\"rowIndex\"\n >\n <tr\n sNavigation\n [pSelectableRow]=\"rowData\"\n [pSelectableRowIndex]=\"rowIndex\"\n sDoubleClick\n (onDoubleClick)=\"onTableRowDoubleClick(rowData)\"\n >\n @if (multiple) {\n <td\n style=\"width: 50px\"\n tabindex=\"0\"\n >\n <p-tableCheckbox\n [value]=\"rowData\"\n [pSelectableRow]=\"rowData\"\n >\n </p-tableCheckbox>\n </td>\n }\n @for (col of searchGridFields; track $index) {\n <td\n [style.width]=\"col.width\"\n [ngSwitch]=\"col.type\"\n tabindex=\"0\"\n >\n @switch (col.type) {\n @case ('Boolean') {\n <ng-container\n *ngIf=\"isBooleanValue(rowData, col.name); else emptyTemplate\"\n >\n <span>{{\n getBooleanLabel(rowData, col.name, col.optionsLabel)\n }}</span>\n </ng-container>\n }\n @case ('Date') {\n <ng-container\n *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\"\n >\n <span>{{\n getFieldValue(rowData, col.name)\n | localizedDate\n : col.calendarLocaleOptions?.dateFormat || 'L'\n | async\n }}</span>\n </ng-container>\n }\n @case ('DateTime') {\n <ng-container\n *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\"\n >\n <span>{{\n getFieldValue(rowData, col.name) | localizedDate | async\n }}</span>\n </ng-container>\n }\n @case ('LocalDateTime') {\n <ng-container\n *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\"\n >\n <span>{{\n getFieldValue(rowData, col.name) | localizedDate | async\n }}</span>\n </ng-container>\n }\n @case ('Time') {\n <ng-container\n *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\"\n >\n <span>{{\n getFieldValue(rowData, col.name)\n | localizedTime\n : col.calendarLocaleOptions?.dateFormat || 'LTS'\n | async\n }}</span>\n </ng-container>\n }\n @case ('Integer') {\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span>\n {{\n getFieldValue(rowData, col.name)\n | localizedBignumber: getIntegerMaskConfig(col)\n | async\n }}\n </span>\n </ng-container>\n }\n @case ('Double') {\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span>\n {{\n getFieldValue(rowData, col.name)\n | localizedBignumber: getDoubleMaskConfig(col)\n | async\n }}\n </span>\n </ng-container>\n }\n @case ('Money') {\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span>\n {{\n getFieldValue(rowData, col.name)\n | localizedBignumber: getMoneyMaskConfig(col)\n | async\n }}\n </span>\n </ng-container>\n }\n @case ('Number') {\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span>\n {{\n getFieldValue(rowData, col.name)\n | localizedBignumber: getNumberMaskConfig(col)\n | async\n }}\n </span>\n </ng-container>\n }\n @case ('Enum') {\n <ng-container\n *ngIf=\"\n getLabelForValue(getFieldValue(rowData, col.name), col.options);\n else emptyTemplate\n \"\n >\n <ng-container\n *ngIf=\"\n getBadgeFromValue(\n getFieldValue(rowData, col.name),\n col.options\n );\n then withBadge;\n else withoutBadge\n \"\n ></ng-container>\n <ng-template #withBadge>\n <s-badge\n [text]=\"\n getLabelForValue(\n getFieldValue(rowData, col.name),\n col.options\n )\n \"\n [color]=\"\n getBadgeFromValue(\n getFieldValue(rowData, col.name),\n col.options\n )?.color\n \"\n [type]=\"\n getBadgeFromValue(\n getFieldValue(rowData, col.name),\n col.options\n )?.type\n \"\n [iconClass]=\"\n getBadgeFromValue(\n getFieldValue(rowData, col.name),\n col.options\n )?.iconClass\n \"\n [iconPosition]=\"\n getBadgeFromValue(\n getFieldValue(rowData, col.name),\n col.options\n )?.iconPosition\n \"\n >\n </s-badge>\n </ng-template>\n <ng-template #withoutBadge>\n <span>\n {{\n getLabelForValue(\n getFieldValue(rowData, col.name),\n col.options\n )\n }}\n </span>\n </ng-template>\n </ng-container>\n }\n @default {\n @if (col.mask && parseValueMaskValue(col, rowData)) {\n <ng-container\n *ngIf=\"\n isNumber(rowData, col.name) ||\n getFieldValue(rowData, col.name)\n \"\n >\n <span>{{\n getFieldValue(rowData, col.name)\n | sMaskFormatter: parseValueMaskValue(col, rowData)\n }}</span>\n </ng-container>\n } @else {\n <ng-container\n *ngIf=\"\n isNumber(rowData, col.name) ||\n getFieldValue(rowData, col.name);\n else emptyTemplate\n \"\n >\n <span>{{ getFieldValue(rowData, col.name) }}</span>\n </ng-container>\n }\n }\n }\n </td>\n }\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span [attr.data-hidden]=\"loading\">\n {{ printRecordTotalizer() }}\n </span>\n </ng-template>\n </p-table>\n </div>\n </div>\n </div>\n\n <ng-template sTemplate=\"footer\">\n <div class=\"flex w-full justify-end\">\n <s-button\n [id]=\"id + '-cancel-button'\"\n type=\"button\"\n priority=\"link\"\n [label]=\"labelOptions?.cancelLabel || 'platform.angular_components.cancel' | translate\"\n (clicked)=\"hideDialog()\"\n sTooltip=\"(ALT + SHIFT + C)\"\n >\n </s-button>\n <s-button\n [id]=\"id + '-select-button'\"\n type=\"button\"\n [label]=\"labelOptions?.selectLabel || 'platform.angular_components.select' | translate\"\n (clicked)=\"select()\"\n sTooltip=\"(ALT + SHIFT + S)\"\n [disabled]=\"!selected.length\"\n >\n </s-button>\n </div>\n </ng-template>\n }\n</s-dialog>\n\n<ng-template #emptyTemplate>\n <span class=\"sds-empty-value\">\n {{ labelOptions?.emptyFieldLabel || 'platform.angular_components.not_informed' | translate }}\n </span>\n</ng-template>\n", styles: ["s-lookup.ng-dirty.ng-invalid .ui-inputtext{border-color:#c13018}s-lookup .p-autocomplete-input-multiple{border-top-right-radius:0!important;border-bottom-right-radius:0!important}s-lookup .inputgroup p-autocomplete+button,s-lookup p-autocomplete .ui-autocomplete-dropdown.ui-button{background-color:#fff;border-color:#ccc;border-width:1px 1px 1px 0;color:#333;min-height:35px;height:auto!important;min-width:auto;width:35px!important;overflow:hidden;border-radius:0 4px 4px 0}s-lookup p-autocomplete span.ui-autocomplete-multiple,s-lookup .inputgroup{display:flex}s-lookup .inputgroup p-autocomplete{display:inline-block}s-lookup .inputgroup p-autocomplete .p-autocomplete-input{width:100%}s-lookup .inputgroup p-autocomplete+button:enabled:hover,s-lookup .inputgroup p-autocomplete+button:focus{background-color:highlight(#ccc);border-color:#ccc}s-lookup:not(.ng-dirty.ng-invalid) .inputgroup p-autocomplete .ui-widget .ui-inputtext{border-right-width:1px;border-right-style:solid}s-lookup .ui-autocomplete-input-token{width:100%}s-lookup .ui-autocomplete-input-token input{width:100%}s-lookup .ui-autocomplete .ui-autocomplete-token{max-width:100%}s-lookup .ui-autocomplete .ui-autocomplete-token-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}body .s-lookup-modal.p-dialog .p-dialog-content{padding:0;margin-bottom:0;max-height:none}s-lookup .p-table-scrollable-body{min-width:100%}.s-lookup-modal main{padding:0}.s-lookup-modal .s-lookup-modal-container{height:85vh;display:flex;flex-direction:row;width:100%}.s-lookup-modal .s-lookup-modal-container .filter{width:min-content;height:auto;flex-grow:0;flex-shrink:0;background-color:#e5eaea80;padding:.571rem}.s-lookup-modal .s-lookup-modal-container .filter form{width:100%;height:100%}.s-lookup-modal .s-lookup-modal-container .filter form .form-content{height:100%;display:flex;flex-direction:column}.s-lookup-modal .s-lookup-modal-container .filter form .form-content .filter-title{padding-left:.5rem}.s-lookup-modal .s-lookup-modal-container .filter form .form-content .form-fields{overflow-y:auto}.s-lookup-modal .s-lookup-modal-container .filter-toggle{margin-top:15px;flex-grow:0;flex-shrink:0;width:35px;border-radius:0 4px 4px 0}.s-lookup-modal .s-lookup-modal-container .filter-toggle button{align-items:center;position:relative;background-color:#e5eaea80;height:35px;width:100%;border:1px solid #e5eaea;outline:none;border-left:none;border-radius:0 4px 4px 0;cursor:pointer;text-decoration:none;text-transform:none;padding:7px;transition:background-color .2s ease-out,color .2s ease-out,border-color .2s ease-out}.s-lookup-modal .s-lookup-modal-container .filter-toggle button:hover,.s-lookup-modal .s-lookup-modal-container .filter-toggle button:focus{background-color:active(rgba(229,234,234,.5));border-color:active(#e5eaea)}.s-lookup-modal .s-lookup-modal-container .content{flex-grow:1;flex-basis:auto;overflow-x:auto;display:flex;flex-direction:column;padding:.5rem}.s-lookup-modal .s-lookup-modal-container .content-child{height:100%}.s-lookup-modal .s-lookup-modal-container .content s-loading-state{height:100%;display:block}.s-lookup-modal .s-lookup-modal-container .content .s-loading-state,.s-lookup-modal .s-lookup-modal-container .content .s-loading-state .state-contents{height:100%}.s-lookup-modal .s-lookup-modal-container .content.empty-content{align-self:center}.s-lookup-modal .s-lookup-modal-container .content.empty-content .content-child{display:none}.s-lookup-modal .s-lookup-modal-container .content p-table>.p-datatable{height:100%;display:flex;flex-direction:column}.s-lookup-modal .s-lookup-modal-container .content p-table>.p-datatable .p-datatable-table-container{flex:1;margin-bottom:0}.inputgroup p-autocomplete{width:calc(100% - 35px)}\n"] }]
|
|
544
|
+
}], ctorParameters: () => [{ type: i1.HotkeysService }, { type: i2.TranslateService }, { type: i0.ChangeDetectorRef }], propDecorators: { formControlName: [{
|
|
545
|
+
type: Input
|
|
546
|
+
}], id: [{
|
|
547
|
+
type: Input
|
|
548
|
+
}], autocompleteForceSelection: [{
|
|
549
|
+
type: Input
|
|
550
|
+
}], multiple: [{
|
|
551
|
+
type: Input
|
|
552
|
+
}], dataKey: [{
|
|
553
|
+
type: Input,
|
|
554
|
+
args: [{ required: true }]
|
|
555
|
+
}], disabled: [{
|
|
556
|
+
type: Input
|
|
557
|
+
}], showSearch: [{
|
|
558
|
+
type: Input
|
|
559
|
+
}], lookupSuggestions: [{
|
|
560
|
+
type: Input
|
|
561
|
+
}], lookupDisplayField: [{
|
|
562
|
+
type: Input
|
|
563
|
+
}], lookupDisplayFieldTooltip: [{
|
|
564
|
+
type: Input
|
|
565
|
+
}], lookupEmptyMessage: [{
|
|
566
|
+
type: Input
|
|
567
|
+
}], lookupAppendTo: [{
|
|
568
|
+
type: Input
|
|
569
|
+
}], searchEmptyDescription: [{
|
|
570
|
+
type: Input
|
|
571
|
+
}], searchGridData: [{
|
|
572
|
+
type: Input
|
|
573
|
+
}], searchTotalRecords: [{
|
|
574
|
+
type: Input
|
|
575
|
+
}], searchFields: [{
|
|
576
|
+
type: Input
|
|
577
|
+
}], searchGridFields: [{
|
|
578
|
+
type: Input
|
|
579
|
+
}], multiSortMeta: [{
|
|
580
|
+
type: Input
|
|
581
|
+
}], placeholder: [{
|
|
582
|
+
type: Input
|
|
583
|
+
}], sortableColumnsDisabled: [{
|
|
584
|
+
type: Input
|
|
585
|
+
}], lookupRowProps: [{
|
|
586
|
+
type: Input
|
|
587
|
+
}], defaultFilter: [{
|
|
588
|
+
type: Input
|
|
589
|
+
}], showAddOption: [{
|
|
590
|
+
type: Input
|
|
591
|
+
}], showEditOption: [{
|
|
592
|
+
type: Input
|
|
593
|
+
}], showRemoveOption: [{
|
|
594
|
+
type: Input
|
|
595
|
+
}], onLookupRequest: [{
|
|
596
|
+
type: Output
|
|
597
|
+
}], onSearchRequest: [{
|
|
598
|
+
type: Output
|
|
599
|
+
}], onFocus: [{
|
|
600
|
+
type: Output
|
|
601
|
+
}], onBlur: [{
|
|
602
|
+
type: Output
|
|
603
|
+
}], onKeyUp: [{
|
|
604
|
+
type: Output
|
|
605
|
+
}], onSelect: [{
|
|
606
|
+
type: Output
|
|
607
|
+
}], onUnselect: [{
|
|
608
|
+
type: Output
|
|
609
|
+
}], onClear: [{
|
|
610
|
+
type: Output
|
|
611
|
+
}], onAdd: [{
|
|
612
|
+
type: Output
|
|
613
|
+
}], onEdit: [{
|
|
614
|
+
type: Output
|
|
615
|
+
}], onRemove: [{
|
|
616
|
+
type: Output
|
|
617
|
+
}], onClearButtonClick: [{
|
|
618
|
+
type: Output
|
|
619
|
+
}], table: [{
|
|
620
|
+
type: ViewChild,
|
|
621
|
+
args: [Table, { static: false }]
|
|
622
|
+
}], autocomplete: [{
|
|
623
|
+
type: ViewChild,
|
|
624
|
+
args: [AutoComplete, { static: false }]
|
|
625
|
+
}], labelOptions: [{
|
|
626
|
+
type: Input
|
|
627
|
+
}], showDialog: [] } });
|
|
628
|
+
export class BooleanOptionsLabel {
|
|
629
|
+
true;
|
|
630
|
+
false;
|
|
631
|
+
empty;
|
|
632
|
+
clear;
|
|
633
|
+
constructor(config) {
|
|
634
|
+
this.true = config.true;
|
|
635
|
+
this.false = config.false;
|
|
636
|
+
this.empty = config.empty;
|
|
637
|
+
this.clear = config.clear;
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9va3VwLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9keW5hbWljLWZvcm0vc3JjL2xpYi9keW5hbWljLWZvcm0vY29tcG9uZW50cy9sb29rdXAvbG9va3VwLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9keW5hbWljLWZvcm0vc3JjL2xpYi9keW5hbWljLWZvcm0vY29tcG9uZW50cy9sb29rdXAvbG9va3VwLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsT0FBTyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLE9BQU8sRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQzdHLE9BQU8sRUFFSCxTQUFTLEVBRVQsWUFBWSxFQUNaLFVBQVUsRUFDVixLQUFLLEVBSUwsTUFBTSxFQUVOLFNBQVMsRUFDVCxTQUFTLEVBQ1QsaUJBQWlCLEdBQ3BCLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBd0IsV0FBVyxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBSWpHLE9BQU8sRUFBRSxNQUFNLEVBQWtCLE1BQU0sa0JBQWtCLENBQUM7QUFDMUQsT0FBTyxTQUFTLE1BQU0sY0FBYyxDQUFDO0FBRXJDLE9BQU8sRUFBRSxZQUFZLEVBQTZCLE1BQU0sc0JBQXNCLENBQUM7QUFDL0UsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN0QyxPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQy9CLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQU0zQyxPQUFPLEVBQUUsc0JBQXNC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QVU7c0JBRmhCLE1BQU07Z0JBTUEsT0FBTztzQkFGYixNQUFNO2dCQU1BLEtBQUs7c0JBRlgsTUFBTTtnQkFNQSxNQUFNO3NCQUZaLE1BQU07Z0JBTUEsUUFBUTtzQkFGZCxNQUFNO2dCQU1BLGtCQUFrQjtzQkFGeEIsTUFBTTtnQkFLQSxLQUFLO3NCQURYLFNBQVM7dUJBQUMsS0FBSyxFQUFFLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRTtnQkFJNUIsWUFBWTtzQkFEbEIsU0FBUzt1QkFBQyxZQUFZLEVBQUUsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFO2dCQUluQyxZQUFZO3NCQURsQixLQUFLO2dCQW9NTyxVQUFVO0FBaVQzQixNQUFNLE9BQU8sbUJBQW1CO0lBQ3JCLElBQUksQ0FBUztJQUNiLEtBQUssQ0FBUztJQUNkLEtBQUssQ0FBVTtJQUNmLEtBQUssQ0FBVTtJQUV0QixZQUFZLE1BQWlDO1FBQ3pDLElBQUksQ0FBQyxJQUFJLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQztRQUN4QixJQUFJLENBQUMsS0FBSyxHQUFHLE1BQU0sQ0FBQyxLQUFLLENBQUM7UUFDMUIsSUFBSSxDQUFDLEtBQUssR0FBRyxNQUFNLENBQUMsS0FBSyxDQUFDO1FBQzFCLElBQUksQ0FBQyxLQUFLLEdBQUcsTUFBTSxDQUFDLEtBQUssQ0FBQztJQUM5QixDQUFDO0NBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBhbmltYXRlLCBhbmltYXRlQ2hpbGQsIGdyb3VwLCBxdWVyeSwgc3RhdGUsIHN0eWxlLCB0cmFuc2l0aW9uLCB0cmlnZ2VyIH0gZnJvbSAnQGFuZ3VsYXIvYW5pbWF0aW9ucyc7XG5pbXBvcnQge1xuICAgIENoYW5nZURldGVjdG9yUmVmLFxuICAgIENvbXBvbmVudCxcbiAgICBFbGVtZW50UmVmLFxuICAgIEV2ZW50RW1pdHRlcixcbiAgICBmb3J3YXJkUmVmLFxuICAgIElucHV0LFxuICAgIE9uQ2hhbmdlcyxcbiAgICBPbkRlc3Ryb3ksXG4gICAgT25Jbml0LFxuICAgIE91dHB1dCxcbiAgICBTaW1wbGVDaGFuZ2VzLFxuICAgIHZpZXdDaGlsZCxcbiAgICBWaWV3Q2hpbGQsXG4gICAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29udHJvbFZhbHVlQWNjZXNzb3IsIEZvcm1Db250cm9sLCBGb3JtR3JvdXAsIE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5pbXBvcnQgeyBUcmFuc2xhdGVTZXJ2aWNlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5pbXBvcnQgeyBNYXNrQ29uZmlnIH0gZnJvbSAnQHNlbmlvcnNpc3RlbWFzL25nMi1jdXJyZW5jeS1tYXNrJztcbmltcG9ydCB7IEhvdGtleSwgSG90a2V5c1NlcnZpY2UgfSBmcm9tICdhbmd1bGFyMi1ob3RrZXlzJztcbmltcG9ydCBCaWdOdW1iZXIgZnJvbSAnYmlnbnVtYmVyLmpzJztcbmltcG9ydCB7IFNvcnRNZXRhIH0gZnJvbSAncHJpbWVuZy9hcGknO1xuaW1wb3J0IHsgQXV0b0NvbXBsZXRlLCBBdXRvQ29tcGxldGVDb21wbGV0ZUV2ZW50IH0gZnJvbSAncHJpbWVuZy9hdXRvY29tcGxldGUnO1xuaW1wb3J0IHsgVGFibGUgfSBmcm9tICdwcmltZW5nL3RhYmxlJztcbmltcG9ydCB7IFN1YmplY3QgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IHRha2VVbnRpbCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcblxuaW1wb3J0IHsgRGVmYXVsdEZpbHRlciB9IGZyb20gJy4vdHlwZXMvZGVmYXVsdC1maWx0ZXInO1xuaW1wb3J0IHsgTGFiZWxPcHRpb25zIH0gZnJvbSAnLi90eXBlcy9sYWJlbC1vcHRpb25zJztcblxuaW1wb3J0IHsgQmFkZ2VDb21wb25lbnQgfSBmcm9tICdAc2VuaW9yc2lzdGVtYXMvYW5ndWxhci1jb21wb25lbnRzL2JhZGdlJztcbmltcG9ydCB7IExvYWRpbmdTdGF0ZUluZGljYXRvcnMgfSBmcm9tICdAc2VuaW9yc2lzdGVtYXMvYW5ndWxhci1jb21wb25lbnRzL2xvYWRpbmctc3RhdGUnO1xuaW1wb3J0IHsgQ2FsZW5kYXJMb2NhbGVPcHRpb25zIH0gZnJvbSAnQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy9sb2NhbGUnO1xuaW1wb3J0IHsgQ2hlY2tEaXNhYmxlZCB9IGZyb20gJ0BzZW5pb3JzaXN0ZW1hcy9hbmd1bGFyLWNvbXBvbmVudHMvc2hhcmVkJztcbmltcG9ydCB7IGlzTnVsbE9yVW5kZWZpbmVkIH0gZnJvbSAnQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy91dGlscyc7XG5pbXBvcnQgeyBGaWVsZFR5cGUgfSBmcm9tICcuLi8uLi9mb3JtLWZpZWxkL2NvbmZpZ3VyYXRpb25zL2ZpZWxkLXR5cGUnO1xuaW1wb3J0IHsgRm9ybUZpZWxkIH0gZnJvbSAnLi4vLi4vZm9ybS1maWVsZC9mb3JtLWZpZWxkJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdzLWxvb2t1cCcsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2xvb2t1cC5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vbG9va3VwLmNvbXBvbmVudC5zY3NzJ10sXG4gICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgICAgICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gTG9va3VwQ29tcG9uZW50KSxcbiAgICAgICAgICAgIG11bHRpOiB0cnVlLFxuICAgICAgICB9LFxuICAgIF0sXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgICBhbmltYXRpb25zOiBbXG4gICAgICAgIHRyaWdnZXIoJ2NvbGxhcHNlQ29udGVudCcsIFtcbiAgICAgICAgICAgIHN0YXRlKFxuICAgICAgICAgICAgICAgICdoaWRkZW4nLFxuICAgICAgICAgICAgICAgIHN0eWxlKHtcbiAgICAgICAgICAgICAgICAgICAgd2lkdGg6ICcxMHB4JyxcbiAgICAgICAgICAgICAgICAgICAgcGFkZGluZzogMCxcbiAgICAgICAgICAgICAgICB9KSxcbiAgICAgICAgICAgICksXG4gICAgICAgICAgICBzdGF0ZShcbiAgICAgICAgICAgICAgICAndmlzaWJsZScsXG4gICAgICAgICAgICAgICAgc3R5bGUoe1xuICAgICAgICAgICAgICAgICAgICB3aWR0aDogJyonLFxuICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgKSxcbiAgICAgICAgICAgIHRyYW5zaXRpb24oJ3Zpc2libGUgPD0+IGhpZGRlbicsIFtcbiAgICAgICAgICAgICAgICBncm91cChbcXVlcnkoJ0BjaGlsZENvbGxhcHNlQ29udGVudCcsIGFuaW1hdGVDaGlsZCgpKSwgYW5pbWF0ZSgne3t0cmFuc2l0aW9uUGFyYW1zfX0nKV0pLFxuICAgICAgICAgICAgXSksXG4gICAgICAgIF0pLFxuICAgICAgICB0cmlnZ2VyKCdjaGlsZENvbGxhcHNlQ29udGVudCcsIFtcbiAgICAgICAgICAgIHN0YXRlKFxuICAgICAgICAgICAgICAgICc6bGVhdmUnLFxuICAgICAgICAgICAgICAgIHN0eWxlKHtcbiAgICAgICAgICAgICAgICAgICAgb3BhY2l0eTogMCxcbiAgICAgICAgICAgICAgICB9KSxcbiAgICAgICAgICAgICksXG4gICAgICAgICAgICBzdGF0ZShcbiAgICAgICAgICAgICAgICAnOmVudGVyJyxcbiAgICAgICAgICAgICAgICBzdHlsZSh7XG4gICAgICAgICAgICAgICAgICAgIG9wYWNpdHk6IDEsXG4gICAgICAgICAgICAgICAgfSksXG4gICAgICAgICAgICApLFxuICAgICAgICAgICAgdHJhbnNpdGlvbignKiA8PT4gKicsIGFuaW1hdGUoJ3t7dHJhbnNpdGlvblBhcmFtc319JykpLFxuICAgICAgICBdKSxcbiAgICBdLFxufSlcbmV4cG9ydCBjbGFzcyBMb29rdXBDb21wb25lbnQgaW1wbGVtZW50cyBDb250cm9sVmFsdWVBY2Nlc3NvciwgT25DaGFuZ2VzLCBPbkluaXQsIE9uRGVzdHJveSB7XG4gICAgcHJpdmF0ZSByZWFkb25seSBsb29rdXBEaWFsb2dDb250YWluZXIgPSB2aWV3Q2hpbGQ8RWxlbWVudFJlZjxIVE1MRWxlbWVudD4+KCdkaWFsb2dDb250YWluZXInKTtcbiAgICBwcm90ZWN0ZWQgcm93VHlwZSA9ICdSb3cnO1xuICAgIHB1YmxpYyBpbmRpY2F0b3JMb2dvID0gTG9hZGluZ1N0YXRlSW5kaWNhdG9ycy5Mb2dvO1xuICAgIHB1YmxpYyBzdGF0aWMgbmV4dElkID0gMDtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGZvcm1Db250cm9sTmFtZT86IHN0cmluZztcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGlkID0gYHMtbG9va3VwLSR7TG9va3VwQ29tcG9uZW50Lm5leHRJZCsrfWA7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBhdXRvY29tcGxldGVGb3JjZVNlbGVjdGlvbiA9IHRydWU7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBtdWx0aXBsZSA9IGZhbHNlO1xuXG4gICAgQElucHV0KHsgcmVxdWlyZWQ6IHRydWUgfSlcbiAgICBwdWJsaWMgZGF0YUtleSE6IHN0cmluZztcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGRpc2FibGVkID0gZmFsc2U7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBzaG93U2VhcmNoID0gdHJ1ZTtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGxvb2t1cFN1Z2dlc3Rpb25zOiBhbnlbXSA9IFtdO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgbG9va3VwRGlzcGxheUZpZWxkPzogc3RyaW5nO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgbG9va3VwRGlzcGxheUZpZWxkVG9vbHRpcCA9IGZhbHNlO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgbG9va3VwRW1wdHlNZXNzYWdlPzogc3RyaW5nO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgbG9va3VwQXBwZW5kVG8/ID0gJ2JvZHknO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgc2VhcmNoRW1wdHlEZXNjcmlwdGlvbj86IHN0cmluZztcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIHNlYXJjaEdyaWREYXRhOiBhbnlbXSA9IFtdO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgc2VhcmNoVG90YWxSZWNvcmRzID0gMDtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIHNlYXJjaEZpZWxkczogRm9ybUZpZWxkW10gPSBbXTtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIHNlYXJjaEdyaWRGaWVsZHM6IEZvcm1GaWVsZFtdID0gW107XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBtdWx0aVNvcnRNZXRhOiBTb3J0TWV0YVtdID0gW107XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBwbGFjZWhvbGRlcj86IHN0cmluZztcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIHNvcnRhYmxlQ29sdW1uc0Rpc2FibGVkOiBzdHJpbmdbXSA9IFtdO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgbG9va3VwUm93UHJvcHM6IHN0cmluZ1tdID0gW107XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBkZWZhdWx0RmlsdGVyOiBEZWZhdWx0RmlsdGVyW10gPSBbXTtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIHNob3dBZGRPcHRpb24gPSBmYWxzZTtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIHNob3dFZGl0T3B0aW9uID0gZmFsc2U7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBzaG93UmVtb3ZlT3B0aW9uID0gZmFsc2U7XG5cbiAgICBAT3V0cHV0KClcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L25vLW91dHB1dC1vbi1wcmVmaXhcbiAgICBwdWJsaWMgb25Mb29rdXBSZXF1ZXN0ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gICAgQE91dHB1dCgpXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9uby1vdXRwdXQtb24tcHJlZml4XG4gICAgcHVibGljIG9uU2VhcmNoUmVxdWVzdCA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcblxuICAgIEBPdXRwdXQoKVxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAYW5ndWxhci1lc2xpbnQvbm8tb3V0cHV0LW9uLXByZWZpeFxuICAgIHB1YmxpYyBvbkZvY3VzID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gICAgQE91dHB1dCgpXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9uby1vdXRwdXQtb24tcHJlZml4XG4gICAgcHVibGljIG9uQmx1ciA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcblxuICAgIEBPdXRwdXQoKVxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAYW5ndWxhci1lc2xpbnQvbm8tb3V0cHV0LW9uLXByZWZpeFxuICAgIHB1YmxpYyBvbktleVVwID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gICAgQE91dHB1dCgpXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9uby1vdXRwdXQtb24tcHJlZml4XG4gICAgcHVibGljIG9uU2VsZWN0ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gICAgQE91dHB1dCgpXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9uby1vdXRwdXQtb24tcHJlZml4XG4gICAgcHVibGljIG9uVW5zZWxlY3QgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG5cbiAgICBAT3V0cHV0KClcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L25vLW91dHB1dC1vbi1wcmVmaXhcbiAgICBwdWJsaWMgb25DbGVhciA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcblxuICAgIEBPdXRwdXQoKVxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAYW5ndWxhci1lc2xpbnQvbm8tb3V0cHV0LW9uLXByZWZpeFxuICAgIHB1YmxpYyBvbkFkZCA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcblxuICAgIEBPdXRwdXQoKVxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAYW5ndWxhci1lc2xpbnQvbm8tb3V0cHV0LW9uLXByZWZpeFxuICAgIHB1YmxpYyBvbkVkaXQgPSBuZXcgRXZlbnRFbWl0dGVyPHVua25vd24+KCk7XG5cbiAgICBAT3V0cHV0KClcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L25vLW91dHB1dC1vbi1wcmVmaXhcbiAgICBwdWJsaWMgb25SZW1vdmUgPSBuZXcgRXZlbnRFbWl0dGVyPHVua25vd25bXT4oKTtcblxuICAgIEBPdXRwdXQoKVxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAYW5ndWxhci1lc2xpbnQvbm8tb3V0cHV0LW9uLXByZWZpeFxuICAgIHB1YmxpYyBvbkNsZWFyQnV0dG9uQ2xpY2sgPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XG5cbiAgICBAVmlld0NoaWxkKFRhYmxlLCB7IHN0YXRpYzogZmFsc2UgfSlcbiAgICBwdWJsaWMgdGFibGU6IFRhYmxlIHwgbnVsbCA9IG51bGw7XG5cbiAgICBAVmlld0NoaWxkKEF1dG9Db21wbGV0ZSwgeyBzdGF0aWM6IGZhbHNlIH0pXG4gICAgcHVibGljIGF1dG9jb21wbGV0ZTogQXV0b0NvbXBsZXRlIHwgbnVsbCA9IG51bGw7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBsYWJlbE9wdGlvbnM/OiBQYXJ0aWFsPExhYmVsT3B0aW9ucz47XG5cbiAgICBwdWJsaWMgdmFsdWU6IGFueTtcbiAgICBwdWJsaWMgbG9hZGluZyA9IGZhbHNlO1xuICAgIHB1YmxpYyBhbmltYXRpbmcgPSBmYWxzZTtcbiAgICBwdWJsaWMgZGlhbG9nVmlzaWJsZSA9IGZhbHNlO1xuICAgIHB1YmxpYyBjb2xsYXBzZWQgPSBmYWxzZTtcbiAgICBwdWJsaWMgc2VsZWN0ZWQ6IGFueVtdID0gW107XG4gICAgcHVibGljIGZvcm1Hcm91cERpYWxvZyE6IEZvcm1Hcm91cDxhbnk+O1xuICAgIHB1YmxpYyB0cmFuc2l0aW9uT3B0aW9ucyA9ICc0MDBtcyBjdWJpYy1iZXppZXIoMC44NiwgMCwgMC4wNywgMSknO1xuXG4gICAgcHJpdmF0ZSBvbkNoYW5nZT86IEZ1bmN0aW9uO1xuICAgIHByaXZhdGUgb25Ub3VjaGVkPzogRnVuY3Rpb247XG4gICAgcHJpdmF0ZSBvcmlnaW5hbEZvcm1WYWx1ZXMgPSB7fTtcbiAgICBwcml2YXRlIHJlYWRvbmx5IG5nVW5zdWJzY3JpYmUgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgaG90a2V5c1NlcnZpY2U6IEhvdGtleXNTZXJ2aWNlLFxuICAgICAgICBwcm90ZWN0ZWQgcmVhZG9ubHkgdHJhbnNsYXRlU2VydmljZTogVHJhbnNsYXRlU2VydmljZSxcbiAgICAgICAgcHJvdGVjdGVkIHJlYWRvbmx5IGNoYW5nZURldGVjdG9yUmVmOiBDaGFuZ2VEZXRlY3RvclJlZixcbiAgICApIHt9XG5cbiAgICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgICAgIGlmICghdGhpcy5zZWFyY2hHcmlkRmllbGRzLmxlbmd0aCkge1xuICAgICAgICAgICAgdGhpcy5zZWFyY2hHcmlkRmllbGRzID0gdGhpcy5zZWFyY2hGaWVsZHNcbiAgICAgICAgICAgICAgICAuZmlsdGVyKChpdGVtKSA9PiAhaXRlbS52aXNpYmxlIHx8IGl0ZW0udmlzaWJsZT8uKCkpXG4gICAgICAgICAgICAgICAgLm1hcCgoaXRlbSkgPT4gbmV3IEZvcm1GaWVsZCh7IC4uLml0ZW0gfSkpO1xuICAgICAgICB9XG4gICAgICAgIHRoaXMuc2VhcmNoRmllbGRzID0gdGhpcy5zZWFyY2hGaWVsZHMubWFwKFxuICAgICAgICAgICAgKHZhbHVlOiBGb3JtRmllbGQpID0+XG4gICAgICAgICAgICAgICAgbmV3IEZvcm1GaWVsZCh7XG4gICAgICAgICAgICAgICAgICAgIC4uLnZhbHVlLFxuICAgICAgICAgICAgICAgICAgICBzaXplOiB7IHNtOiAxMiwgbWQ6IDEyLCBsZzogMTIsIHhsOiAxMiB9LFxuICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICApO1xuXG4gICAgICAgIHRoaXMuc2VhcmNoR3JpZEZpZWxkcyA9IHRoaXMuc2VhcmNoR3JpZEZpZWxkc1xuICAgICAgICAgICAgLmZpbHRlcigoZ3JpZEZpZWxkOiBGb3JtRmllbGQpID0+ICFncmlkRmllbGQudmlzaWJsZSB8fCBncmlkRmllbGQudmlzaWJsZT8uKCkpXG4gICAgICAgICAgICAubWFwKChncmlkRmllbGQ6IEZvcm1GaWVsZCkgPT4ge1xuICAgICAgICAgICAgICAgIGlmIChncmlkRmllbGQubGFiZWwpIHtcbiAgICAgICAgICAgICAgICAgICAgKGdyaWRGaWVsZCBhcyBhbnkpWyd3aWR0aCddID0gdGhpcy5nZXRDb2xXaWR0aChncmlkRmllbGQubGFiZWwpO1xuICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgIGNvbnN0IGNhbGVuZGFyT3B0aW9ucyA9IG5ldyBDYWxlbmRhckxvY2FsZU9wdGlvbnMoeyAuLi5ncmlkRmllbGQuY2FsZW5kYXJMb2NhbGVPcHRpb25zIH0pO1xuXG4gICAgICAgICAgICAgICAgaWYgKGNhbGVuZGFyT3B0aW9ucz8uZGF0ZUZvcm1hdCkge1xuICAgICAgICAgICAgICAgICAgICBzd2l0Y2ggKGdyaWRGaWVsZC50eXBlKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICBjYXNlIEZpZWxkVHlwZS5EYXRlOlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNhbGVuZGFyT3B0aW9ucy5kYXRlRm9ybWF0ID0gdGhpcy5fY29udmVydFRvTW9tZW50RGF0ZUZvcm1hdChjYWxlbmRhck9wdGlvbnMuZGF0ZUZvcm1hdCk7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICAgICAgICAgICAgICBjYXNlIEZpZWxkVHlwZS5UaW1lOlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNhbGVuZGFyT3B0aW9ucy5kYXRlRm9ybWF0ID0gdGhpcy5fY29udmVydFRvTW9tZW50SG91ckZvcm1hdChcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY2FsZW5kYXJPcHRpb25zLmhvdXJGb3JtYXQhLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjYWxlbmRhck9wdGlvbnMuZGF0ZUZvcm1hdCxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICApO1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgIGdyaWRGaWVsZC5jYWxlbmRhckxvY2FsZU9wdGlvbnMgPSBjYWxlbmRhck9wdGlvbnM7XG4gICAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICAgcmV0dXJuIGdyaWRGaWVsZDtcbiAgICAgICAgICAgIH0pO1xuXG4gICAgICAgIGNvbnN0IGhhc0ZpZWxkV2l0aERvdEluTmFtZSA9IHRoaXMuc2VhcmNoRmllbGRzLnNvbWUoKGZpZWxkKSA9PiBmaWVsZC5uYW1lLmluY2x1ZGVzKCcuJykpO1xuICAgICAgICBpZiAoaGFzRmllbGRXaXRoRG90SW5OYW1lKSB7XG4gICAgICAgICAgICBjb25zdCBmaWVsZHNXaXRoRG90ID0gdGhpcy5zZWFyY2hGaWVsZHNcbiAgICAgICAgICAgICAgICAuZmlsdGVyKChpdGVtKSA9PiBpdGVtLm5hbWUuaW5jbHVkZXMoJy4nKSlcbiAgICAgICAgICAgICAgICAubWFwKChpdGVtKSA9PiBpdGVtLm5hbWUpXG4gICAgICAgICAgICAgICAgLmpvaW4oKTtcbiAgICAgICAgICAgIHRocm93IG5ldyBFcnJvcihgVGhpcyBmaWVsZHM6IFske2ZpZWxkc1dpdGhEb3R9XSAgY2FuJ3QgaGF2ZSBkb3QgaW4gdGhlaXIgbmFtZXMsIHBsZWFzZSByZXBsYWNlLmApO1xuICAgICAgICB9XG4gICAgICAgIGNvbnN0IGZvcm1Hcm91cCA9IHRoaXMuc2VhcmNoRmllbGRzLnJlZHVjZSgocmVzdWx0OiBhbnksIGZpZWxkKSA9PiB7XG4gICAgICAgICAgICBpZiAoZmllbGQubmFtZSkge1xuICAgICAgICAgICAgICAgIHJlc3VsdFtmaWVsZC5uYW1lXSA9IG5ldyBGb3JtQ29udHJvbChmaWVsZC5kZWZhdWx0VmFsdWUpO1xuICAgICAgICAgICAgICAgICh0aGlzLm9yaWdpbmFsRm9ybVZhbHVlcyBhcyBhbnkpW2ZpZWxkLm5hbWVdID0gZmllbGQuZGVmYXVsdFZhbHVlO1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgcmV0dXJuIHJlc3VsdDtcbiAgICAgICAgfSwge30pO1xuXG4gICAgICAgIHRoaXMuZm9ybUdyb3VwRGlhbG9nID0gbmV3IEZvcm1Hcm91cChmb3JtR3JvdXApO1xuXG4gICAgICAgIHRoaXMuX3N1YnNjcmliZUV2ZW50cygpO1xuICAgIH1cblxuICAgIHB1YmxpYyBwcmludFJlY29yZFRvdGFsaXplcigpOiBzdHJpbmcge1xuICAgICAgICBpZiAodGhpcy5sYWJlbE9wdGlvbnM/LnNlYXJjaFRvdGFsUmVjb3Jkc0xhYmVsKSB7XG4gICAgICAgICAgICByZXR1cm4gdGhpcy5sYWJlbE9wdGlvbnM/LnNlYXJjaFRvdGFsUmVjb3Jkc0xhYmVsO1xuICAgICAgICB9XG5cbiAgICAgICAgY29uc3QgcmVjb3JkTGFiZWwgPSB0aGlzLmxhYmVsT3B0aW9ucz8ucmVjb3JkTGFiZWxcbiAgICAgICAgICAgID8gYCR7dGhpcy5zZWFyY2hUb3RhbFJlY29yZHN9ICR7dGhpcy5sYWJlbE9wdGlvbnM/LnJlY29yZExhYmVsfWBcbiAgICAgICAgICAgIDogdGhpcy50cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy50b3RhbF9yZWNvcmQnLCB7XG4gICAgICAgICAgICAgICAgICBjb3VudDogdGhpcy5zZWFyY2hUb3RhbFJlY29yZHMsXG4gICAgICAgICAgICAgIH0pO1xuXG4gICAgICAgIGNvbnN0IHJlY29yZHNMYWJlbCA9IHRoaXMubGFiZWxPcHRpb25zPy5yZWNvcmRzTGFiZWxcbiAgICAgICAgICAgID8gYCR7dGhpcy5zZWFyY2hUb3RhbFJlY29yZHN9ICR7dGhpcy5sYWJlbE9wdGlvbnM/LnJlY29yZHNMYWJlbH1gXG4gICAgICAgICAgICA6IHRoaXMudHJhbnNsYXRlU2VydmljZS5pbnN0YW50KCdwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMudG90YWxfcmVjb3JkcycsIHtcbiAgICAgICAgICAgICAgICAgIGNvdW50OiB0aGlzLnNlYXJjaFRvdGFsUmVjb3JkcyxcbiAgICAgICAgICAgICAgfSk7XG5cbiAgICAgICAgcmV0dXJuIHRoaXMuc2VhcmNoVG90YWxSZWNvcmRzID09PSAxID8gcmVjb3JkTGFiZWwgOiByZWNvcmRzTGFiZWw7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBfY29udmVydFRvTW9tZW50SG91ckZvcm1hdChob3VyRm9ybWF0OiBzdHJpbmcsIGZvcm1hdDogc3RyaW5nKSB7XG4gICAgICAgIGlmIChmb3JtYXQgPT09ICdkZC9tbS95eScpIHtcbiAgICAgICAgICAgIC8vIHZhbG9yIHBhZHLDo28gcGFyYSBvIGZvcm1hdC5cbiAgICAgICAgICAgIHJldHVybiAnTFRTJztcbiAgICAgICAgfVxuXG4gICAgICAgIGlmIChob3VyRm9ybWF0ID09PSAnMTInKSB7XG4gICAgICAgICAgICByZXR1cm4gZm9ybWF0XG4gICAgICAgICAgICAgICAgLnJlcGxhY2UoL1xcYkhcXGIvLCAnaCcpIC8vIGhvdXIgKDEyIGhvdXIgdGltZSkgKG5vIGxlYWRpbmcgemVybylcbiAgICAgICAgICAgICAgICAucmVwbGFjZSgvXFxiSEhcXGIvLCAnaGgnKTsgLy8gaG91ciAoMTIgaG91ciB0aW1lKVxuICAgICAgICB9XG5cbiAgICAgICAgaWYgKGhvdXJGb3JtYXQgPT09ICcyNCcpIHtcbiAgICAgICAgICAgIHJldHVybiBmb3JtYXRcbiAgICAgICAgICAgICAgICAucmVwbGFjZSgvXFxiaFxcYi8sICdIJykgLy8gaG91ciAoMjQgaG91ciB0aW1lKSAobm8gbGVhZGluZyB6ZXJvKVxuICAgICAgICAgICAgICAgIC5yZXBsYWNlKC9cXGJoaFxcYi8sICdISCcpOyAvLyBob3VyICgyNCBob3VyIHRpbWUpXG4gICAgICAgIH1cblxuICAgICAgICByZXR1cm4gZm9ybWF0O1xuICAgIH1cblxuICAgIHByaXZhdGUgX2NvbnZlcnRUb01vbWVudERhdGVGb3JtYXQoZm9ybWF0OiBzdHJpbmcpOiBzdHJpbmcge1xuICAgICAgICAvLyBBIG9yZGVtIGRvcyByZXBsYWNlcyDDqSBpbXBvcnRhbnRlLlxuICAgICAgICByZXR1cm4gZm9ybWF0XG4gICAgICAgICAgICAucmVwbGFjZSgvXFxiZFxcYi8sICdEJykgLy8gZGF5IG9mIG1vbnRoIChubyBsZWFkaW5nIHplcm8pXG4gICAgICAgICAgICAucmVwbGFjZSgvXFxiZGRcXGIvLCAnREQnKSAvLyBkYXkgb2YgbW9udGhcbiAgICAgICAgICAgIC5yZXBsYWNlKC9cXGJvXFxiLywgJ0RERCcpIC8vIGRheSBvZiB0aGUgeWVhciAobm8gbGVhZGluZyB6ZXJvKVxuICAgICAgICAgICAgLnJlcGxhY2UoL1xcYm9vXFxiLywgJ0REREQnKSAvLyBkYXkgb2YgdGhlIHllYXJcbiAgICAgICAgICAgIC5yZXBsYWNlKC9cXGJNXFxiLywgJ01NTScpIC8vIG1vbnRoIG5hbWUgc2hvcnRcbiAgICAgICAgICAgIC5yZXBsYWNlKC9cXGJNTVxcYi8sICdNTU1NJykgLy8gbW9udGggbmFtZSBsb25nXG4gICAgICAgICAgICAucmVwbGFjZSgvXFxibVxcYi8sICdNJykgLy8gbW9udGggb2YgeWVhciAobm8gbGVhZGluZylcbiAgICAgICAgICAgIC5yZXBsYWNlKC9cXGJtbVxcYi8sICdNTScpIC8vIG1vbnRoIG9mIHllYXJcbiAgICAgICAgICAgIC5yZXBsYWNlKC9cXGJ5XFxiLywgJ1lZJykgLy8geWVhciAodHdvIGRpZ2l0cylcbiAgICAgICAgICAgIC5yZXBsYWNlKC9cXGJ5eVxcYi8sICdZWVlZJyk7IC8vIHllYXIgKGZvdXIgZGlnaXRzKVxuICAgIH1cblxuICAgIHB1YmxpYyBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKSB7XG4gICAgICAgIGlmICh0aGlzLmRpYWxvZ1Zpc2libGUgJiYgY2hhbmdlc1snc2VhcmNoR3JpZERhdGEnXSkge1xuICAgICAgICAgICAgdGhpcy5sb2FkaW5nID0gZmFsc2U7XG4gICAgICAgIH1cblxuICAgICAgICB0aGlzLl9zZXRGb2N1c0ZpbHRlcigpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ09uRGVzdHJveSgpIHtcbiAgICAgICAgdGhpcy5uZ1Vuc3Vic2NyaWJlLm5leHQoKTtcbiAgICAgICAgdGhpcy5uZ1Vuc3Vic2NyaWJlLmNvbXBsZXRlKCk7XG4gICAgfVxuXG4gICAgcHVibGljIGdldEdyaWREYXRhKCkge1xuICAgICAgICByZXR1cm4gdGhpcy5zZWFyY2hHcmlkRGF0YTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0TG9va3VwU3VnZ2VzdGlvbnMoKSB7XG4gICAgICAgIHJldHVybiB0aGlzLmxvb2t1cFN1Z2dlc3Rpb25zO1xuICAgIH1cblxuICAgIHByb3RlY3RlZCBtYWtlU2VhcmNoUmVxdWVzdFBhcmFtcyhldmVudDogYW55KSB7XG4gICAgICAgIGNvbnN0IGZpbHRlcnMgPSB0aGlzLmZvcm1Hcm91cERpYWxvZz8uZ2V0UmF3VmFsdWUoKTtcbiAgICAgICAgY29uc3QgcGFyYW1zID0geyAuLi5ldmVudCwgZmlsdGVyRGF0YTogZmlsdGVycyB9O1xuICAgICAgICBjb25zdCB7IG11bHRpU29ydE1ldGEgfSA9IGV2ZW50O1xuICAgICAgICB0aGlzLm11bHRpU29ydE1ldGEgPSBtdWx0aVNvcnRNZXRhIHx8IHRoaXMubXVsdGlTb3J0TWV0YTtcblxuICAgICAgICByZXR1cm4gcGFyYW1zO1xuICAgIH1cblxuICAgIHB1YmxpYyBsYXp5TG9hZEdyaWQoZXZlbnQ6IGFueSkge1xuICAgICAgICAvLyBBbyBkZWZpbmlyIHVtYSBvcmRlbmHDp8OjbyBuYSB0YWJlbGEgZG8gbG9va3VwIGVzc2UgbcOpdG9kbyDDqSBjaGFtYWRvIDIgdmV6ZXMgaHR0cHM6Ly9naXRodWIuY29tL3ByaW1lZmFjZXMvcHJpbWVuZy9pc3N1ZXMvNTQ4MFxuICAgICAgICBjb25zdCBwYXJhbXMgPSB0aGlzLm1ha2VTZWFyY2hSZXF1ZXN0UGFyYW1zKGV2ZW50KTtcbiAgICAgICAgdGhpcy5vblNlYXJjaFJlcXVlc3QubmV4dChwYXJhbXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBvbkNvbXBsZXRlTWV0aG9kKGV2ZW50OiBBdXRvQ29tcGxldGVDb21wbGV0ZUV2ZW50KTogdm9pZCB7XG4gICAgICAgIGlmICghdGhpcy5hdXRvY29tcGxldGVGb3JjZVNlbGVjdGlvbikge1xuICAgICAgICAgICAgdGhpcy5vbkNoYW5nZT8uKHRoaXMudmFsdWUgPT09ICcnID8gbnVsbCA6IHRoaXMudmFsdWUpO1xuICAgICAgICB9XG5cbiAgICAgICAgdGhpcy5vbkxvb2t1cFJlcXVlc3QubmV4dChldmVudC5xdWVyeSk7XG4gICAgfVxuXG4gICAgcHVibGljIHNldERlZmF1bHRGaWx0ZXJzKCkge1xuICAgICAgICBpZiAoIXRoaXMuZGVmYXVsdEZpbHRlcikgcmV0dXJuO1xuXG4gICAgICAgIHRoaXMuZGVmYXVsdEZpbHRlclxuICAgICAgICAgICAgLmZpbHRlcigoeyBmaWVsZCB9KSA9PiB0aGlzLmZvcm1Hcm91cERpYWxvZz8uY29udGFpbnMoZmllbGQpICYmICF0aGlzLmZvcm1Hcm91cERpYWxvZz8uZ2V0KFtmaWVsZF0pPy5kaXJ0eSlcbiAgICAgICAgICAgIC5mb3JFYWNoKCh7IHZhbHVlLCBmaWVsZCB9KSA9PiB7XG4gICAgICAgICAgICAgICAgdGhpcy5mb3JtR3JvdXBEaWFsb2c/LmdldChbZmllbGRdKT8ucGF0Y2hWYWx1ZSh2YWx1ZSBpbnN0YW5jZW9mIEZ1bmN0aW9uID8gdmFsdWUoKSA6IHZhbHVlKTtcbiAgICAgICAgICAgIH0pO1xuICAgIH1cblxuICAgIEBDaGVja0Rpc2FibGVkKClcbiAgICBwdWJsaWMgYXN5bmMgc2hvd0RpYWxvZygpIHtcbiAgICAgICAgdGhpcy5zZXREZWZhdWx0RmlsdGVycygpO1xuICAgICAgICB0aGlzLnNlYXJjaEdyaWREYXRhID0gW107XG4gICAgICAgIHRoaXMub25Ub3VjaGVkPy4oKTtcbiAgICAgICAgdGhpcy5ob3RrZXlzU2VydmljZS5wYXVzZShbLi4udGhpcy5ob3RrZXlzU2VydmljZS5ob3RrZXlzXSk7XG4gICAgICAgIHRoaXMuc2V0SG90a2V5cygpO1xuXG4gICAgICAgIGxldCBzZWxlY3RlZDogYW55ID0gW107XG4gICAgICAgIGlmICh0aGlzLm11bHRpcGxlICYmIHRoaXMudmFsdWUpIHtcbiAgICAgICAgICAgIHNlbGVjdGVkID0gc2VsZWN0ZWQuY29uY2F0KHRoaXMudmFsdWUpO1xuICAgICAgICB9IGVsc2UgaWYgKHRoaXMudmFsdWUpIHtcbiAgICAgICAgICAgIHNlbGVjdGVkID0gW3RoaXMudmFsdWVdO1xuICAgICAgICB9XG4gICAgICAgIHRoaXMuc2VsZWN0ZWQgPSBzZWxlY3RlZDtcblxuICAgICAgICB0aGlzLmxvYWRpbmcgPSB0cnVlO1xuICAgICAgICB0aGlzLmRpYWxvZ1Zpc2libGUgPSB0cnVlO1xuICAgIH1cblxuICAgIHNldElucHV0cyhjb21wb25lbnRSZWY6IGFueSwgY29uZmlnczogYW55LCBmb3JtOiBhbnkpIHtcbiAgICAgICAgY29tcG9uZW50UmVmLmluc3RhbmNlLmNvbmZpZ3MgPSBjb25maWdzO1xuICAgICAgICBjb21wb25lbnRSZWYuaW5zdGFuY2UuZm9ybSA9IGZvcm07XG5cbiAgICAgICAgLy8gY2hhbWUgbmdPbkNoYW5nZXMgbWFudWFsbWVudGUgc2UgbmVjZXNzw6FyaW9cbiAgICAgICAgaWYgKHR5cGVvZiBjb21wb25lbnRSZWYuaW5zdGFuY2UubmdPbkNoYW5nZXMgPT09ICdmdW5jdGlvbicpIHtcbiAgICAgICAgICAgIGNvbXBvbmVudFJlZi5pbnN0YW5jZS5uZ09uQ2hhbmdlcygpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgb25WaXNpYmxlQ2hhbmdlKHZpc2liaWxpdHlTdGF0ZTogYm9vbGVhbikge1xuICAgICAgICBpZiAodmlzaWJpbGl0eVN0YXRlKSB7XG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cbiAgICAgICAgdGhpcy5oaWRlRGlhbG9nKCk7XG4gICAgfVxuICAgIHB1YmxpYyBoaWRlRGlhbG9nKCkge1xuICAgICAgICBpZiAoIXRoaXMuYXV0b2NvbXBsZXRlKSB7XG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cbiAgICAgICAgY29uc3QgeyBpbnB1dEVMLCBtdWx0aUlucHV0RWwgfSA9IHRoaXMuYXV0b2NvbXBsZXRlO1xuICAgICAgICB0aGlzLmRpYWxvZ1Zpc2libGUgPSBmYWxzZTtcbiAgICAgICAgdGhpcy5jb2xsYXBzZWQgPSBmYWxzZTtcbiAgICAgICAgdGhpcy5ob3RrZXlzU2VydmljZS51bnBhdXNlKFsuLi50aGlzLmhvdGtleXNTZXJ2aWNlLnBhdXNlZEhvdGtleXNdKTtcbiAgICAgICAgaWYgKHRoaXMubXVsdGlwbGUpIHtcbiAgICAgICAgICAgIG11bHRpSW5wdXRFbD8ubmF0aXZlRWxlbWVudD8uZm9jdXMoKTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIGlucHV0RUw/Lm5hdGl2ZUVsZW1lbnQ/LmZvY3VzKCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgc2VhcmNoKCkge1xuICAgICAgICB0aGlzLnJlc2V0VGFibGUoKTtcbiAgICAgICAgdGhpcy5jb2xsYXBzZWQgPSB0cnVlO1xuICAgICAgICBjb25zdCBkaWFsb2dDb250YWluZXIgPSB0aGlzLmxvb2t1cERpYWxvZ0NvbnRhaW5lcigpPy5uYXRpdmVFbGVtZW50O1xuICAgICAgICBpZiAoZGlhbG9nQ29udGFpbmVyKSB7XG4gICAgICAgICAgICBkaWFsb2dDb250YWluZXIuc2Nyb2xsSW50b1ZpZXcoeyBiZWhhdmlvcjogJ3Ntb290aCcgfSk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgY2xlYXIoKSB7XG4gICAgICAgIHRoaXMuZm9ybUdyb3VwRGlhbG9nPy5yZXNldCh0aGlzLm9yaWdpbmFsRm9ybVZhbHVlcyk7XG4gICAgICAgIHRoaXMucmVzZXRUYWJsZSgpO1xuICAgICAgICB0aGlzLm9uQ2xlYXJCdXR0b25DbGljay5lbWl0KCk7XG4gICAgfVxuXG4gICAgcHJvdGVjdGVkIHJlc2V0VGFibGUoKSB7XG4gICAgICAgIHRoaXMudGFibGU/LnJlc2V0KCk7XG4gICAgfVxuXG4gICAgcHVibGljIHNlbGVjdCgpIHtcbiAgICAgICAgaWYgKCF0aGlzLnNlbGVjdGVkLmxlbmd0aCkgcmV0dXJuO1xuXG4gICAgICAgIGNvbnN0IHNlbGVjdGVkID0gdGhpcy5zZWxlY3RlZCAmJiAodGhpcy5tdWx0aXBsZSA/IHRoaXMuc2VsZWN0ZWQgOiB0aGlzLnNlbGVjdGVkWzBdKTtcbiAgICAgICAgdGhpcy52YWx1ZSA9IHNlbGVjdGVkO1xuICAgICAgICB0aGlzLm9uU2VsZWN0Lm5leHQoc2VsZWN0ZWQpO1xuICAgICAgICB0aGlzLmhpZGVEaWFsb2coKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgb25TZWxlY3Rpb25DaGFuZ2Uoc2VsZWN0ZWQ6IGFueSkge1xuICAgICAgICBpZiAoIXNlbGVjdGVkKSByZXR1cm47XG4gICAgICAgIGlmIChBcnJheS5pc0FycmF5KHNlbGVjdGVkKSkgdGhpcy5zZWxlY3RlZCA9IHNlbGVjdGVkO1xuICAgICAgICBlbHNlIHRoaXMuc2VsZWN0ZWQgPSBbc2VsZWN0ZWRdO1xuICAgIH1cblxuICAgIHB1YmxpYyByZWdpc3Rlck9uQ2hhbmdlKG9uQ2hhbmdlOiBGdW5jdGlvbikge1xuICAgICAgICB0aGlzLm9uQ2hhbmdlID0gKHZhbHVlOiBhbnkpID0+IHtcbiAgICAgICAgICAgIHRoaXMud3JpdGVWYWx1ZSh2YWx1ZSk7XG4gICAgICAgICAgICBvbkNoYW5nZSh2YWx1ZSk7XG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgcHVibGljIHJlZ2lzdGVyT25Ub3VjaGVkKG9uVG91Y2hlZDogRnVuY3Rpb24pIHtcbiAgICAgICAgdGhpcy5vblRvdWNoZWQgPSBvblRvdWNoZWQ7XG4gICAgfVxuXG4gICAgcHVibGljIHdyaXRlVmFsdWUodmFsdWU6IGFueSkge1xuICAgICAgICB0aGlzLnZhbHVlID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIHNldERpc2FibGVkU3RhdGUoZGlzYWJsZWQ6IGJvb2xlYW4pIHtcbiAgICAgICAgdGhpcy5kaXNhYmxlZCA9IGRpc2FibGVkO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXRGaWVsZFZhbHVlKG9iajogYW55LCBwYXRoOiBzdHJpbmcpIHtcbiAgICAgICAgcmV0dXJuIHBhdGguc3BsaXQoJy4nKS5yZWR1Y2UoKHJlc3VsdCwgcHJvcCkgPT4gKHJlc3VsdFtwcm9wXSA9PT0gdW5kZWZpbmVkID8gJycgOiByZXN1bHRbcHJvcF0pLCBvYmopO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXRCYWRnZUZyb21WYWx1ZShcbiAgICAgICAgdmFsdWU6IHVua25vd24sXG4gICAgICAgIG9wdGlvbnM6IHtcbiAgICAgICAgICAgIGxhYmVsOiBzdHJpbmc7XG4gICAgICAgICAgICB2YWx1ZTogdW5rbm93bjtcbiAgICAgICAgICAgIGJhZGdlPzoge1xuICAgICAgICAgICAgICAgIHR5cGU/OiBCYWRnZUNvbXBvbmVudFsndHlwZSddO1xuICAgICAgICAgICAgICAgIGNvbG9yPzogQmFkZ2VDb21wb25lbnRbJ2NvbG9yJ107XG4gICAgICAgICAgICAgICAgaWNvbkNsYXNzPzogQmFkZ2VDb21wb25lbnRbJ2ljb25DbGFzcyddO1xuICAgICAgICAgICAgICAgIGljb25Qb3NpdGlvbj86IEJhZGdlQ29tcG9uZW50WydpY29uUG9zaXRpb24nXTtcbiAgICAgICAgICAgIH07XG4gICAgICAgIH1bXSxcbiAgICApIHtcbiAgICAgICAgcmV0dXJuIG9wdGlvbnM/LmZpbmQoKG9wdCkgPT4gb3B0LnZhbHVlID09PSB2YWx1ZSk/LmJhZGdlO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXRMYWJlbEZvclZhbHVlKFxuICAgICAgICB2YWx1ZTogdW5rbm93bixcbiAgICAgICAgb3B0aW9uczoge1xuICAgICAgICAgICAgbGFiZWw6IHN0cmluZztcbiAgICAgICAgICAgIHZhbHVlOiB1bmtub3duO1xuICAgICAgICAgICAgYmFkZ2U/OiB7XG4gICAgICAgICAgICAgICAgdHlwZT86IEJhZGdlQ29tcG9uZW50Wyd0eXBlJ107XG4gICAgICAgICAgICAgICAgY29sb3I/OiBCYWRnZUNvbXBvbmVudFsnY29sb3InXTtcbiAgICAgICAgICAgICAgICBpY29uQ2xhc3M/OiBCYWRnZUNvbXBvbmVudFsnaWNvbkNsYXNzJ107XG4gICAgICAgICAgICAgICAgaWNvblBvc2l0aW9uPzogQmFkZ2VDb21wb25lbnRbJ2ljb25Qb3NpdGlvbiddO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgfVtdLFxuICAgICkge1xuICAgICAgICBpZiAoIW9wdGlvbnMpIHJldHVybiBgJHt2YWx1ZX1gO1xuXG4gICAgICAgIGNvbnN0IG9wdGlvbiA9IG9wdGlvbnMuZmluZCgob3B0KSA9PiBvcHQudmFsdWUgPT09IHZhbHVlKTtcbiAgICAgICAgcmV0dXJuIG9wdGlvbiA/IG9wdGlvbi5sYWJlbCA6IGAke3ZhbHVlfWA7XG4gICAgfVxuXG4gICAgcHVibGljIGlzQm9vbGVhblZhbHVlKG9iajogYW55LCBwYXRoOiBzdHJpbmcpIHtcbiAgICAgICAgY29uc3QgdmFsdWUgPSB0aGlzLmdldEZpZWxkVmFsdWUob2JqLCBwYXRoKTtcbiAgICAgICAgaWYgKHZhbHVlID09PSB0cnVlIHx8IHZhbHVlID09PSBmYWxzZSkgcmV0dXJuIHRydWU7XG4gICAgICAgIGVsc2UgcmV0dXJuIGZhbHNlO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXRCb29sZWFuTGFiZWwob2JqOiBhbnksIHBhdGg6IHN0cmluZywgb3B0aW9uc0xhYmVsOiBCb29sZWFuT3B0aW9uc0xhYmVsIHwgdW5kZWZpbmVkKSB7XG4gICAgICAgIGlmICghb3B0aW9uc0xhYmVsKSB7XG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cbiAgICAgICAgaWYgKHRoaXMuZ2V0RmllbGRWYWx1ZShvYmosIHBhdGgpKSB7XG4gICAgICAgICAgICByZXR1cm4gb3B0aW9uc0xhYmVsLnRydWU7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gb3B0aW9uc0xhYmVsLmZhbHNlO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIGlzTnVtYmVyKG9iajogYW55LCBwYXRoOiBzdHJpbmcpIHtcbiAgICAgICAgcmV0dXJuICFuZXcgQmlnTnVtYmVyKHRoaXMuZ2V0RmllbGRWYWx1ZShvYmosIHBhdGgpKS5pc05hTigpO1xuICAgIH1cblxuICAgIHB1YmxpYyBzZXRIb3RrZXlzKCkge1xuICAgICAgICBjb25zdCBjbGVhckhvdGtleSA9IHRoaXMubmV3SG90a2V5KCdhbHQrc2hpZnQrbCcsIHRoaXMuY2xlYXIuYmluZCh0aGlzKSk7XG4gICAgICAgIGNvbnN0IGZpbmRIb3RrZXkgPSB0aGlzLm5ld0hvdGtleSgnYWx0K3NoaWZ0K2YnLCB0aGlzLnNlYXJjaC5iaW5kKHRoaXMpKTtcbiAgICAgICAgY29uc3QgaGlkZUhvdGtleSA9IHRoaXMubmV3SG90a2V5KCdhbHQrc2hpZnQrYycsIHRoaXMuaGlkZURpYWxvZy5iaW5kKHRoaXMpKTtcbiAgICAgICAgY29uc3Qgc2VsZWN0SG90a2V5ID0gdGhpcy5uZXdIb3RrZXkoJ2FsdCtzaGlmdCtzJywgdGhpcy5zZWxlY3QuYmluZCh0aGlzKSk7XG5cbiAgICAgICAgY29uc3QgYmluZGVkSG90a2V5cyA9IFtjbGVhckhvdGtleSwgZmluZEhvdGtleSwgaGlkZUhvdGtleSwgc2VsZWN0SG90a2V5XTtcbiAgICAgICAgYmluZGVkSG90a2V5cy5mb3JFYWNoKChob3RrZXk6IEhvdGtleSkgPT4gdGhpcy5ob3RrZXlzU2VydmljZS5hZGQoaG90a2V5KSk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBuZXdIb3RrZXkoY29tYm86IHN0cmluZywgZm46IEZ1bmN0aW9uKTogSG90a2V5IHtcbiAgICAgICAgcmV0dXJuIG5ldyBIb3RrZXkoY29tYm8sICgpID0+IHtcbiAgICAgICAgICAgIGZuKCk7XG4gICAgICAgICAgICByZXR1cm4gZmFsc2U7XG4gICAgICAgIH0sIFsnSU5QVVQnLCAnU0VMRUNUJywgJ1RFWFRBUkVBJ10pO1xuICAgIH1cblxuICAgIHB1YmxpYyBmaWx0ZXJUb2dnbGUoKSB7XG4gICAgICAgIGlmICh0aGlzLmFuaW1hdGluZykgcmV0dXJuO1xuXG4gICAgICAgIHRoaXMuYW5pbWF0aW5nID0gdHJ1ZTtcbiAgICAgICAgdGhpcy5jb2xsYXBzZWQgPSAhdGhpcy5jb2xsYXBzZWQ7XG4gICAgfVxuXG4gICAgcHVibGljIG9uVG9nZ2xlRG9uZSgpIHtcbiAgICAgICAgdGhpcy5hbmltYXRpbmcgPSBmYWxzZTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBDYWxjdWxhdGUgdGhlIHRhYmxlIGNvbHVtbiBzaXplLiBUaGUgbWluaW11bSB2YWx1ZSBpcyAxNC4yODZlbSwgd2hpY2ggaXMgZXF1YWxzIHRvIDIwMHB4IGR1byB0byB0aGUgY3VycmVudCBmb250IHNpemUuXG4gICAgICogQHBhcmFtIGxhYmVsIENvbHVtbiBuYW1lLlxuICAgICAqL1xuICAgIHB1YmxpYyBnZXRDb2xXaWR0aChsYWJlbDogc3RyaW5nKSB7XG4gICAgICAgIGNvbnN0IHNpemUgPSBsYWJlbC5sZW5ndGg7XG4gICAgICAgIGlmIChzaXplIDwgMTQuMjg2KSByZXR1cm4gYDE0LjI4NmVtYDtcbiAgICAgICAgcmV0dXJuIGAke3NpemV9ZW1gO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXRTY2FsZShzY2FsZTogYW55KTogbnVtYmVyIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuaXNGdW5jdGlvbihzY2FsZSkgPyBzY2FsZSgpIDogc2NhbGU7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBpc0Z1bmN0aW9uKHZhbHVlOiBhbnkpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHZhbHVlIGluc3RhbmNlb2YgRnVuY3Rpb247XG4gICAgfVxuXG4gICAgcHVibGljIGdldEludGVnZXJNYXNrQ29uZmlnKGNvbDogRm9ybUZpZWxkKTogTWFza0NvbmZpZyB7XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgICBzY2FsZTogMCxcbiAgICAgICAgICAgIHRob3VzYW5kc1NlcGFyYXRvcjogY29sLm51bWJlckxvY2FsZU9wdGlvbnM/LnRob3VzYW5kc1NlcGFyYXRvcixcbiAgICAgICAgICAgIHByZWZpeDogJycsXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgcHVibGljIGdldERvdWJsZU1hc2tDb25maWcoY29sOiBGb3JtRmllbGQpOiBNYXNrQ29uZmlnIHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgIHNjYWxlOiB0aGlzLmdldFNjYWxlKGNvbC5zY2FsZSksXG4gICAgICAgICAgICBkZWNpbWFsU2VwYXJhdG9yOiBjb2wubnVtYmVyTG9jYWxlT3B0aW9ucz8uZGVjaW1hbFNlcGFyYXRvcixcbiAgICAgICAgICAgIHRob3VzYW5kc1NlcGFyYXRvcjogY29sLm51bWJlckxvY2FsZU9wdGlvbnM/LnRob3VzYW5kc1NlcGFyYXRvcixcbiAgICAgICAgICAgIHByZWZpeDogJycsXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgcHVibGljIGdldE1vbmV5TWFza0NvbmZpZyhjb2w6IEZvcm1GaWVsZCk6IE1hc2tDb25maWcge1xuICAgICAgICByZXR1cm4ge1xuICAgICAgICAgICAgc2NhbGU6IHRoaXMuZ2V0U2NhbGUoY29sLnNjYWxlKSxcbiAgICAgICAgICAgIGRlY2ltYWxTZXBhcmF0b3I6IGNvbC5udW1iZXJMb2NhbGVPcHRpb25zPy5kZWNpbWFsU2VwYXJhdG9yLFxuICAgICAgICAgICAgdGhvdXNhbmRzU2VwYXJhdG9yOiBjb2wubnVtYmVyTG9jYWxlT3B0aW9ucz8udGhvdXNhbmRzU2VwYXJhdG9yLFxuICAgICAgICAgICAgcHJlZml4OiBjb2wubnVtYmVyTG9jYWxlT3B0aW9ucz8uY3VycmVuY3lTeW1ib2wsXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgcHVibGljIGdldE51bWJlck1hc2tDb25maWcoY29sOiBGb3JtRmllbGQpOiBNYXNrQ29uZmlnIHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgIHNjYWxlOiB0aGlzLmdldFNjYWxlKGNvbC5zY2FsZSksXG4gICAgICAgICAgICBkZWNpbWFsU2VwYXJhdG9yOiBjb2wubnVtYmVyTG9jYWxlT3B0aW9ucz8uZGVjaW1hbFNlcGFyYXRvcixcbiAgICAgICAgICAgIHRob3VzYW5kc1NlcGFyYXRvcjogY29sLm51bWJlckxvY2FsZU9wdGlvbnM/LnRob3VzYW5kc1NlcGFyYXRvcixcbiAgICAgICAgICAgIHByZWZpeDogY29sLm51bWJlckxvY2FsZU9wdGlvbnM/LmN1cnJlbmN5U3ltYm9sLFxuICAgICAgICB9O1xuICAgIH1cblxuICAgIHB1YmxpYyBwYXJzZVZhbHVlTWFza1ZhbHVlKGNvbDogRm9ybUZpZWxkLCByb3dEYXRhOiBhbnkpIHtcbiAgICAgICAgY29uc3QgX21hc2sgPSBjb2wubWFzaztcbiAgICAgICAgY29uc3QgaXNGdW5jdGlvbiA9IHRoaXMuaXNGdW5jdGlvbihfbWFzayk7XG4gICAgICAgIHJldHVybiBpc0Z1bmN0aW9uID8gKF9tYXNrIGFzIEZ1bmN0aW9uKSh7IHZhbHVlOiByb3dEYXRhIH0pIDogX21hc2s7XG4gICAgfVxuXG4gICAgcHVibGljIG9uVGFibGVSb3dEb3VibGVDbGljayhyb3dEYXRhOiBhbnkpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5zZWxlY3RlZCA9IFtyb3dEYXRhXTtcbiAgICAgICAgdGhpcy5zZWxlY3QoKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIF9zZXRGb2N1c0ZpbHRlcigpIHtcbiAgICAgICAgaWYgKHRoaXMuZGlhbG9nVmlzaWJsZSAmJiAhdGhpcy5jb2xsYXBzZWQpIHtcbiAgICAgICAgICAgIGNvbnN0IGlucHV0ID0gdGhpcy5sb29rdXBEaWFsb2dDb250YWluZXIoKT8ubmF0aXZlRWxlbWVudC5xdWVyeVNlbGVjdG9yKCdpbnB1dCcpO1xuICAgICAgICAgICAgaWYgKGlucHV0KSB7XG4gICAgICAgICAgICAgICAgKGlucHV0IGFzIEhUTUxJbnB1dEVsZW1lbnQpLmZvY3VzKCk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwcml2YXRlIF9zdWJzY3JpYmVFdmVudHMoKTogdm9pZCB7XG4gICAgICAgIHRoaXMub25TZWFyY2hSZXF1ZXN0LnBpcGUodGFrZVVudGlsKHRoaXMubmdVbnN1YnNjcmliZSkpLnN1YnNjcmliZSgoKSA9PiAodGhpcy5sb2FkaW5nID0gdHJ1ZSkpO1xuXG4gICAgICAgIHRoaXMub25TZWxlY3QucGlwZSh0YWtlVW50aWwodGhpcy5uZ1Vuc3Vic2NyaWJlKSkuc3Vic2NyaWJlKCgpID0+IHRoaXMub25DaGFuZ2U/Lih0aGlzLnZhbHVlKSk7XG5cbiAgICAgICAgdGhpcy5vblVuc2VsZWN0LnBpcGUodGFrZVVudGlsKHRoaXMubmdVbnN1YnNjcmliZSkpLnN1YnNjcmliZSgoKSA9PiB0aGlzLm9uQ2hhbmdlPy4odGhpcy52YWx1ZSkpO1xuXG4gICAgICAgIHRoaXMub25DbGVhci5waXBlKHRha2VVbnRpbCh0aGlzLm5nVW5zdWJzY3JpYmUpKS5zdWJzY3JpYmUoKCkgPT4ge1xuICAgICAgICAgICAgaWYgKHRoaXMubXVsdGlwbGUpIHtcbiAgICAgICAgICAgICAgICByZXR1cm47XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICB0aGlzLm9uQ2hhbmdlPy4obnVsbCk7XG4gICAgICAgIH0pO1xuXG4gICAgICAgIHRoaXMub25Gb2N1cy5waXBlKHRha2VVbnRpbCh0aGlzLm5nVW5zdWJzY3JpYmUpKS5zdWJzY3JpYmUoKCkgPT4ge1xuICAgICAgICAgICAgdGhpcy5vblRvdWNoZWQ/LigpO1xuICAgICAgICB9KTtcblxuICAgICAgICB0aGlzLm9uQmx1ci5waXBlKHRha2VVbnRpbCh0aGlzLm5nVW5zdWJzY3JpYmUpKS5zdWJzY3JpYmUoKGV2ZW50OiBFdmVudCkgPT4ge1xuICAgICAgICAgICAgaWYgKGlzTnVsbE9yVW5kZWZpbmVkKHRoaXMubG9va3VwRGlzcGxheUZpZWxkKSkgcmV0dXJuO1xuXG4gICAgICAgICAgICBjb25zdCB0YXJnZXQgPSBldmVudC50YXJnZXQgYXMgSFRNTElucHV0RWxlbWVudDtcbiAgICAgICAgICAgIGNvbnN0IGN1cnJlbnRWYWx1ZSA9IHRoaXMudmFsdWUgJiYgdGhpcy52YWx1ZVt0aGlzLmxvb2t1cERpc3BsYXlGaWVsZF07XG4gICAgICAgICAgICBjb25zdCB7IHZhbHVlIH0gPSB0YXJnZXQ7XG5cbiAgICAgICAgICAgIGlmICh0aGlzLm11bHRpcGxlIHx8ICFjdXJyZW50VmFsdWUgfHwgY3VycmVudFZhbHVlID09IHZhbHVlKSByZXR1cm47XG5cbiAgICAgICAgICAgIGNvbnN0IG5ld1ZhbHVlID0gJyc7XG4gICAgICAgICAgICB0YXJnZXQudmFsdWUgPSBuZXdWYWx1ZTtcbiAgICAgICAgICAgIHRoaXMub25DaGFuZ2U/LihuZXdWYWx1ZSk7XG4gICAgICAgIH0pO1xuICAgIH1cbn1cblxuZXhwb3J0IGludGVyZmFjZSBCb29sZWFuT3B0aW9uc0xhYmVsQ29uZmlnIHtcbiAgICB0cnVlOiBzdHJpbmc7XG4gICAgZmFsc2U6IHN0cmluZztcbiAgICBlbXB0eT86IHN0cmluZztcbiAgICBjbGVhcj86IHN0cmluZztcbn1cblxuZXhwb3J0IGNsYXNzIEJvb2xlYW5PcHRpb25zTGFiZWwge1xuICAgIHB1YmxpYyB0cnVlOiBzdHJpbmc7XG4gICAgcHVibGljIGZhbHNlOiBzdHJpbmc7XG4gICAgcHVibGljIGVtcHR5Pzogc3RyaW5nO1xuICAgIHB1YmxpYyBjbGVhcj86IHN0cmluZztcblxuICAgIGNvbnN0cnVjdG9yKGNvbmZpZzogQm9vbGVhbk9wdGlvbnNMYWJlbENvbmZpZykge1xuICAgICAgICB0aGlzLnRydWUgPSBjb25maWcudHJ1ZTtcbiAgICAgICAgdGhpcy5mYWxzZSA9IGNvbmZpZy5mYWxzZTtcbiAgICAgICAgdGhpcy5lbXB0eSA9IGNvbmZpZy5lbXB0eTtcbiAgICAgICAgdGhpcy5jbGVhciA9IGNvbmZpZy5jbGVhcjtcbiAgICB9XG59XG4iLCI8ZGl2IFtuZ0NsYXNzXT1cInsgaW5wdXRncm91cDogc2hvd1NlYXJjaCB9XCI+XG4gICAgPHAtYXV0b0NvbXBsZXRlXG4gICAgICAgICNhdXRvY29tcGxldGVcbiAgICAgICAgWyhuZ01vZGVsKV09XCJ2YWx1ZVwiXG4gICAgICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiXG4gICAgICAgIFtkYXRhS2V5XT1cImRhdGFLZXlcIlxuICAgICAgICBbbXVsdGlwbGVdPVwibXVsdGlwbGVcIlxuICAgICAgICBbaW5wdXRJZF09XCJpZCArICctYXV0b2NvbXBsZXRlJ1wiXG4gICAgICAgIFtmb3JjZVNlbGVjdGlvbl09XCJhdXRvY29tcGxldGVGb3JjZVNlbGVjdGlvblwiXG4gICAgICAgIFtzdWdnZXN0aW9uc109XCJnZXRMb29rdXBTdWdnZXN0aW9ucygpXCJcbiAgICAgICAgKGNvbXBsZXRlTWV0aG9kKT1cIm9uQ29tcGxldGVNZXRob2QoJGV2ZW50KVwiXG4gICAgICAgIChvblNlbGVjdCk9XCJvblNlbGVjdC5uZXh0KCRldmVudClcIlxuICAgICAgICAob25CbHVyKT1cIm9uQmx1ci5uZXh0KCRldmVudClcIlxuICAgICAgICAob25Gb2N1cyk9XCJvbkZvY3VzLm5leHQoJGV2ZW50KVwiXG4gICAgICAgIChvblVuc2VsZWN0KT1cIm9uVW5zZWxlY3QubmV4dCgkZXZlbnQpXCJcbiAgICAgICAgKG9uQ2xlYXIpPVwib25DbGVhci5uZXh0KCRldmVudClcIlxuICAgICAgICAob25LZXlVcCk9XCJvbktleVVwLm5leHQoJGV2ZW50KVwiXG4gICAgICAgIFtmaWVsZF09XCJsb29rdXBEaXNwbGF5RmllbGRcIlxuICAgICAgICBbZW1wdHlNZXNzYWdlXT1cImxvb2t1cEVtcHR5TWVzc2FnZVwiXG4gICAgICAgIFtkcm9wZG93bl09XCIhc2hvd1NlYXJjaFwiXG4gICAgICAgIFthcHBlbmRUb109XCJsb29rdXBBcHBlbmRUb1wiXG4gICAgICAgIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlciB8fCAnICdcIlxuICAgICAgICBbYXV0b0hpZ2hsaWdodF09XCJ0cnVlXCJcbiAgICAgICAgaW5wdXRTdHlsZUNsYXNzPVwibW91c2V0cmFwXCJcbiAgICA+XG4gICAgPC9wLWF1dG9Db21wbGV0ZT5cbiAgICBAaWYgKHNob3dTZWFyY2gpIHtcbiAgICAgICAgPGJ1dHRvblxuICAgICAgICAgICAgY2xhc3M9XCJidXR0b24tYWRkb25cIlxuICAgICAgICAgICAgW2NsYXNzLmJ1dHRvbi1hZGRvbi0tZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuICAgICAgICAgICAgW2Rpc2FibGVkXT1cImRpc2FibGVkXCJcbiAgICAgICAgICAgIChjbGljayk9XCJzaG93RGlhbG9nKClcIlxuICAgICAgICA+XG4gICAgICAgICAgICA8aSBjbGFzcz1cImZhIGZhLXNlYXJjaFwiPjwvaT5cbiAgICAgICAgPC9idXR0b24+XG4gICAgfVxuPC9kaXY+XG5cbjxzLWRpYWxvZ1xuICAgIFsodmlzaWJsZSldPVwiZGlhbG9nVmlzaWJsZVwiXG4gICAgKHZpc2libGVDaGFuZ2UpPVwib25WaXNpYmxlQ2hhbmdlKCRldmVudCEpXCJcbiAgICBbaGVhZGVyXT1cImxhYmVsT3B0aW9ucz8uc2VhcmNoVGl0bGUgfHwgJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5hZHZhbmNlZF9zZWFyY2gnIHwgdHJhbnNsYXRlXCJcbiAgICBjb250ZW50Q2xhc3NOYW1lPVwicy1sb29rdXAtbW9kYWxcIlxuICAgIHNpemU9XCJ4bFwiXG4+XG4gICAgQGlmIChkaWFsb2dWaXNpYmxlKSB7XG4gICAgICAgIDxkaXZcbiAgICAgICAgICAgIGNsYXNzPVwicy1sb29rdXAtbW9kYWwtY29udGFpbmVyXCJcbiAgICAgICAgICAgICNkaWFsb2dDb250YWluZXJcbiAgICAgICAgPlxuICAgICAgICAgICAgQGlmIChzZWFyY2hGaWVsZHMgJiYgc2VhcmNoRmllbGRzLmxlbmd0aCkge1xuICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJmaWx0ZXJcIlxuICAgICAgICAgICAgICAgICAgICBbQGNvbGxhcHNlQ29udGVudF09XCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGNvbGxhcHNlZFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgID8geyB2YWx1ZTogJ2hpZGRlbicsIHBhcmFtczogeyB0cmFuc2l0aW9uUGFyYW1zOiB0cmFuc2l0aW9uT3B0aW9ucyB9IH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA6IHsgdmFsdWU6ICd2aXNpYmxlJywgcGFyYW1zOiB7IHRyYW5zaXRpb25QYXJhbXM6IHRyYW5zaXRpb25PcHRpb25zIH0gfVxuICAgICAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgICAgICAoQGNvbGxhcHNlQ29udGVudC5kb25lKT1cIm9uVG9nZ2xlRG9uZSgpXCJcbiAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgIDxmb3JtXG4gICAgICAgICAgICAgICAgICAgICAgICBbZm9ybUdyb3VwXT1cImZvcm1Hcm91cERpYWxvZ1wiXG4gICAgICAgICAgICAgICAgICAgICAgICBub3ZhbGlkYXRlXG4gICAgICAgICAgICAgICAgICAgICAgICBhdXRvY29tcGxldGU9XCJvZmZcIlxuICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICBAaWYgKCFjb2xsYXBzZWQpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiZm9ybS1jb250ZW50XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW0BjaGlsZENvbGxhcHNlQ29udGVudF09XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNvbGxhcHNlZFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgID8geyB2YWx1ZTogJzpsZWF2ZScsIHBhcmFtczogeyB0cmFuc2l0aW9uUGFyYW1zOiB0cmFuc2l0aW9uT3B0aW9ucyB9IH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA6IHsgdmFsdWU6ICc6ZW50ZXInLCBwYXJhbXM6IHsgdHJhbnNpdGlvblBhcmFtczogdHJhbnNpdGlvbk9wdGlvbnMgfSB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmlsdGVyLXRpdGxlIHNkcy1zZWN0aW9uLXRpdGxlXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7eyBsYWJlbE9wdGlvbnM/LmZpbHRlclRpdGxlIHx8ICdwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuZmlsdGVycycgfCB0cmFuc2xhdGUgfX1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJmb3JtLWZpZWxkc1wiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGxldCBjb25maWdzID1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHR5cGU6IHJvd1R5cGUsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBmaWVsZHM6IHNlYXJjaEZpZWxkcyxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBdO1xuXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cy1keW5hbWljLWZvcm1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbY29uZmlnc109XCJjb25maWdzXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbZm9ybV09XCJmb3JtR3JvdXBEaWFsb2dcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zLWR5bmFtaWMtZm9ybT5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ1aS1nXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwidWktZy0xMlwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzLWJ1dHRvblxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbaWRdPVwiaWQgKyAnLWZpbHRlci1idXR0b24nXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdHlwZT1cInN1Ym1pdFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtsYWJlbF09XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGxhYmVsT3B0aW9ucz8uZmlsdGVyTGFiZWwgfHwgJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5maWx0ZXInXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfCB0cmFuc2xhdGVcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrZWQpPVwic2VhcmNoKClcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzVG9vbHRpcD1cIihBTFQgKyBTSElGVCArIEYpXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zLWJ1dHRvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cy1idXR0b25cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2lkXT1cImlkICsgJy1jbGVhci1idXR0b24nXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdHlwZT1cImJ1dHRvblwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtsYWJlbF09XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGxhYmVsT3B0aW9ucz8uY2xlYXJMYWJlbCB8fCAncGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNsZWFyJ1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHwgdHJhbnNsYXRlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIChjbGlja2VkKT1cImNsZWFyKClcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBwcmlvcml0eT1cImxpbmtcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzVG9vbHRpcD1cIihBTFQgKyBTSElGVCArIEwpXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zLWJ1dHRvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgPC9mb3JtPlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgfVxuICAgICAgICAgICAgQGlmIChzZWFyY2hGaWVsZHMgJiYgc2VhcmNoRmllbGRzLmxlbmd0aCkge1xuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJmaWx0ZXItdG9nZ2xlXCI+XG4gICAgICAgICAgICAgICAgICAgIDxidXR0b25cbiAgICAgICAgICAgICAgICAgICAgICAgIFtpZF09XCJpZCArICctZmlsdGVyLXRvZ2dsZS1idXR0b24nXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIHR5cGU9XCJidXR0b25cIlxuICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImZpbHRlclRvZ2dsZSgpXCJcbiAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImZhXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7ICdmYS1jaGV2cm9uLWxlZnQnOiAhY29sbGFwc2VkLCAnZmEtY2hldnJvbi1yaWdodCc6IGNvbGxhcHNlZCB9XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBhcmlhLWhpZGRlbj1cInRydWVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIEBsZXQgaXNFbXB0eUNvbnRlbnQgPSAhc2VhcmNoVG90YWxSZWNvcmRzICYmICFsb2FkaW5nO1xuICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgIGNsYXNzPVwiY29udGVudFwiXG4gICAgICAgICAgICAgICAgI2NvbnRlbnRDb250YWluZXJcbiAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7ICdlbXB0eS1jb250ZW50JzogaXNFbXB0eUNvbnRlbnQgfVwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgQGlmIChpc0VtcHR5Q29udGVudCkge1xuICAgICAgICAgICAgICAgICAgICA8cy1lbXB0eS1zdGF0ZVxuICAgICAgICAgICAgICAgICAgICAgICAgW2lkXT1cImlkICsgJy1lbXB0eS1zdGF0ZSdcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW3RpdGxlXT1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGxhYmVsT3B0aW9ucz8uc2VhcmNoRW1wdHlUaXRsZSB8fCAncGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLm5vX3JlY29yZHNfZm91bmQnIHwgdHJhbnNsYXRlXG4gICAgICAgICAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW2Rlc2NyaXB0aW9uXT1cInNlYXJjaEVtcHR5RGVzY3JpcHRpb25cIlxuICAgICAgICAgICAgICAgICAgICAgICAgaWNvbkNsYXNzPVwiZmEgZmEtc2VhcmNoXCJcbiAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICA8L3MtZW1wdHktc3RhdGU+XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb250ZW50LWNoaWxkXCI+XG4gICAgICAgICAgICAgICAgICAgIDxwLXRhYmxlXG4gICAgICAgICAgICAgICAgICAgICAgICBbZGF0YUtleV09XCJkYXRhS2V5XCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFt2YWx1ZV09XCJnZXRHcmlkRGF0YSgpXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtjb2x1bW5zXT1cInNlYXJjaEdyaWRGaWVsZHNcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW2xhenldPVwidHJ1ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBbc2Nyb2xsYWJsZV09XCJ0cnVlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtwYWdpbmF0b3JdPVwidHJ1ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBzb3J0TW9kZT1cIm11bHRpcGxlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFt0b3RhbFJlY29yZHNdPVwic2VhcmNoVG90YWxSZWNvcmRzXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtyb3dzXT1cIjEwXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtzZWxlY3Rpb25dPVwic2VsZWN0ZWRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgKG9uTGF6eUxvYWQpPVwibGF6eUxvYWRHcmlkKCRldmVudClcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW211bHRpU29ydE1ldGFdPVwibXVsdGlTb3J0TWV0YVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5kYXRhLWhpZGRlbl09XCIhc2VhcmNoVG90YWxSZWNvcmRzICYmICFsb2FkaW5nXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtzZWxlY3Rpb25Nb2RlXT1cIm11bHRpcGxlID8gJ211bHRpcGxlJyA6ICdzaW5nbGUnXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIChzZWxlY3Rpb25DaGFuZ2UpPVwib25TZWxlY3Rpb25DaGFuZ2UoJGV2ZW50KVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAqc0xvYWRpbmdTdGF0ZT1cInsgbG9hZGluZzogbG9hZGluZywgaW5kaWNhdG9yOiBpbmRpY2F0b3JMb2dvIH1cIlxuICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY2FwdGlvblwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXY+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBpZiAoc2hvd0FkZE9wdGlvbikge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHMtYnV0dG9uXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcHJpb3JpdHk9XCJkZWZhdWx0XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbbGFiZWxdPVwiJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5hZGQnIHwgdHJhbnNsYXRlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAoY2xpY2tlZCk9XCJvbkFkZC5lbWl0KClcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zLWJ1dHRvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAaWYgKHNob3dFZGl0T3B0aW9uKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cy1idXR0b25cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBwcmlvcml0eT1cImRlZmF1bHRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtsYWJlbF09XCIncGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmVkaXQnIHwgdHJhbnNsYXRlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwic2VsZWN0ZWQubGVuZ3RoICE9PSAxXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAoY2xpY2tlZCk9XCJvbkVkaXQuZW1pdCh0aGlzLnNlbGVjdGVkWzBdKVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3MtYnV0dG9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBpZiAoc2hvd1JlbW92ZU9wdGlvbikge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHMtYnV0dG9uXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcHJpb3JpdHk9XCJkZWZhdWx0XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbbGFiZWxdPVwiJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5yZW1vdmUnIHwgdHJhbnNsYXRlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwiIXNlbGVjdGVkLmxlbmd0aFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrZWQpPVwib25SZW1vdmUuZW1pdCh0aGlzLnNlbGVjdGVkKVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3MtYnV0dG9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG5nLXRlbXBsYXRlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcFRlbXBsYXRlPVwiY29sZ3JvdXBcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGxldC1jb2x1bW5zXG4gICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGNvbGdyb3VwPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAaWYgKG11bHRpcGxlKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8Y29sIHN0eWxlPVwid2lkdGg6IDUwcHhcIiAvPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGZvciAoY29sIG9mIGNvbHVtbnM7IHRyYWNrICRpbmRleCkge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGNvbCBbc3R5bGUud2lkdGhdPVwiY29sLndpZHRoXCIgLz5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvY29sZ3JvdXA+XG4gICAgICAgICAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG5nLXRlbXBsYXRlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcFRlbXBsYXRlPVwiaGVhZGVyXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBsZXQtY29sdW1uc1xuICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmIChtdWx0aXBsZSkge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRoIHN0eWxlPVwid2lkdGg6IDUwcHhcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cy10YWJsZS1oZWFkZXItY2hlY2tib3hcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3VzZUFsbE9iamVjdF09XCJsb29rdXBSb3dQcm9wcyA/IGZhbHNlIDogdHJ1ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtyb3dQcm9wc109XCJsb29rdXBSb3dQcm9wc1wiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvcy10YWJsZS1oZWFkZXItY2hlY2tib3g+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RoPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBmb3IgKGNvbCBvZiBjb2x1bW5zOyB0cmFjayAkaW5kZXgpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0aFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtzdHlsZS53aWR0aF09XCJjb2wud2lkdGhcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtwU29ydGFibGVDb2x1bW5dPVwiY29sLm5hbWVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtwU29ydGFibGVDb2x1bW5EaXNhYmxlZF09XCJzb3J0YWJsZUNvbHVtbnNEaXNhYmxlZC5pbmNsdWRlcyhjb2wubmFtZSlcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJzZW5pb3ItaGVhZGVyXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwic2VuaW9yLWhlYWRlci10aXRsZVwiPnt7IGNvbC5sYWJlbCB9fTwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmICghc29ydGFibGVDb2x1bW5zRGlzYWJsZWQuaW5jbHVkZXMoY29sLm5hbWUpKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cC1zb3J0SWNvbiBbZmllbGRdPVwiY29sLm5hbWVcIj4gPC9wLXNvcnRJY29uPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RoPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgICAgICAgICAgICAgICAgICA8bmctdGVtcGxhdGVcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBwVGVtcGxhdGU9XCJib2R5XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBsZXQtcm93RGF0YVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGxldC1jb2x1bW5zXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgbGV0LXJvd0luZGV4PVwicm93SW5kZXhcIlxuICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0clxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzTmF2aWdhdGlvblxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbcFNlbGVjdGFibGVSb3ddPVwicm93RGF0YVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtwU2VsZWN0YWJsZVJvd0luZGV4XT1cInJvd0luZGV4XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc0RvdWJsZUNsaWNrXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIChvbkRvdWJsZUNsaWNrKT1cIm9uVGFibGVSb3dEb3VibGVDbGljayhyb3dEYXRhKVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAaWYgKG11bHRpcGxlKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGRcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzdHlsZT1cIndpZHRoOiA1MHB4XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0YWJpbmRleD1cIjBcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwLXRhYmxlQ2hlY2tib3hcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3ZhbHVlXT1cInJvd0RhdGFcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbcFNlbGVjdGFibGVSb3ddPVwicm93RGF0YVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvcC10YWJsZUNoZWNrYm94PlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAZm9yIChjb2wgb2Ygc2VhcmNoR3JpZEZpZWxkczsgdHJhY2sgJGluZGV4KSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGRcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbc3R5bGUud2lkdGhdPVwiY29sLndpZHRoXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbbmdTd2l0Y2hdPVwiY29sLnR5cGVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRhYmluZGV4PVwiMFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQHN3aXRjaCAoY29sLnR5cGUpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGNhc2UgKCdCb29sZWFuJykge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpuZ0lmPVwiaXNCb29sZWFuVmFsdWUocm93RGF0YSwgY29sLm5hbWUpOyBlbHNlIGVtcHR5VGVtcGxhdGVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuPnt7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdldEJvb2xlYW5MYWJlbChyb3dEYXRhLCBjb2wubmFtZSwgY29sLm9wdGlvbnNMYWJlbClcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9fTwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBjYXNlICgnRGF0ZScpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqbmdJZj1cImdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpOyBlbHNlIGVtcHR5VGVtcGxhdGVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuPnt7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8IGxvY2FsaXplZERhdGVcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA6IGNvbC5jYWxlbmRhckxvY2FsZU9wdGlvbnM/LmRhdGVGb3JtYXQgfHwgJ0wnXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8IGFzeW5jXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAY2FzZSAoJ0RhdGVUaW1lJykge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpuZ0lmPVwiZ2V0RmllbGRWYWx1ZShyb3dEYXRhLCBjb2wubmFtZSk7IGVsc2UgZW1wdHlUZW1wbGF0ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+e3tcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0RmllbGRWYWx1ZShyb3dEYXRhLCBjb2wubmFtZSkgfCBsb2NhbGl6ZWREYXRlIHwgYXN5bmNcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9fTwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBjYXNlICgnTG9jYWxEYXRlVGltZScpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqbmdJZj1cImdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpOyBlbHNlIGVtcHR5VGVtcGxhdGVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuPnt7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpIHwgbG9jYWxpemVkRGF0ZSB8IGFzeW5jXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAY2FzZSAoJ1RpbWUnKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKm5nSWY9XCJnZXRGaWVsZFZhbHVlKHJvd0RhdGEsIGNvbC5uYW1lKTsgZWxzZSBlbXB0eVRlbXBsYXRlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3Bhbj57e1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBnZXRGaWVsZFZhbHVlKHJvd0RhdGEsIGNvbC5uYW1lKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfCBsb2NhbGl6ZWRUaW1lXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgOiBjb2wuY2FsZW5kYXJMb2NhbGVPcHRpb25zPy5kYXRlRm9ybWF0IHx8ICdMVFMnXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8IGFzeW5jXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAY2FzZSAoJ0ludGVnZXInKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNOdW1iZXIocm93RGF0YSwgY29sLm5hbWUpOyBlbHNlIGVtcHR5VGVtcGxhdGVcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge3tcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfCBsb2NhbGl6ZWRCaWdudW1iZXI6IGdldEludGVnZXJNYXNrQ29uZmlnKGNvbClcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8IGFzeW5jXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH19XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGNhc2UgKCdEb3VibGUnKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNOdW1iZXIocm93RGF0YSwgY29sLm5hbWUpOyBlbHNlIGVtcHR5VGVtcGxhdGVcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge3tcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfCBsb2NhbGl6ZWRCaWdudW1iZXI6IGdldERvdWJsZU1hc2tDb25maWcoY29sKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHwgYXN5bmNcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfX1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAY2FzZSAoJ01vbmV5Jykge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImlzTnVtYmVyKHJvd0RhdGEsIGNvbC5uYW1lKTsgZWxzZSBlbXB0eVRlbXBsYXRlXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBnZXRGaWVsZFZhbHVlKHJvd0RhdGEsIGNvbC5uYW1lKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHwgbG9jYWxpemVkQmlnbnVtYmVyOiBnZXRNb25leU1hc2tDb25maWcoY29sKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHwgYXN5bmNcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfX1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAY2FzZSAoJ051bWJlcicpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc051bWJlcihyb3dEYXRhLCBjb2wubmFtZSk7IGVsc2UgZW1wdHlUZW1wbGF0ZVwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7e1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0RmllbGRWYWx1ZShyb3dEYXRhLCBjb2wubmFtZSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8IGxvY2FsaXplZEJpZ251bWJlcjogZ2V0TnVtYmVyTWFza0NvbmZpZyhjb2wpXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfCBhc3luY1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9fVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBjYXNlICgnRW51bScpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqbmdJZj1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBnZXRMYWJlbEZvclZhbHVlKGdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpLCBjb2wub3B0aW9ucyk7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGVsc2UgZW1wdHlUZW1wbGF0ZVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqbmdJZj1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0QmFkZ2VGcm9tVmFsdWUoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0RmllbGRWYWx1ZShyb3dEYXRhLCBjb2wubmFtZSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY29sLm9wdGlvbnNcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICk7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0aGVuIHdpdGhCYWRnZTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGVsc2Ugd2l0aG91dEJhZGdlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPjwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjd2l0aEJhZGdlPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cy1iYWRnZVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3RleHRdPVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0TGFiZWxGb3JWYWx1ZShcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0RmllbGRWYWx1ZShyb3dEYXRhLCBjb2wubmFtZSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNvbC5vcHRpb25zXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtjb2xvcl09XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBnZXRCYWRnZUZyb21WYWx1ZShcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0RmllbGRWYWx1ZShyb3dEYXRhLCBjb2wubmFtZSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNvbC5vcHRpb25zXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKT8uY29sb3JcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbdHlwZV09XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBnZXRCYWRnZUZyb21WYWx1ZShcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0RmllbGRWYWx1ZShyb3dEYXRhLCBjb2wubmFtZSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNvbC5vcHRpb25zXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKT8udHlwZVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtpY29uQ2xhc3NdPVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0QmFkZ2VGcm9tVmFsdWUoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjb2wub3B0aW9uc1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICk/Lmljb25DbGFzc1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtpY29uUG9zaXRpb25dPVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0QmFkZ2VGcm9tVmFsdWUoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjb2wub3B0aW9uc1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICk/Lmljb25Qb3NpdGlvblxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3MtYmFkZ2U+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bmctdGVtcGxhdGUgI3dpdGhvdXRCYWRnZT5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7e1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdldExhYmVsRm9yVmFsdWUoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjb2wub3B0aW9uc1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH19XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGRlZmF1bHQge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmIChjb2wubWFzayAmJiBwYXJzZVZhbHVlTWFza1ZhbHVlKGNvbCwgcm93RGF0YSkpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpuZ0lmPVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBpc051bWJlcihyb3dEYXRhLCBjb2wubmFtZSkgfHxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGdldEZpZWxkVmFsdWUocm93RGF0YSwgY29sLm5hbWUpXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3Bhbj57e1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0RmllbGRWYWx1ZShyb3dEYXRhLCBjb2wubmFtZSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8IHNNYXNrRm9ybWF0dGVyOiBwYXJzZVZhbHVlTWFza1ZhbHVlKGNvbCwgcm93RGF0YSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IEBlbHNlIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpuZ0lmPVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBpc051bWJlcihyb3dEYXRhLCBjb2wubmFtZSkgfHxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBnZXRGaWVsZFZhbHVlKHJvd0RhdGEsIGNvbC5uYW1lKTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGVsc2UgZW1wdHlUZW1wbGF0ZVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+e3sgZ2V0RmllbGRWYWx1ZShyb3dEYXRhLCBjb2wubmFtZSkgfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgICAgICAgICAgICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwicGFnaW5hdG9ycmlnaHRcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBbYXR0ci5kYXRhLWhpZGRlbl09XCJsb2FkaW5nXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt7IHByaW50UmVjb3JkVG90YWxpemVyKCkgfX1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICAgICAgICAgICAgICA8L3AtdGFibGU+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG5cbiAgICAgICAgPG5nLXRlbXBsYXRlIHNUZW1wbGF0ZT1cImZvb3RlclwiPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggdy1mdWxsIGp1c3RpZnktZW5kXCI+XG4gICAgICAgICAgICAgICAgPHMtYnV0dG9uXG4gICAgICAgICAgICAgICAgICAgIFtpZF09XCJpZCArICctY2FuY2VsLWJ1dHRvbidcIlxuICAgICAgICAgICAgICAgICAgICB0eXBlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgICAgICAgICAgcHJpb3JpdHk9XCJsaW5rXCJcbiAgICAgICAgICAgICAgICAgICAgW2xhYmVsXT1cImxhYmVsT3B0aW9ucz8uY2FuY2VsTGFiZWwgfHwgJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jYW5jZWwnIHwgdHJhbnNsYXRlXCJcbiAgICAgICAgICAgICAgICAgICAgKGNsaWNrZWQpPVwiaGlkZURpYWxvZygpXCJcbiAgICAgICAgICAgICAgICAgICAgc1Rvb2x0aXA9XCIoQUxUICsgU0hJRlQgKyBDKVwiXG4gICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgIDwvcy1idXR0b24+XG4gICAgICAgICAgICAgICAgPHMtYnV0dG9uXG4gICAgICAgICAgICAgICAgICAgIFtpZF09XCJpZCArICctc2VsZWN0LWJ1dHRvbidcIlxuICAgICAgICAgICAgICAgICAgICB0eXBlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgICAgICAgICAgW2xhYmVsXT1cImxhYmVsT3B0aW9ucz8uc2VsZWN0TGFiZWwgfHwgJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5zZWxlY3QnIHwgdHJhbnNsYXRlXCJcbiAgICAgICAgICAgICAgICAgICAgKGNsaWNrZWQpPVwic2VsZWN0KClcIlxuICAgICAgICAgICAgICAgICAgICBzVG9vbHRpcD1cIihBTFQgKyBTSElGVCArIFMpXCJcbiAgICAgICAgICAgICAgICAgICAgW2Rpc2FibGVkXT1cIiFzZWxlY3RlZC5sZW5ndGhcIlxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8L3MtYnV0dG9uPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgfVxuPC9zLWRpYWxvZz5cblxuPG5nLXRlbXBsYXRlICNlbXB0eVRlbXBsYXRlPlxuICAgIDxzcGFuIGNsYXNzPVwic2RzLWVtcHR5LXZhbHVlXCI+XG4gICAgICAgIHt7IGxhYmVsT3B0aW9ucz8uZW1wdHlGaWVsZExhYmVsIHx8ICdwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMubm90X2luZm9ybWVkJyB8IHRyYW5zbGF0ZSB9fVxuICAgIDwvc3Bhbj5cbjwvbmctdGVtcGxhdGU+XG4iXX0=
|