@seniorsistemas/angular-components 17.25.9-bugfix-sds-288-93142a55 → 17.25.9-feature-sds-110-6832574a
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/package.json +3 -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/package.json +3 -0
- package/alert/public-api.d.ts +2 -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/package.json +3 -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 +46 -0
- package/bignumber-input/lib/bignumber-input/bignumber-input.module.d.ts +8 -0
- package/bignumber-input/package.json +3 -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/package.json +3 -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 +12 -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/package.json +3 -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/package.json +3 -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 +22 -0
- package/card/lib/card/card.module.d.ts +9 -0
- package/card/package.json +3 -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/package.json +3 -0
- package/chat/public-api.d.ts +3 -0
- package/checkbox/index.d.ts +5 -0
- package/checkbox/lib/checkbox/checkbox.component.d.ts +21 -0
- package/checkbox/lib/checkbox/checkbox.module.d.ts +9 -0
- package/checkbox/lib/checkbox/models/checkbox-state.d.ts +7 -0
- package/checkbox/package.json +3 -0
- package/checkbox/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/package.json +3 -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 +30 -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 +32 -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 +26 -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/package.json +3 -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/package.json +3 -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/package.json +3 -0
- package/common/public-api.d.ts +5 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -0
- package/custom-fields/public-api.d.ts +3 -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 +80 -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 +31 -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 +95 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/lookup-field.d.ts +95 -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 +39 -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/text-area-field.d.ts +20 -0
- package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-ia-field.d.ts +22 -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 +17 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/currency/currency-field.component.d.ts +659 -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/text/text-field.component.d.ts +23 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/text-area/text-area-field.component.d.ts +15 -0
- package/dynamic-form/lib/dynamic-form/form-field/fields/text-area-ia/text-area-ia-field.component.d.ts +11 -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/package.json +3 -0
- package/dynamic-form/public-api.d.ts +19 -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/package.json +3 -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/package.json +3 -0
- package/empty-state/public-api.d.ts +3 -0
- package/fesm2022/seniorsistemas-angular-components-accordion.mjs +244 -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-badge.mjs +70 -0
- package/fesm2022/seniorsistemas-angular-components-badge.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-bignumber-input.mjs +176 -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 +135 -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 +93 -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.mjs +151 -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 +1442 -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-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 +783 -0
- package/fesm2022/seniorsistemas-angular-components-custom-fields.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs +3741 -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-file-upload.mjs +333 -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 +72 -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 +243 -0
- package/fesm2022/seniorsistemas-angular-components-ia-insight.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-image-cropper.mjs +268 -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-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 +168 -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 +321 -0
- package/fesm2022/seniorsistemas-angular-components-object-card.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-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-shared.mjs +82 -0
- package/fesm2022/seniorsistemas-angular-components-shared.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-sidebar.mjs +118 -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-split-button.mjs +86 -0
- package/fesm2022/seniorsistemas-angular-components-split-button.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 +953 -0
- package/fesm2022/seniorsistemas-angular-components-table.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-template.mjs +46 -0
- package/fesm2022/seniorsistemas-angular-components-template.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-text-area-ia.mjs +248 -0
- package/fesm2022/seniorsistemas-angular-components-text-area-ia.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 +915 -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 +387 -0
- package/fesm2022/seniorsistemas-angular-components-tooltip.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-utils.mjs +59 -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 +333 -0
- package/fesm2022/seniorsistemas-angular-components.mjs.map +1 -0
- package/file-upload/index.d.ts +5 -0
- package/file-upload/lib/file-upload/file-upload.component.d.ts +79 -0
- package/file-upload/lib/file-upload/file-upload.module.d.ts +12 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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 +10 -0
- package/grid-menu/lib/grid-menu/grid-menu.component.d.ts +8 -0
- package/grid-menu/lib/grid-menu/grid-menu.module.d.ts +9 -0
- package/grid-menu/lib/grid-menu/types/grid-menu-item.d.ts +6 -0
- package/grid-menu/package.json +3 -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/package.json +3 -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 +19 -0
- package/ia-insight/lib/ia-insight/ia-insight.component.d.ts +27 -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 +9 -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/package.json +3 -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 +44 -0
- package/image-cropper/lib/image-cropper/image-cropper.module.d.ts +12 -0
- package/image-cropper/lib/image-cropper/image-cropper.service.d.ts +42 -0
- package/image-cropper/package.json +3 -0
- package/image-cropper/public-api.d.ts +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -0
- package/inline-edit/public-api.d.ts +4 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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 +45 -0
- package/number-input/lib/number-input/number-input.module.d.ts +11 -0
- package/number-input/package.json +3 -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/package.json +3 -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 +33 -0
- package/object-card/lib/object-card/object-card.module.d.ts +14 -0
- package/object-card/package.json +3 -0
- package/object-card/public-api.d.ts +4 -0
- package/package.json +549 -42
- 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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -0
- package/progressbar/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/package.json +3 -0
- package/rating-scale/public-api.d.ts +3 -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/package.json +3 -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/package.json +3 -0
- package/shared/public-api.d.ts +6 -0
- package/sidebar/index.d.ts +5 -0
- package/sidebar/lib/sidebar/sidebar.component.d.ts +29 -0
- package/sidebar/lib/sidebar/sidebar.module.d.ts +10 -0
- package/sidebar/package.json +3 -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/package.json +3 -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/package.json +3 -0
- package/slider/public-api.d.ts +2 -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/package.json +3 -0
- package/split-button/public-api.d.ts +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -0
- package/structure/public-api.d.ts +4 -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/package.json +3 -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/package.json +3 -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/package.json +3 -0
- package/table-header/public-api.d.ts +2 -0
- package/tailwind.css +711 -0
- package/template/index.d.ts +5 -0
- package/template/lib/template/template.directive.d.ts +9 -0
- package/template/lib/template/template.module.d.ts +8 -0
- package/template/package.json +3 -0
- package/template/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 +40 -0
- package/text-area-ia/lib/text-area-ia/text-area-ia.module.d.ts +13 -0
- package/text-area-ia/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -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/package.json +3 -0
- package/tooltip/public-api.d.ts +5 -0
- package/utils/index.d.ts +5 -2
- package/utils/lib/utils/utils.d.ts +25 -0
- package/utils/package.json +3 -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/package.json +3 -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 -22972
- 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/accordion/accordion.component.d.ts +0 -18
- 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/index.d.ts +0 -2
- package/components/bignumber-input/number-input.directive.d.ts +0 -28
- package/components/bignumber-input/number-input.module.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 -19
- 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-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 -26
- package/components/code-editor/code-editor.module.d.ts +0 -2
- package/components/code-editor/core/facades/core-facade.d.ts +0 -32
- 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 -26
- 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 -20
- 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 -12
- package/components/dynamic-form/components/fields/text-area-ia/text-area-ia-field.component.d.ts +0 -27
- package/components/dynamic-form/components/grid/row/row.component.d.ts +0 -12
- package/components/dynamic-form/components/lookup/lookup.component.d.ts +0 -184
- 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 -92
- 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 -20
- package/components/dynamic-form/configurations/fields/text-area-ia-field.d.ts +0 -22
- package/components/dynamic-form/configurations/fields/text-field.d.ts +0 -41
- package/components/dynamic-form/configurations/form-field.d.ts +0 -188
- 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/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 -7
- package/components/grid-menu/grid-menu.component.d.ts +0 -5
- 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 -6
- 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 -16
- package/components/ia-insight/ia-insight.component.d.ts +0 -24
- 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 -9
- 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 -71
- 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 -42
- 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 -29
- 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/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 -2
- 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-ia/index.d.ts +0 -2
- package/components/text-area-ia/text-area-ia.component.d.ts +0 -39
- 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/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 -59
- package/components/tooltip/tooltip.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 -24
- 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/accordion/accordion.component.js +0 -90
- 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/index.js +0 -3
- package/esm2015/components/bignumber-input/number-input.directive.js +0 -132
- package/esm2015/components/bignumber-input/number-input.module.js +0 -15
- 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 -58
- 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 -110
- package/esm2015/components/code-editor/code-editor.module.js +0 -24
- package/esm2015/components/code-editor/core/facades/core-facade.js +0 -85
- 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 -97
- package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/editor-languages.js +0 -15
- 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 -5
- 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 -76
- 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 -29
- package/esm2015/components/dynamic-form/components/fields/text-area-ia/text-area-ia-field.component.js +0 -88
- package/esm2015/components/dynamic-form/components/grid/row/row.component.js +0 -77
- package/esm2015/components/dynamic-form/components/lookup/lookup.component.js +0 -577
- 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 -32
- 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 -39
- 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 -12
- package/esm2015/components/dynamic-form/configurations/fields/text-area-ia-field.js +0 -13
- 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 -187
- 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/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 -36
- package/esm2015/components/grid-menu/grid-menu.component.js +0 -22
- package/esm2015/components/grid-menu/grid-menu.module.js +0 -16
- 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 -82
- package/esm2015/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.js +0 -50
- package/esm2015/components/ia-insight/ia-insight.component.js +0 -68
- 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 -72
- 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 -142
- 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 -141
- 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/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 -12
- 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-ia/index.js +0 -3
- package/esm2015/components/text-area-ia/text-area-ia.component.js +0 -128
- 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 -350
- package/esm2015/components/tooltip/tooltip.module.js +0 -19
- 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 -39
- 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 -328
- package/esm2015/public-api.js +0 -5
- package/esm2015/seniorsistemas-angular-components.js +0 -115
- 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/accordion/accordion.component.js +0 -93
- 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/index.js +0 -3
- package/esm5/components/bignumber-input/number-input.directive.js +0 -137
- package/esm5/components/bignumber-input/number-input.module.js +0 -18
- 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 -60
- 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 -121
- package/esm5/components/code-editor/code-editor.module.js +0 -27
- package/esm5/components/code-editor/core/facades/core-facade.js +0 -96
- 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 -109
- package/esm5/components/code-editor/infra/cores/codemirror-6/languages/editor-languages.js +0 -19
- 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 -5
- 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 -80
- 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 -30
- package/esm5/components/dynamic-form/components/fields/text-area-ia/text-area-ia-field.component.js +0 -90
- package/esm5/components/dynamic-form/components/grid/row/row.component.js +0 -37
- package/esm5/components/dynamic-form/components/lookup/lookup.component.js +0 -590
- 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 -27
- 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 -43
- 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 -17
- package/esm5/components/dynamic-form/configurations/fields/text-area-ia-field.js +0 -18
- 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 -190
- 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/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 -47
- package/esm5/components/grid-menu/grid-menu.component.js +0 -27
- package/esm5/components/grid-menu/grid-menu.module.js +0 -19
- 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 -84
- package/esm5/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.js +0 -51
- package/esm5/components/ia-insight/ia-insight.component.js +0 -69
- 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 -72
- 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 -147
- 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 -154
- 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/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 -15
- 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-ia/index.js +0 -3
- package/esm5/components/text-area-ia/text-area-ia.component.js +0 -131
- 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 -358
- package/esm5/components/tooltip/tooltip.module.js +0 -22
- 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 -39
- 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 -328
- package/esm5/public-api.js +0 -5
- package/esm5/seniorsistemas-angular-components.js +0 -115
- 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 -20988
- package/fesm2015/seniorsistemas-angular-components.js.map +0 -1
- package/fesm5/seniorsistemas-angular-components.js +0 -22502
- package/fesm5/seniorsistemas-angular-components.js.map +0 -1
- package/locale/fallback.d.ts +0 -1
- package/public-api.d.ts +0 -4
- package/seniorsistemas-angular-components.d.ts +0 -114
- 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 → checkbox/lib}/checkbox/models/checkbox-data.d.ts +0 -0
- /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/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/{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 → tiered-menu/lib}/tiered-menu/utils.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
|
@@ -1,350 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { ApplicationRef, ComponentFactoryResolver, ComponentRef, Directive, ElementRef, EmbeddedViewRef, HostListener, Injector, Input, OnDestroy, OnInit, Renderer2, } from "@angular/core";
|
|
3
|
-
import { DebounceUtils } from "../utils/debouce";
|
|
4
|
-
import { getElementLeftoverContentAvailable, getElementPositionInfo, isMousePositionOutsideOfElement, isNullOrUndefined } from './../utils/utils';
|
|
5
|
-
import { MobileBehavior, TooltipEvent, TooltipPosition } from "./models";
|
|
6
|
-
import { TooltipComponent } from "./tooltip.component";
|
|
7
|
-
let TooltipDirective = class TooltipDirective {
|
|
8
|
-
constructor(elementRef, appRef, componentFactoryResolver, injector, debounceUtils, renderer) {
|
|
9
|
-
this.elementRef = elementRef;
|
|
10
|
-
this.appRef = appRef;
|
|
11
|
-
this.componentFactoryResolver = componentFactoryResolver;
|
|
12
|
-
this.injector = injector;
|
|
13
|
-
this.debounceUtils = debounceUtils;
|
|
14
|
-
this.renderer = renderer;
|
|
15
|
-
this.position = TooltipPosition.Top;
|
|
16
|
-
this.showDelay = 500;
|
|
17
|
-
this.tooltipEvent = TooltipEvent.Hover;
|
|
18
|
-
this.escape = false;
|
|
19
|
-
this.visible = true;
|
|
20
|
-
this.mobileBehavior = MobileBehavior.Pressing;
|
|
21
|
-
this.componentRef = null;
|
|
22
|
-
this.existFocusedInputRefTooltip = false;
|
|
23
|
-
this.boundOnWindowMouseMoveFunction = this.onWindowMouseMove.bind(this);
|
|
24
|
-
this.debounceCreateTooltipFunction = this.debounceUtils.debounceLeading(() => this._createTooltip(true, true));
|
|
25
|
-
}
|
|
26
|
-
ngOnInit() {
|
|
27
|
-
this.validatePosition();
|
|
28
|
-
this.updateTooltipVisibilityWhenFocusOnInput();
|
|
29
|
-
}
|
|
30
|
-
ngOnDestroy() {
|
|
31
|
-
this.destroy();
|
|
32
|
-
}
|
|
33
|
-
onWindowMouseMove(event) {
|
|
34
|
-
if (!this.componentRef) {
|
|
35
|
-
return;
|
|
36
|
-
}
|
|
37
|
-
const elementRect = this.elementRef.nativeElement.getBoundingClientRect();
|
|
38
|
-
const toolTipRect = this.tooltipDivElement.getBoundingClientRect();
|
|
39
|
-
const totalElementArea = {
|
|
40
|
-
top: Math.min(elementRect.top, toolTipRect.top),
|
|
41
|
-
right: Math.max(elementRect.right, toolTipRect.right),
|
|
42
|
-
left: Math.min(elementRect.left, toolTipRect.left),
|
|
43
|
-
bottom: Math.max(elementRect.bottom, toolTipRect.bottom),
|
|
44
|
-
};
|
|
45
|
-
if (isMousePositionOutsideOfElement(event, totalElementArea) && !this.existFocusedInputRefTooltip) {
|
|
46
|
-
this.destroy();
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* Manipula a visibilidade do tooltip quando houver uma referência de input.
|
|
51
|
-
*/
|
|
52
|
-
updateTooltipVisibilityWhenFocusOnInput() {
|
|
53
|
-
if (this.focusedInputRef) {
|
|
54
|
-
const inputFocus = this.focusedInputRef;
|
|
55
|
-
const icon = this.getIconFromFocusedInput();
|
|
56
|
-
this.renderer.listen(inputFocus, "focus", () => {
|
|
57
|
-
if (icon) {
|
|
58
|
-
this.existFocusedInputRefTooltip = true;
|
|
59
|
-
this._createTooltip(false, false);
|
|
60
|
-
}
|
|
61
|
-
});
|
|
62
|
-
this.renderer.listen(inputFocus, "blur", () => {
|
|
63
|
-
if (icon) {
|
|
64
|
-
this.removeTooltip(icon);
|
|
65
|
-
this.destroy();
|
|
66
|
-
this.existFocusedInputRefTooltip = false;
|
|
67
|
-
}
|
|
68
|
-
});
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
/**
|
|
72
|
-
* Obtém o elemento do ícone associado ao label do input em focus.
|
|
73
|
-
* @returns O ícone do input em focus.
|
|
74
|
-
*/
|
|
75
|
-
getIconFromFocusedInput() {
|
|
76
|
-
return this.elementRef.nativeElement;
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
* Remove o tooltip associado ao ícone do input em focus.
|
|
80
|
-
* @param icon O ícone do input em focus.
|
|
81
|
-
*/
|
|
82
|
-
removeTooltip(icon) {
|
|
83
|
-
const tooltip = icon.querySelector(".tooltip");
|
|
84
|
-
if (tooltip) {
|
|
85
|
-
tooltip.remove();
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
// whenever the component with the tooltip is clicked I destroy the tooltip.
|
|
89
|
-
// whenever a key is pressed on the component with the tooltip I destroy the tooltip.
|
|
90
|
-
onClick() {
|
|
91
|
-
if (this.tooltipEvent === TooltipEvent.Hover && !navigator.userAgent.match(/Android/i) && !navigator.userAgent.match(/iPhone/i)) {
|
|
92
|
-
this.destroy();
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
onFocus() {
|
|
96
|
-
if (this.tooltipEvent === TooltipEvent.Focus) {
|
|
97
|
-
this._createTooltip(true, true);
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
onBlur() {
|
|
101
|
-
if (this.tooltipEvent === TooltipEvent.Focus) {
|
|
102
|
-
this.destroy();
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
onMouseEnter() {
|
|
106
|
-
if (this.tooltipEvent === TooltipEvent.Hover) {
|
|
107
|
-
this.debounceCreateTooltipFunction();
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
onMouseLeave() {
|
|
111
|
-
if (this.tooltipEvent === TooltipEvent.Hover && !this.existFocusedInputRefTooltip) {
|
|
112
|
-
this.destroy();
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
onTouchStart() {
|
|
116
|
-
if (this.tooltipEvent === TooltipEvent.Hover) {
|
|
117
|
-
window.clearTimeout(this.touchTimeout);
|
|
118
|
-
const _delay = this.mobileBehavior === MobileBehavior.Pressing ? this.showDelay : 0;
|
|
119
|
-
this.touchTimeout = window.setTimeout(() => {
|
|
120
|
-
this._createTooltip(true, true);
|
|
121
|
-
}, _delay);
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
onTouchEnd() {
|
|
125
|
-
if (this.tooltipEvent === TooltipEvent.Hover) {
|
|
126
|
-
if (this.mobileBehavior === MobileBehavior.Pressing) {
|
|
127
|
-
window.clearTimeout(this.touchTimeout);
|
|
128
|
-
this.destroy();
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
validatePosition() {
|
|
133
|
-
const containsPosition = [TooltipPosition.Top, TooltipPosition.Right, TooltipPosition.Bottom, TooltipPosition.Left].includes(this.position);
|
|
134
|
-
if (!containsPosition) {
|
|
135
|
-
this.position = TooltipPosition.Top;
|
|
136
|
-
throw new Error(`Tooltip ${this.position} position is unexpected`);
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
getDomElement() {
|
|
140
|
-
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(TooltipComponent);
|
|
141
|
-
this.componentRef = componentFactory.create(this.injector);
|
|
142
|
-
this.appRef.attachView(this.componentRef.hostView);
|
|
143
|
-
return this.componentRef.hostView.rootNodes[0];
|
|
144
|
-
}
|
|
145
|
-
_createTooltip(useShowDelay = false, autoDestroy = true) {
|
|
146
|
-
var _a;
|
|
147
|
-
const hasText = ((_a = this.tooltip) === null || _a === void 0 ? void 0 : _a.length) > 0;
|
|
148
|
-
const hasComponentRef = this.componentRef !== null;
|
|
149
|
-
if (!hasText || hasComponentRef) {
|
|
150
|
-
return;
|
|
151
|
-
}
|
|
152
|
-
const domElement = this.getDomElement();
|
|
153
|
-
document.body.appendChild(domElement);
|
|
154
|
-
this.tooltipDivElement = domElement.querySelector(".tooltip");
|
|
155
|
-
this.setTooltipComponentProperties();
|
|
156
|
-
const _showDelay = useShowDelay ? this.showDelay : 0;
|
|
157
|
-
setTimeout(() => {
|
|
158
|
-
this.showTooltip();
|
|
159
|
-
}, _showDelay);
|
|
160
|
-
this.renderer.listen(window, "scroll", () => {
|
|
161
|
-
this.setTooltipPositionProperty();
|
|
162
|
-
});
|
|
163
|
-
if (autoDestroy && this.displayTime) {
|
|
164
|
-
setTimeout(() => {
|
|
165
|
-
this.destroy();
|
|
166
|
-
}, this.displayTime);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
showTooltip() {
|
|
170
|
-
if (this.componentRef !== null) {
|
|
171
|
-
this.componentRef.instance.visible = this.visible;
|
|
172
|
-
this.setTooltipPositionProperty();
|
|
173
|
-
window.addEventListener("mousemove", this.boundOnWindowMouseMoveFunction);
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
setTooltipPositionProperty() {
|
|
177
|
-
if (!this.componentRef) {
|
|
178
|
-
return;
|
|
179
|
-
}
|
|
180
|
-
const anchorSize = 5;
|
|
181
|
-
const { left, right } = this.elementRef.nativeElement.getBoundingClientRect();
|
|
182
|
-
const tooltipElementPosition = getElementPositionInfo(this.tooltipDivElement);
|
|
183
|
-
const elementLeftover = getElementLeftoverContentAvailable(this.elementRef.nativeElement);
|
|
184
|
-
const elementTriggerPosition = getElementPositionInfo(this.elementRef.nativeElement);
|
|
185
|
-
const isPositionHorizontal = [TooltipPosition.Left, TooltipPosition.Right].includes(this.position);
|
|
186
|
-
const distanceToBorders = isPositionHorizontal ? tooltipElementPosition.elementWidth : tooltipElementPosition.elementHorizontalCenter;
|
|
187
|
-
const canSetAtTop = elementLeftover.freeDistanceToTop > tooltipElementPosition.elementHeight;
|
|
188
|
-
const canSetAtLeft = elementLeftover.freeDistanceToLeft > distanceToBorders;
|
|
189
|
-
const canSetAtRight = elementLeftover.freeDistanceToRight > distanceToBorders;
|
|
190
|
-
const canSetAtBottom = elementLeftover.freeDistanceToBottom > tooltipElementPosition.elementHeight;
|
|
191
|
-
const topVertical = elementTriggerPosition.top + elementTriggerPosition.elementVerticalCenter;
|
|
192
|
-
const checkTopPosition = () => {
|
|
193
|
-
return canSetAtTop && canSetAtLeft && canSetAtRight;
|
|
194
|
-
};
|
|
195
|
-
const checkBottomPosition = () => {
|
|
196
|
-
return canSetAtBottom && canSetAtLeft && canSetAtRight;
|
|
197
|
-
};
|
|
198
|
-
const checkLeftPosition = () => {
|
|
199
|
-
return canSetAtLeft && canSetAtTop && canSetAtBottom;
|
|
200
|
-
};
|
|
201
|
-
const checkRightPosition = () => {
|
|
202
|
-
return canSetAtRight && canSetAtTop && canSetAtBottom;
|
|
203
|
-
};
|
|
204
|
-
const setTopPosition = () => {
|
|
205
|
-
return {
|
|
206
|
-
left: left + (right - left) / 2,
|
|
207
|
-
top: elementTriggerPosition.top - anchorSize
|
|
208
|
-
};
|
|
209
|
-
};
|
|
210
|
-
const setBottomPosition = () => {
|
|
211
|
-
return {
|
|
212
|
-
left: left + (right - left) / 2,
|
|
213
|
-
top: elementTriggerPosition.top + elementTriggerPosition.elementHeight
|
|
214
|
-
};
|
|
215
|
-
};
|
|
216
|
-
const setLeftPosition = () => {
|
|
217
|
-
return {
|
|
218
|
-
left: left,
|
|
219
|
-
top: topVertical
|
|
220
|
-
};
|
|
221
|
-
};
|
|
222
|
-
const setRightPosition = () => {
|
|
223
|
-
return {
|
|
224
|
-
left: right,
|
|
225
|
-
top: topVertical
|
|
226
|
-
};
|
|
227
|
-
};
|
|
228
|
-
const positions = [
|
|
229
|
-
{
|
|
230
|
-
pos: TooltipPosition.Top,
|
|
231
|
-
check: checkTopPosition,
|
|
232
|
-
set: setTopPosition
|
|
233
|
-
},
|
|
234
|
-
{
|
|
235
|
-
pos: TooltipPosition.Bottom,
|
|
236
|
-
check: checkBottomPosition,
|
|
237
|
-
set: setBottomPosition
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
pos: TooltipPosition.Left,
|
|
241
|
-
check: checkLeftPosition,
|
|
242
|
-
set: setLeftPosition
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
pos: TooltipPosition.Right,
|
|
246
|
-
check: checkRightPosition,
|
|
247
|
-
set: setRightPosition
|
|
248
|
-
}
|
|
249
|
-
];
|
|
250
|
-
const positionDefined = positions.find((position) => position.pos === this.position);
|
|
251
|
-
let validPosition = positionDefined;
|
|
252
|
-
const canUseDefinedPosition = positionDefined.check();
|
|
253
|
-
if (canUseDefinedPosition) {
|
|
254
|
-
validPosition = positionDefined;
|
|
255
|
-
}
|
|
256
|
-
else if (!canUseDefinedPosition) {
|
|
257
|
-
const validAlternativePosition = positions.find((position) => position.check());
|
|
258
|
-
if (validAlternativePosition) {
|
|
259
|
-
validPosition = validAlternativePosition;
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
const _position = validPosition.set();
|
|
263
|
-
const positionLeft = _position.left;
|
|
264
|
-
const positionTop = _position.top;
|
|
265
|
-
this.componentRef.instance.left = Math.round(positionLeft);
|
|
266
|
-
this.componentRef.instance.top = Math.round(positionTop);
|
|
267
|
-
this.componentRef.instance.position = validPosition.pos;
|
|
268
|
-
}
|
|
269
|
-
setTooltipComponentProperties() {
|
|
270
|
-
if (this.componentRef !== null) {
|
|
271
|
-
this.componentRef.instance.tooltip = this.tooltip;
|
|
272
|
-
this.componentRef.instance.escape = this.escape;
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
destroy() {
|
|
276
|
-
if (!isNullOrUndefined(this.componentRef)) {
|
|
277
|
-
window.clearTimeout(this.showTimeout);
|
|
278
|
-
this.appRef.detachView(this.componentRef.hostView);
|
|
279
|
-
this.componentRef.destroy();
|
|
280
|
-
this.componentRef = null;
|
|
281
|
-
this.tooltipDivElement = null;
|
|
282
|
-
}
|
|
283
|
-
window.removeEventListener("mousemove", this.boundOnWindowMouseMoveFunction);
|
|
284
|
-
}
|
|
285
|
-
};
|
|
286
|
-
TooltipDirective.ctorParameters = () => [
|
|
287
|
-
{ type: ElementRef },
|
|
288
|
-
{ type: ApplicationRef },
|
|
289
|
-
{ type: ComponentFactoryResolver },
|
|
290
|
-
{ type: Injector },
|
|
291
|
-
{ type: DebounceUtils },
|
|
292
|
-
{ type: Renderer2 }
|
|
293
|
-
];
|
|
294
|
-
__decorate([
|
|
295
|
-
Input("sTooltip")
|
|
296
|
-
], TooltipDirective.prototype, "tooltip", void 0);
|
|
297
|
-
__decorate([
|
|
298
|
-
Input("tooltipPosition")
|
|
299
|
-
], TooltipDirective.prototype, "position", void 0);
|
|
300
|
-
__decorate([
|
|
301
|
-
Input()
|
|
302
|
-
], TooltipDirective.prototype, "showDelay", void 0);
|
|
303
|
-
__decorate([
|
|
304
|
-
Input()
|
|
305
|
-
], TooltipDirective.prototype, "displayTime", void 0);
|
|
306
|
-
__decorate([
|
|
307
|
-
Input()
|
|
308
|
-
], TooltipDirective.prototype, "tooltipEvent", void 0);
|
|
309
|
-
__decorate([
|
|
310
|
-
Input()
|
|
311
|
-
], TooltipDirective.prototype, "escape", void 0);
|
|
312
|
-
__decorate([
|
|
313
|
-
Input()
|
|
314
|
-
], TooltipDirective.prototype, "visible", void 0);
|
|
315
|
-
__decorate([
|
|
316
|
-
Input()
|
|
317
|
-
], TooltipDirective.prototype, "mobileBehavior", void 0);
|
|
318
|
-
__decorate([
|
|
319
|
-
Input()
|
|
320
|
-
], TooltipDirective.prototype, "focusedInputRef", void 0);
|
|
321
|
-
__decorate([
|
|
322
|
-
HostListener("click"),
|
|
323
|
-
HostListener("keydown")
|
|
324
|
-
], TooltipDirective.prototype, "onClick", null);
|
|
325
|
-
__decorate([
|
|
326
|
-
HostListener("focus")
|
|
327
|
-
], TooltipDirective.prototype, "onFocus", null);
|
|
328
|
-
__decorate([
|
|
329
|
-
HostListener("blur")
|
|
330
|
-
], TooltipDirective.prototype, "onBlur", null);
|
|
331
|
-
__decorate([
|
|
332
|
-
HostListener("mouseenter")
|
|
333
|
-
], TooltipDirective.prototype, "onMouseEnter", null);
|
|
334
|
-
__decorate([
|
|
335
|
-
HostListener("mouseleave"),
|
|
336
|
-
HostListener("wheel")
|
|
337
|
-
], TooltipDirective.prototype, "onMouseLeave", null);
|
|
338
|
-
__decorate([
|
|
339
|
-
HostListener("touchstart")
|
|
340
|
-
], TooltipDirective.prototype, "onTouchStart", null);
|
|
341
|
-
__decorate([
|
|
342
|
-
HostListener("touchend")
|
|
343
|
-
], TooltipDirective.prototype, "onTouchEnd", null);
|
|
344
|
-
TooltipDirective = __decorate([
|
|
345
|
-
Directive({
|
|
346
|
-
selector: "[sTooltip]",
|
|
347
|
-
})
|
|
348
|
-
], TooltipDirective);
|
|
349
|
-
export { TooltipDirective };
|
|
350
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9Ac2VuaW9yc2lzdGVtYXMvYW5ndWxhci1jb21wb25lbnRzLyIsInNvdXJjZXMiOlsiY29tcG9uZW50cy90b29sdGlwL3Rvb2x0aXAuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQ0gsY0FBYyxFQUNkLHdCQUF3QixFQUN4QixZQUFZLEVBQ1osU0FBUyxFQUNULFVBQVUsRUFDVixlQUFlLEVBQ2YsWUFBWSxFQUNaLFFBQVEsRUFDUixLQUFLLEVBQ0wsU0FBUyxFQUNULE1BQU0sRUFDTixTQUFTLEdBQ1osTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ2pELE9BQU8sRUFBRSxrQ0FBa0MsRUFBRSxzQkFBc0IsRUFBRSwrQkFBK0IsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ2xKLE9BQU8sRUFBRSxjQUFjLEVBQUUsWUFBWSxFQUFFLGVBQWUsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUN6RSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUt2RCxJQUFhLGdCQUFnQixHQUE3QixNQUFhLGdCQUFnQjtJQW9DekIsWUFDcUIsVUFBc0IsRUFDdEIsTUFBc0IsRUFDdEIsd0JBQWtELEVBQ2xELFFBQWtCLEVBQ2xCLGFBQTRCLEVBQzVCLFFBQW1CO1FBTG5CLGVBQVUsR0FBVixVQUFVLENBQVk7UUFDdEIsV0FBTSxHQUFOLE1BQU0sQ0FBZ0I7UUFDdEIsNkJBQXdCLEdBQXhCLHdCQUF3QixDQUEwQjtRQUNsRCxhQUFRLEdBQVIsUUFBUSxDQUFVO1FBQ2xCLGtCQUFhLEdBQWIsYUFBYSxDQUFlO1FBQzVCLGFBQVEsR0FBUixRQUFRLENBQVc7UUFyQ2pDLGFBQVEsR0FBb0IsZUFBZSxDQUFDLEdBQUcsQ0FBQztRQUdoRCxjQUFTLEdBQUcsR0FBRyxD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Q0FBQztJQUNyQixZQUFZLENBQUMsU0FBUyxDQUFDOytDQUt2QjtBQUdEO0lBREMsWUFBWSxDQUFDLE9BQU8sQ0FBQzsrQ0FLckI7QUFHRDtJQURDLFlBQVksQ0FBQyxNQUFNLENBQUM7OENBS3BCO0FBR0Q7SUFEQyxZQUFZLENBQUMsWUFBWSxDQUFDO29EQUsxQjtBQUlEO0lBRkMsWUFBWSxDQUFDLFlBQVksQ0FBQztJQUMxQixZQUFZLENBQUMsT0FBTyxDQUFDO29EQUtyQjtBQUdEO0lBREMsWUFBWSxDQUFDLFlBQVksQ0FBQztvREFTMUI7QUFHRDtJQURDLFlBQVksQ0FBQyxVQUFVLENBQUM7a0RBUXhCO0FBaExRLGdCQUFnQjtJQUg1QixTQUFTLENBQUM7UUFDUCxRQUFRLEVBQUUsWUFBWTtLQUN6QixDQUFDO0dBQ1csZ0JBQWdCLENBeVc1QjtTQXpXWSxnQkFBZ0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIEFwcGxpY2F0aW9uUmVmLFxuICAgIENvbXBvbmVudEZhY3RvcnlSZXNvbHZlcixcbiAgICBDb21wb25lbnRSZWYsXG4gICAgRGlyZWN0aXZlLFxuICAgIEVsZW1lbnRSZWYsXG4gICAgRW1iZWRkZWRWaWV3UmVmLFxuICAgIEhvc3RMaXN0ZW5lcixcbiAgICBJbmplY3RvcixcbiAgICBJbnB1dCxcbiAgICBPbkRlc3Ryb3ksXG4gICAgT25Jbml0LFxuICAgIFJlbmRlcmVyMixcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcbmltcG9ydCB7IERlYm91bmNlVXRpbHMgfSBmcm9tIFwiLi4vdXRpbHMvZGVib3VjZVwiO1xuaW1wb3J0IHsgZ2V0RWxlbWVudExlZnRvdmVyQ29udGVudEF2YWlsYWJsZSwgZ2V0RWxlbWVudFBvc2l0aW9uSW5mbywgaXNNb3VzZVBvc2l0aW9uT3V0c2lkZU9mRWxlbWVudCwgaXNOdWxsT3JVbmRlZmluZWQgfSBmcm9tICcuLy4uL3V0aWxzL3V0aWxzJztcbmltcG9ydCB7IE1vYmlsZUJlaGF2aW9yLCBUb29sdGlwRXZlbnQsIFRvb2x0aXBQb3NpdGlvbiB9IGZyb20gXCIuL21vZGVsc1wiO1xuaW1wb3J0IHsgVG9vbHRpcENvbXBvbmVudCB9IGZyb20gXCIuL3Rvb2x0aXAuY29tcG9uZW50XCI7XG5cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiBcIltzVG9vbHRpcF1cIixcbn0pXG5leHBvcnQgY2xhc3MgVG9vbHRpcERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95IHtcbiAgICBASW5wdXQoXCJzVG9vbHRpcFwiKVxuICAgIHB1YmxpYyB0b29sdGlwOiBzdHJpbmc7XG5cbiAgICBASW5wdXQoXCJ0b29sdGlwUG9zaXRpb25cIilcbiAgICBwdWJsaWMgcG9zaXRpb246IFRvb2x0aXBQb3NpdGlvbiA9IFRvb2x0aXBQb3NpdGlvbi5Ub3A7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBzaG93RGVsYXkgPSA1MDA7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBkaXNwbGF5VGltZTogbnVtYmVyO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgdG9vbHRpcEV2ZW50ID0gVG9vbHRpcEV2ZW50LkhvdmVyO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgZXNjYXBlID0gZmFsc2U7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyB2aXNpYmxlID0gdHJ1ZTtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIG1vYmlsZUJlaGF2aW9yID0gTW9iaWxlQmVoYXZpb3IuUHJlc3Npbmc7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBmb2N1c2VkSW5wdXRSZWY6IEhUTUxJbnB1dEVsZW1lbnQ7XG5cbiAgICBwcml2YXRlIGNvbXBvbmVudFJlZjogQ29tcG9uZW50UmVmPFRvb2x0aXBDb21wb25lbnQ+ID0gbnVsbDtcbiAgICBwcml2YXRlIHNob3dUaW1lb3V0PzogbnVtYmVyO1xuICAgIHByaXZhdGUgdG91Y2hUaW1lb3V0PzogbnVtYmVyO1xuICAgIHByaXZhdGUgdG9vbHRpcERpdkVsZW1lbnQ/OiBIVE1MRWxlbWVudDtcbiAgICBwcml2YXRlIHJlYWRvbmx5IGJvdW5kT25XaW5kb3dNb3VzZU1vdmVGdW5jdGlvbjogKGV2ZW50OiBNb3VzZUV2ZW50KSA9PiB2b2lkO1xuICAgIHByaXZhdGUgcmVhZG9ubHkgZGVib3VuY2VDcmVhdGVUb29sdGlwRnVuY3Rpb246ICgpID0+IHZvaWQ7XG4gICAgcHJpdmF0ZSBleGlzdEZvY3VzZWRJbnB1dFJlZlRvb2x0aXAgPSBmYWxzZTtcblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IGVsZW1lbnRSZWY6IEVsZW1lbnRSZWYsXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgYXBwUmVmOiBBcHBsaWNhdGlvblJlZixcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSBjb21wb25lbnRGYWN0b3J5UmVzb2x2ZXI6IENvbXBvbmVudEZhY3RvcnlSZXNvbHZlcixcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSBpbmplY3RvcjogSW5qZWN0b3IsXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgZGVib3VuY2VVdGlsczogRGVib3VuY2VVdGlscyxcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSByZW5kZXJlcjogUmVuZGVyZXIyXG4gICAgKSB7XG4gICAgICAgIHRoaXMuYm91bmRPbldpbmRvd01vdXNlTW92ZUZ1bmN0aW9uID0gdGhpcy5vbldpbmRvd01vdXNlTW92ZS5iaW5kKHRoaXMpO1xuICAgICAgICB0aGlzLmRlYm91bmNlQ3JlYXRlVG9vbHRpcEZ1bmN0aW9uID0gdGhpcy5kZWJvdW5jZVV0aWxzLmRlYm91bmNlTGVhZGluZygoKSA9PiB0aGlzLl9jcmVhdGVUb29sdGlwKHRydWUsIHRydWUpKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAgIHRoaXMudmFsaWRhdGVQb3NpdGlvbigpO1xuICAgICAgICB0aGlzLnVwZGF0ZVRvb2x0aXBWaXNpYmlsaXR5V2hlbkZvY3VzT25JbnB1dCgpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5kZXN0cm95KCk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBvbldpbmRvd01vdXNlTW92ZShldmVudDogTW91c2VFdmVudCkge1xuICAgICAgICBpZiAoIXRoaXMuY29tcG9uZW50UmVmKSB7XG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cbiAgICAgICAgY29uc3QgZWxlbWVudFJlY3QgPSB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5nZXRCb3VuZGluZ0NsaWVudFJlY3QoKTtcbiAgICAgICAgY29uc3QgdG9vbFRpcFJlY3QgPSB0aGlzLnRvb2x0aXBEaXZFbGVtZW50LmdldEJvdW5kaW5nQ2xpZW50UmVjdCgpO1xuXG4gICAgICAgIGNvbnN0IHRvdGFsRWxlbWVudEFyZWEgPSB7XG4gICAgICAgICAgICB0b3A6IE1hdGgubWluKGVsZW1lbnRSZWN0LnRvcCwgdG9vbFRpcFJlY3QudG9wKSxcbiAgICAgICAgICAgIHJpZ2h0OiBNYXRoLm1heChlbGVtZW50UmVjdC5yaWdodCwgdG9vbFRpcFJlY3QucmlnaHQpLFxuICAgICAgICAgICAgbGVmdDogTWF0aC5taW4oZWxlbWVudFJlY3QubGVmdCwgdG9vbFRpcFJlY3QubGVmdCksXG4gICAgICAgICAgICBib3R0b206IE1hdGgubWF4KGVsZW1lbnRSZWN0LmJvdHRvbSwgdG9vbFRpcFJlY3QuYm90dG9tKSxcbiAgICAgICAgfTtcblxuICAgICAgICBpZiAoaXNNb3VzZVBvc2l0aW9uT3V0c2lkZU9mRWxlbWVudChldmVudCwgdG90YWxFbGVtZW50QXJlYSkgJiYgIXRoaXMuZXhpc3RGb2N1c2VkSW5wdXRSZWZUb29sdGlwKSB7XG4gICAgICAgICAgICB0aGlzLmRlc3Ryb3koKTtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIC8qKlxuICAgICAqIE1hbmlwdWxhIGEgdmlzaWJpbGlkYWRlIGRvIHRvb2x0aXAgcXVhbmRvIGhvdXZlciB1bWEgcmVmZXLDqm5jaWEgZGUgaW5wdXQuXG4gICAgICovXG4gICAgcHJpdmF0ZSB1cGRhdGVUb29sdGlwVmlzaWJpbGl0eVdoZW5Gb2N1c09uSW5wdXQoKSB7XG4gICAgICAgIGlmICh0aGlzLmZvY3VzZWRJbnB1dFJlZikge1xuICAgICAgICAgICAgY29uc3QgaW5wdXRGb2N1cyA9IHRoaXMuZm9jdXNlZElucHV0UmVmO1xuICAgICAgICAgICAgY29uc3QgaWNvbiA9IHRoaXMuZ2V0SWNvbkZyb21Gb2N1c2VkSW5wdXQoKTtcbiAgICAgICAgICAgIHRoaXMucmVuZGVyZXIubGlzdGVuKGlucHV0Rm9jdXMsIFwiZm9jdXNcIiwgKCkgPT4ge1xuICAgICAgICAgICAgICAgIGlmIChpY29uKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZXhpc3RGb2N1c2VkSW5wdXRSZWZUb29sdGlwID0gdHJ1ZTtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5fY3JlYXRlVG9vbHRpcChmYWxzZSwgZmFsc2UpXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSk7XG4gICAgICAgICAgICB0aGlzLnJlbmRlcmVyLmxpc3RlbihpbnB1dEZvY3VzLCBcImJsdXJcIiwgKCkgPT4ge1xuICAgICAgICAgICAgICAgIGlmIChpY29uKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMucmVtb3ZlVG9vbHRpcChpY29uKTtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5kZXN0cm95KCk7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZXhpc3RGb2N1c2VkSW5wdXRSZWZUb29sdGlwID0gZmFsc2U7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBPYnTDqW0gbyBlbGVtZW50byBkbyDDrWNvbmUgYXNzb2NpYWRvIGFvIGxhYmVsIGRvIGlucHV0IGVtIGZvY3VzLlxuICAgICAqIEByZXR1cm5zIE8gw61jb25lIGRvIGlucHV0IGVtIGZvY3VzLlxuICAgICAqL1xuICAgIHByaXZhdGUgZ2V0SWNvbkZyb21Gb2N1c2VkSW5wdXQoKTogSFRNTEVsZW1lbnQge1xuICAgICAgICByZXR1cm4gdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQ7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogUmVtb3ZlIG8gdG9vbHRpcCBhc3NvY2lhZG8gYW8gw61jb25lIGRvIGlucHV0IGVtIGZvY3VzLlxuICAgICAqIEBwYXJhbSBpY29uIE8gw61jb25lIGRvIGlucHV0IGVtIGZvY3VzLlxuICAgICAqL1xuICAgIHByaXZhdGUgcmVtb3ZlVG9vbHRpcChpY29uOiBIVE1MRWxlbWVudCk6IHZvaWQge1xuICAgICAgICBjb25zdCB0b29sdGlwID0gaWNvbi5xdWVyeVNlbGVjdG9yKFwiLnRvb2x0aXBcIikgYXMgSFRNTEVsZW1lbnQ7XG4gICAgICAgIGlmICh0b29sdGlwKSB7XG4gICAgICAgICAgICB0b29sdGlwLnJlbW92ZSgpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgLy8gd2hlbmV2ZXIgdGhlIGNvbXBvbmVudCB3aXRoIHRoZSB0b29sdGlwIGlzIGNsaWNrZWQgSSBkZXN0cm95IHRoZSB0b29sdGlwLlxuICAgIC8vIHdoZW5ldmVyIGEga2V5IGlzIHByZXNzZWQgb24gdGhlIGNvbXBvbmVudCB3aXRoIHRoZSB0b29sdGlwIEkgZGVzdHJveSB0aGUgdG9vbHRpcC5cbiAgICBASG9zdExpc3RlbmVyKFwiY2xpY2tcIilcbiAgICBASG9zdExpc3RlbmVyKFwia2V5ZG93blwiKVxuICAgIHB1YmxpYyBvbkNsaWNrKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy50b29sdGlwRXZlbnQgPT09IFRvb2x0aXBFdmVudC5Ib3ZlciAmJiAhbmF2aWdhdG9yLnVzZXJBZ2VudC5tYXRjaCgvQW5kcm9pZC9pKSAmJiAhbmF2aWdhdG9yLnVzZXJBZ2VudC5tYXRjaCgvaVBob25lL2kpKSB7XG4gICAgICAgICAgICB0aGlzLmRlc3Ryb3koKTtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIEBIb3N0TGlzdGVuZXIoXCJmb2N1c1wiKVxuICAgIHB1YmxpYyBvbkZvY3VzKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy50b29sdGlwRXZlbnQgPT09IFRvb2x0aXBFdmVudC5Gb2N1cykge1xuICAgICAgICAgICAgdGhpcy5fY3JlYXRlVG9vbHRpcCh0cnVlLCB0cnVlKVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgQEhvc3RMaXN0ZW5lcihcImJsdXJcIilcbiAgICBwdWJsaWMgb25CbHVyKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy50b29sdGlwRXZlbnQgPT09IFRvb2x0aXBFdmVudC5Gb2N1cykge1xuICAgICAgICAgICAgdGhpcy5kZXN0cm95KCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBASG9zdExpc3RlbmVyKFwibW91c2VlbnRlclwiKVxuICAgIHB1YmxpYyBvbk1vdXNlRW50ZXIoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLnRvb2x0aXBFdmVudCA9PT0gVG9vbHRpcEV2ZW50LkhvdmVyKSB7XG4gICAgICAgICAgICB0aGlzLmRlYm91bmNlQ3JlYXRlVG9vbHRpcEZ1bmN0aW9uKCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBASG9zdExpc3RlbmVyKFwibW91c2VsZWF2ZVwiKVxuICAgIEBIb3N0TGlzdGVuZXIoXCJ3aGVlbFwiKVxuICAgIHB1YmxpYyBvbk1vdXNlTGVhdmUoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLnRvb2x0aXBFdmVudCA9PT0gVG9vbHRpcEV2ZW50LkhvdmVyICYmICF0aGlzLmV4aXN0Rm9jdXNlZElucHV0UmVmVG9vbHRpcCkge1xuICAgICAgICAgICAgdGhpcy5kZXN0cm95KCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBASG9zdExpc3RlbmVyKFwidG91Y2hzdGFydFwiKVxuICAgIHB1YmxpYyBvblRvdWNoU3RhcnQoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLnRvb2x0aXBFdmVudCA9PT0gVG9vbHRpcEV2ZW50LkhvdmVyKSB7XG4gICAgICAgICAgICB3aW5kb3cuY2xlYXJUaW1lb3V0KHRoaXMudG91Y2hUaW1lb3V0KTtcbiAgICAgICAgICAgIGNvbnN0IF9kZWxheSA9IHRoaXMubW9iaWxlQmVoYXZpb3IgPT09IE1vYmlsZUJlaGF2aW9yLlByZXNzaW5nID8gdGhpcy5zaG93RGVsYXkgOiAwXG4gICAgICAgICAgICB0aGlzLnRvdWNoVGltZW91dCA9IHdpbmRvdy5zZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgICAgICAgICAgICB0aGlzLl9jcmVhdGVUb29sdGlwKHRydWUsIHRydWUpO1xuICAgICAgICAgICAgfSwgX2RlbGF5KVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgQEhvc3RMaXN0ZW5lcihcInRvdWNoZW5kXCIpXG4gICAgcHVibGljIG9uVG91Y2hFbmQoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLnRvb2x0aXBFdmVudCA9PT0gVG9vbHRpcEV2ZW50LkhvdmVyKSB7XG4gICAgICAgICAgICBpZiAodGhpcy5tb2JpbGVCZWhhdmlvciA9PT0gTW9iaWxlQmVoYXZpb3IuUHJlc3NpbmcpIHtcbiAgICAgICAgICAgICAgICB3aW5kb3cuY2xlYXJUaW1lb3V0KHRoaXMudG91Y2hUaW1lb3V0KTtcbiAgICAgICAgICAgICAgICB0aGlzLmRlc3Ryb3koKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cblxuICAgIHByaXZhdGUgdmFsaWRhdGVQb3NpdGlvbigpIHtcbiAgICAgICAgY29uc3QgY29udGFpbnNQb3NpdGlvbiA9IFtUb29sdGlwUG9zaXRpb24uVG9wLCBUb29sdGlwUG9zaXRpb24uUmlnaHQsIFRvb2x0aXBQb3NpdGlvbi5Cb3R0b20sIFRvb2x0aXBQb3NpdGlvbi5MZWZ0XS5pbmNsdWRlcyhcbiAgICAgICAgICAgIHRoaXMucG9zaXRpb25cbiAgICAgICAgKTtcblxuICAgICAgICBpZiAoIWNvbnRhaW5zUG9zaXRpb24pIHtcbiAgICAgICAgICAgIHRoaXMucG9zaXRpb24gPSBUb29sdGlwUG9zaXRpb24uVG9wO1xuICAgICAgICAgICAgdGhyb3cgbmV3IEVycm9yKGBUb29sdGlwICR7dGhpcy5wb3NpdGlvbn0gcG9zaXRpb24gaXMgdW5leHBlY3RlZGApO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBnZXREb21FbGVtZW50KCk6IEhUTUxFbGVtZW50IHtcbiAgICAgICAgY29uc3QgY29tcG9uZW50RmFjdG9yeSA9IHRoaXMuY29tcG9uZW50RmFjdG9yeVJlc29sdmVyLnJlc29sdmVDb21wb25lbnRGYWN0b3J5KFRvb2x0aXBDb21wb25lbnQpO1xuICAgICAgICB0aGlzLmNvbXBvbmVudFJlZiA9IGNvbXBvbmVudEZhY3RvcnkuY3JlYXRlKHRoaXMuaW5qZWN0b3IpO1xuICAgICAgICB0aGlzLmFwcFJlZi5hdHRhY2hWaWV3KHRoaXMuY29tcG9uZW50UmVmLmhvc3RWaWV3KTtcbiAgICAgICAgcmV0dXJuICh0aGlzLmNvbXBvbmVudFJlZi5ob3N0VmlldyBhcyBFbWJlZGRlZFZpZXdSZWY8YW55Pikucm9vdE5vZGVzWzBdIGFzIEhUTUxFbGVtZW50O1xuICAgIH1cblxuICAgIHByaXZhdGUgX2NyZWF0ZVRvb2x0aXAodXNlU2hvd0RlbGF5ID0gZmFsc2UsIGF1dG9EZXN0cm95ID0gdHJ1ZSkge1xuICAgICAgICBjb25zdCBoYXNUZXh0ID0gdGhpcy50b29sdGlwPy5sZW5ndGggPiAwO1xuICAgICAgICBjb25zdCBoYXNDb21wb25lbnRSZWYgPSB0aGlzLmNvbXBvbmVudFJlZiAhPT0gbnVsbDtcbiAgICAgICAgaWYgKCFoYXNUZXh0IHx8IGhhc0NvbXBvbmVudFJlZikge1xuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB9XG4gICAgICAgIGNvbnN0IGRvbUVsZW1lbnQgPSB0aGlzLmdldERvbUVsZW1lbnQoKTtcbiAgICAgICAgZG9jdW1lbnQuYm9keS5hcHBlbmRDaGlsZChkb21FbGVtZW50KTtcbiAgICAgICAgdGhpcy50b29sdGlwRGl2RWxlbWVudCA9IGRvbUVsZW1lbnQucXVlcnlTZWxlY3RvcihcIi50b29sdGlwXCIpO1xuICAgICAgICB0aGlzLnNldFRvb2x0aXBDb21wb25lbnRQcm9wZXJ0aWVzKCk7XG4gICAgICAgIGNvbnN0IF9zaG93RGVsYXkgPSB1c2VTaG93RGVsYXkgPyB0aGlzLnNob3dEZWxheSA6IDA7XG4gICAgICAgIHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAgICAgdGhpcy5zaG93VG9vbHRpcCgpXG4gICAgICAgIH0sIF9zaG93RGVsYXkpXG5cblxuXG4gICAgICAgIHRoaXMucmVuZGVyZXIubGlzdGVuKHdpbmRvdywgXCJzY3JvbGxcIiwgKCkgPT4ge1xuICAgICAgICAgICAgdGhpcy5zZXRUb29sdGlwUG9zaXRpb25Qcm9wZXJ0eSgpO1xuICAgICAgICB9KTtcblxuICAgICAgICBpZiAoYXV0b0Rlc3Ryb3kgJiYgdGhpcy5kaXNwbGF5VGltZSkge1xuICAgICAgICAgICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgdGhpcy5kZXN0cm95KCk7XG4gICAgICAgICAgICB9LCB0aGlzLmRpc3BsYXlUaW1lKVxuICAgICAgICB9XG5cbiAgICB9XG5cbiAgICBwcml2YXRlIHNob3dUb29sdGlwKCkge1xuICAgICAgICBpZiAodGhpcy5jb21wb25lbnRSZWYgIT09IG51bGwpIHtcbiAgICAgICAgICAgIHRoaXMuY29tcG9uZW50UmVmLmluc3RhbmNlLnZpc2libGUgPSB0aGlzLnZpc2libGU7XG5cbiAgICAgICAgICAgIHRoaXMuc2V0VG9vbHRpcFBvc2l0aW9uUHJvcGVydHkoKTtcblxuICAgICAgICAgICAgd2luZG93LmFkZEV2ZW50TGlzdGVuZXIoXCJtb3VzZW1vdmVcIiwgdGhpcy5ib3VuZE9uV2luZG93TW91c2VNb3ZlRnVuY3Rpb24pO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBzZXRUb29sdGlwUG9zaXRpb25Qcm9wZXJ0eSgpIHtcbiAgICAgICAgaWYgKCF0aGlzLmNvbXBvbmVudFJlZikge1xuICAgICAgICAgICAgcmV0dXJuXG4gICAgICAgIH1cbiAgICAgICAgY29uc3QgYW5jaG9yU2l6ZSA9IDU7XG4gICAgICAgIGNvbnN0IHsgbGVmdCwgcmlnaHQgfSA9IHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LmdldEJvdW5kaW5nQ2xpZW50UmVjdCgpO1xuXG4gICAgICAgIGNvbnN0IHRvb2x0aXBFbGVtZW50UG9zaXRpb24gPSBnZXRFbGVtZW50UG9zaXRpb25JbmZvKHRoaXMudG9vbHRpcERpdkVsZW1lbnQpO1xuICAgICAgICBjb25zdCBlbGVtZW50TGVmdG92ZXIgPSBnZXRFbGVtZW50TGVmdG92ZXJDb250ZW50QXZhaWxhYmxlKHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50KTtcbiAgICAgICAgY29uc3QgZWxlbWVudFRyaWdnZXJQb3NpdGlvbiA9IGdldEVsZW1lbnRQb3NpdGlvbkluZm8odGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQpO1xuICAgICAgICBjb25zdCBpc1Bvc2l0aW9uSG9yaXpvbnRhbCA9IFtUb29sdGlwUG9zaXRpb24uTGVmdCwgVG9vbHRpcFBvc2l0aW9uLlJpZ2h0XS5pbmNsdWRlcyh0aGlzLnBvc2l0aW9uKTtcbiAgICAgICAgY29uc3QgZGlzdGFuY2VUb0JvcmRlcnMgPSBpc1Bvc2l0aW9uSG9yaXpvbnRhbCA/IHRvb2x0aXBFbGVtZW50UG9zaXRpb24uZWxlbWVudFdpZHRoIDogdG9vbHRpcEVsZW1lbnRQb3NpdGlvbi5lbGVtZW50SG9yaXpvbnRhbENlbnRlcjtcbiAgICAgICAgY29uc3QgY2FuU2V0QXRUb3AgPSBlbGVtZW50TGVmdG92ZXIuZnJlZURpc3RhbmNlVG9Ub3AgPiB0b29sdGlwRWxlbWVudFBvc2l0aW9uLmVsZW1lbnRIZWlnaHQ7XG4gICAgICAgIGNvbnN0IGNhblNldEF0TGVmdCA9IGVsZW1lbnRMZWZ0b3Zlci5mcmVlRGlzdGFuY2VUb0xlZnQgPiBkaXN0YW5jZVRvQm9yZGVycztcbiAgICAgICAgY29uc3QgY2FuU2V0QXRSaWdodCA9IGVsZW1lbnRMZWZ0b3Zlci5mcmVlRGlzdGFuY2VUb1JpZ2h0ID4gZGlzdGFuY2VUb0JvcmRlcnM7XG4gICAgICAgIGNvbnN0IGNhblNldEF0Qm90dG9tID0gZWxlbWVudExlZnRvdmVyLmZyZWVEaXN0YW5jZVRvQm90dG9tID4gdG9vbHRpcEVsZW1lbnRQb3NpdGlvbi5lbGVtZW50SGVpZ2h0O1xuICAgICAgICBjb25zdCB0b3BWZXJ0aWNhbCA9IGVsZW1lbnRUcmlnZ2VyUG9zaXRpb24udG9wICsgZWxlbWVudFRyaWdnZXJQb3NpdGlvbi5lbGVtZW50VmVydGljYWxDZW50ZXI7XG4gICAgICAgIGNvbnN0IGNoZWNrVG9wUG9zaXRpb24gPSAoKSA9PiB7XG4gICAgICAgICAgICByZXR1cm4gY2FuU2V0QXRUb3AgJiYgY2FuU2V0QXRMZWZ0ICYmIGNhblNldEF0UmlnaHQ7XG4gICAgICAgIH1cbiAgICAgICAgY29uc3QgY2hlY2tCb3R0b21Qb3NpdGlvbiA9ICgpID0+IHtcbiAgICAgICAgICAgIHJldHVybiBjYW5TZXRBdEJvdHRvbSAmJiBjYW5TZXRBdExlZnQgJiYgY2FuU2V0QXRSaWdodDtcbiAgICAgICAgfVxuICAgICAgICBjb25zdCBjaGVja0xlZnRQb3NpdGlvbiA9ICgpID0+IHtcbiAgICAgICAgICAgIHJldHVybiBjYW5TZXRBdExlZnQgJiYgY2FuU2V0QXRUb3AgJiYgY2FuU2V0QXRCb3R0b207XG4gICAgICAgIH1cblxuICAgICAgICBjb25zdCBjaGVja1JpZ2h0UG9zaXRpb24gPSAoKSA9PiB7XG4gICAgICAgICAgICByZXR1cm4gY2FuU2V0QXRSaWdodCAmJiBjYW5TZXRBdFRvcCAmJiBjYW5TZXRBdEJvdHRvbTtcbiAgICAgICAgfVxuXG4gICAgICAgIGNvbnN0IHNldFRvcFBvc2l0aW9uID0gKCk6IHsgbGVmdDogbnVtYmVyLCB0b3A6IG51bWJlciB9ID0+IHtcbiAgICAgICAgICAgIHJldHVybiB7XG4gICAgICAgICAgICAgICAgbGVmdDogbGVmdCArIChyaWdodCAtIGxlZnQpIC8gMixcbiAgICAgICAgICAgICAgICB0b3A6IGVsZW1lbnRUcmlnZ2VyUG9zaXRpb24udG9wIC0gYW5jaG9yU2l6ZVxuICAgICAgICAgICAgfVxuICAgICAgICB9XG5cbiAgICAgICAgY29uc3Qgc2V0Qm90dG9tUG9zaXRpb24gPSAoKTogeyBsZWZ0OiBudW1iZXIsIHRvcDogbnVtYmVyIH0gPT4ge1xuICAgICAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgICAgICBsZWZ0OiBsZWZ0ICsgKHJpZ2h0IC0gbGVmdCkgLyAyLFxuICAgICAgICAgICAgICAgIHRvcDogZWxlbWVudFRyaWdnZXJQb3NpdGlvbi50b3AgKyBlbGVtZW50VHJpZ2dlclBvc2l0aW9uLmVsZW1lbnRIZWlnaHRcbiAgICAgICAgICAgIH07XG4gICAgICAgIH1cblxuICAgICAgICBjb25zdCBzZXRMZWZ0UG9zaXRpb24gPSAoKTogeyBsZWZ0OiBudW1iZXIsIHRvcDogbnVtYmVyIH0gPT4ge1xuICAgICAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgICAgICBsZWZ0OiBsZWZ0LFxuICAgICAgICAgICAgICAgIHRvcDogdG9wVmVydGljYWxcbiAgICAgICAgICAgIH07XG4gICAgICAgIH1cblxuICAgICAgICBjb25zdCBzZXRSaWdodFBvc2l0aW9uID0gKCk6IHsgbGVmdDogbnVtYmVyLCB0b3A6IG51bWJlciB9ID0+IHtcbiAgICAgICAgICAgIHJldHVybiB7XG4gICAgICAgICAgICAgICAgbGVmdDogcmlnaHQsXG4gICAgICAgICAgICAgICAgdG9wOiB0b3BWZXJ0aWNhbFxuICAgICAgICAgICAgfTtcbiAgICAgICAgfVxuXG4gICAgICAgIHR5cGUgUG9zaXRpb24gPSB7XG4gICAgICAgICAgICBwb3M6IFRvb2x0aXBQb3NpdGlvbixcbiAgICAgICAgICAgIGNoZWNrOiAoKSA9PiBib29sZWFuLFxuICAgICAgICAgICAgc2V0OiAoKSA9PiB7IGxlZnQ6IG51bWJlciwgdG9wOiBudW1iZXIgfVxuICAgICAgICB9XG5cbiAgICAgICAgY29uc3QgcG9zaXRpb25zOiBQb3NpdGlvbltdID0gW1xuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBvczogVG9vbHRpcFBvc2l0aW9uLlRvcCxcbiAgICAgICAgICAgICAgICBjaGVjazogY2hlY2tUb3BQb3NpdGlvbixcbiAgICAgICAgICAgICAgICBzZXQ6IHNldFRvcFBvc2l0aW9uXG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBvczogVG9vbHRpcFBvc2l0aW9uLkJvdHRvbSxcbiAgICAgICAgICAgICAgICBjaGVjazogY2hlY2tCb3R0b21Qb3NpdGlvbixcbiAgICAgICAgICAgICAgICBzZXQ6IHNldEJvdHRvbVBvc2l0aW9uXG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBvczogVG9vbHRpcFBvc2l0aW9uLkxlZnQsXG4gICAgICAgICAgICAgICAgY2hlY2s6IGNoZWNrTGVmdFBvc2l0aW9uLFxuICAgICAgICAgICAgICAgIHNldDogc2V0TGVmdFBvc2l0aW9uXG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgIHBvczogVG9vbHRpcFBvc2l0aW9uLlJpZ2h0LFxuICAgICAgICAgICAgICAgIGNoZWNrOiBjaGVja1JpZ2h0UG9zaXRpb24sXG4gICAgICAgICAgICAgICAgc2V0OiBzZXRSaWdodFBvc2l0aW9uXG5cbiAgICAgICAgICAgIH1cbiAgICAgICAgXTtcblxuICAgICAgICBjb25zdCBwb3NpdGlvbkRlZmluZWQgPSBwb3NpdGlvbnMuZmluZCgocG9zaXRpb24pID0+IHBvc2l0aW9uLnBvcyA9PT0gdGhpcy5wb3NpdGlvbik7XG4gICAgICAgIGxldCB2YWxpZFBvc2l0aW9uOiBQb3NpdGlvbiA9IHBvc2l0aW9uRGVmaW5lZDtcbiAgICAgICAgY29uc3QgY2FuVXNlRGVmaW5lZFBvc2l0aW9uID0gcG9zaXRpb25EZWZpbmVkLmNoZWNrKCk7XG4gICAgICAgIGlmIChjYW5Vc2VEZWZpbmVkUG9zaXRpb24pIHtcbiAgICAgICAgICAgIHZhbGlkUG9zaXRpb24gPSBwb3NpdGlvbkRlZmluZWQ7XG4gICAgICAgIH0gZWxzZSBpZiAoIWNhblVzZURlZmluZWRQb3NpdGlvbikge1xuICAgICAgICAgICAgY29uc3QgdmFsaWRBbHRlcm5hdGl2ZVBvc2l0aW9uID0gcG9zaXRpb25zLmZpbmQoKHBvc2l0aW9uKSA9PiBwb3NpdGlvbi5jaGVjaygpKTtcbiAgICAgICAgICAgIGlmICh2YWxpZEFsdGVybmF0aXZlUG9zaXRpb24pIHtcbiAgICAgICAgICAgICAgICB2YWxpZFBvc2l0aW9uID0gdmFsaWRBbHRlcm5hdGl2ZVBvc2l0aW9uO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgIGNvbnN0IF9wb3NpdGlvbiA9IHZhbGlkUG9zaXRpb24uc2V0KCk7XG4gICAgICAgIGNvbnN0IHBvc2l0aW9uTGVmdCA9IF9wb3NpdGlvbi5sZWZ0O1xuICAgICAgICBjb25zdCBwb3NpdGlvblRvcCA9IF9wb3NpdGlvbi50b3A7XG4gICAgICAgIHRoaXMuY29tcG9uZW50UmVmLmluc3RhbmNlLmxlZnQgPSBNYXRoLnJvdW5kKHBvc2l0aW9uTGVmdCk7XG4gICAgICAgIHRoaXMuY29tcG9uZW50UmVmLmluc3RhbmNlLnRvcCA9IE1hdGgucm91bmQocG9zaXRpb25Ub3ApO1xuICAgICAgICB0aGlzLmNvbXBvbmVudFJlZi5pbnN0YW5jZS5wb3NpdGlvbiA9IHZhbGlkUG9zaXRpb24ucG9zO1xuXG4gICAgfVxuICAgIHByaXZhdGUgc2V0VG9vbHRpcENvbXBvbmVudFByb3BlcnRpZXMoKSB7XG4gICAgICAgIGlmICh0aGlzLmNvbXBvbmVudFJlZiAhPT0gbnVsbCkge1xuICAgICAgICAgICAgdGhpcy5jb21wb25lbnRSZWYuaW5zdGFuY2UudG9vbHRpcCA9IHRoaXMudG9vbHRpcDtcbiAgICAgICAgICAgIHRoaXMuY29tcG9uZW50UmVmLmluc3RhbmNlLmVzY2FwZSA9IHRoaXMuZXNjYXBlO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBkZXN0cm95KCk6IHZvaWQge1xuICAgICAgICBpZiAoIWlzTnVsbE9yVW5kZWZpbmVkKHRoaXMuY29tcG9uZW50UmVmKSkge1xuICAgICAgICAgICAgd2luZG93LmNsZWFyVGltZW91dCh0aGlzLnNob3dUaW1lb3V0KTtcbiAgICAgICAgICAgIHRoaXMuYXBwUmVmLmRldGFjaFZpZXcodGhpcy5jb21wb25lbnRSZWYuaG9zdFZpZXcpO1xuICAgICAgICAgICAgdGhpcy5jb21wb25lbnRSZWYuZGVzdHJveSgpO1xuICAgICAgICAgICAgdGhpcy5jb21wb25lbnRSZWYgPSBudWxsO1xuICAgICAgICAgICAgdGhpcy50b29sdGlwRGl2RWxlbWVudCA9IG51bGw7XG4gICAgICAgIH1cblxuICAgICAgICB3aW5kb3cucmVtb3ZlRXZlbnRMaXN0ZW5lcihcIm1vdXNlbW92ZVwiLCB0aGlzLmJvdW5kT25XaW5kb3dNb3VzZU1vdmVGdW5jdGlvbik7XG4gICAgfVxufVxuIl19
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { NgModule } from "@angular/core";
|
|
3
|
-
import { CommonModule } from "@angular/common";
|
|
4
|
-
import { TooltipComponent } from "./tooltip.component";
|
|
5
|
-
import { TooltipDirective } from "./tooltip.directive";
|
|
6
|
-
let TooltipModule = class TooltipModule {
|
|
7
|
-
};
|
|
8
|
-
TooltipModule = __decorate([
|
|
9
|
-
NgModule({
|
|
10
|
-
imports: [CommonModule],
|
|
11
|
-
declarations: [
|
|
12
|
-
TooltipComponent,
|
|
13
|
-
TooltipDirective,
|
|
14
|
-
],
|
|
15
|
-
exports: [TooltipDirective],
|
|
16
|
-
})
|
|
17
|
-
], TooltipModule);
|
|
18
|
-
export { TooltipModule };
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5tb2R1bGUuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9Ac2VuaW9yc2lzdGVtYXMvYW5ndWxhci1jb21wb25lbnRzLyIsInNvdXJjZXMiOlsiY29tcG9uZW50cy90b29sdGlwL3Rvb2x0aXAubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQVV2RCxJQUFhLGFBQWEsR0FBMUIsTUFBYSxhQUFhO0NBQUksQ0FBQTtBQUFqQixhQUFhO0lBUnpCLFFBQVEsQ0FBQztRQUNQLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztRQUN2QixZQUFZLEVBQUU7WUFDWCxnQkFBZ0I7WUFDaEIsZ0JBQWdCO1NBQ2xCO1FBQ0QsT0FBTyxFQUFFLENBQUMsZ0JBQWdCLENBQUM7S0FDN0IsQ0FBQztHQUNXLGFBQWEsQ0FBSTtTQUFqQixhQUFhIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xuXG5pbXBvcnQgeyBUb29sdGlwQ29tcG9uZW50IH0gZnJvbSBcIi4vdG9vbHRpcC5jb21wb25lbnRcIjtcbmltcG9ydCB7IFRvb2x0aXBEaXJlY3RpdmUgfSBmcm9tIFwiLi90b29sdGlwLmRpcmVjdGl2ZVwiO1xuXG5ATmdNb2R1bGUoe1xuICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gICBkZWNsYXJhdGlvbnM6IFtcbiAgICAgIFRvb2x0aXBDb21wb25lbnQsXG4gICAgICBUb29sdGlwRGlyZWN0aXZlLFxuICAgXSxcbiAgIGV4cG9ydHM6IFtUb29sdGlwRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgVG9vbHRpcE1vZHVsZSB7IH1cbiJdfQ==
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export const Breakpoints = {
|
|
2
|
-
SM_MIN: 0,
|
|
3
|
-
SM_MAX: 767,
|
|
4
|
-
MD_MIN: 768,
|
|
5
|
-
MD_MAX: 991,
|
|
6
|
-
LG_MIN: 992,
|
|
7
|
-
LG_MAX: 1199,
|
|
8
|
-
XL_MIN: 1200,
|
|
9
|
-
XL_MAX: Infinity,
|
|
10
|
-
};
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWtwb2ludHMuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9Ac2VuaW9yc2lzdGVtYXMvYW5ndWxhci1jb21wb25lbnRzLyIsInNvdXJjZXMiOlsiY29tcG9uZW50cy91dGlscy9icmVha3BvaW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxXQUFXLEdBQUc7SUFDdkIsTUFBTSxFQUFFLENBQUM7SUFDVCxNQUFNLEVBQUUsR0FBRztJQUNYLE1BQU0sRUFBRSxHQUFHO0lBQ1gsTUFBTSxFQUFFLEdBQUc7SUFDWCxNQUFNLEVBQUUsR0FBRztJQUNYLE1BQU0sRUFBRSxJQUFJO0lBQ1osTUFBTSxFQUFFLElBQUk7SUFDWixNQUFNLEVBQUUsUUFBUTtDQUNuQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IEJyZWFrcG9pbnRzID0ge1xuICAgIFNNX01JTjogMCxcbiAgICBTTV9NQVg6IDc2NyxcbiAgICBNRF9NSU46IDc2OCxcbiAgICBNRF9NQVg6IDk5MSxcbiAgICBMR19NSU46IDk5MixcbiAgICBMR19NQVg6IDExOTksXG4gICAgWExfTUlOOiAxMjAwLFxuICAgIFhMX01BWDogSW5maW5pdHksXG59O1xuIl19
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { Injectable } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
const DEFAULT_TIMER = 300;
|
|
5
|
-
let DebounceUtils = class DebounceUtils {
|
|
6
|
-
debounce(func, timeout = DEFAULT_TIMER) {
|
|
7
|
-
let timer;
|
|
8
|
-
return (...args) => {
|
|
9
|
-
clearTimeout(timer);
|
|
10
|
-
timer = setTimeout(() => {
|
|
11
|
-
func.apply(this, args);
|
|
12
|
-
}, timeout);
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
debounceLeading(func, timeout = DEFAULT_TIMER) {
|
|
16
|
-
let timer;
|
|
17
|
-
return (...args) => {
|
|
18
|
-
if (!timer) {
|
|
19
|
-
func.apply(this, args);
|
|
20
|
-
}
|
|
21
|
-
clearTimeout(timer);
|
|
22
|
-
timer = setTimeout(() => {
|
|
23
|
-
timer = null;
|
|
24
|
-
}, timeout);
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
DebounceUtils.ɵprov = i0.ɵɵdefineInjectable({ factory: function DebounceUtils_Factory() { return new DebounceUtils(); }, token: DebounceUtils, providedIn: "root" });
|
|
29
|
-
DebounceUtils = __decorate([
|
|
30
|
-
Injectable({
|
|
31
|
-
providedIn: 'root',
|
|
32
|
-
})
|
|
33
|
-
], DebounceUtils);
|
|
34
|
-
export { DebounceUtils };
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVib3VjZS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BzZW5pb3JzaXN0ZW1hcy9hbmd1bGFyLWNvbXBvbmVudHMvIiwic291cmNlcyI6WyJjb21wb25lbnRzL3V0aWxzL2RlYm91Y2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBRTNDLE1BQU0sYUFBYSxHQUFHLEdBQUcsQ0FBQztBQUsxQixJQUFhLGFBQWEsR0FBMUIsTUFBYSxhQUFhO0lBQ2YsUUFBUSxDQUFDLElBQWMsRUFBRSxPQUFPLEdBQUcsYUFBYTtRQUNuRCxJQUFJLEtBQXFCLENBQUM7UUFDMUIsT0FBTyxDQUFDLEdBQUcsSUFBUyxFQUFFLEVBQUU7WUFDcEIsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBQ3BCLEtBQUssR0FBRyxVQUFVLENBQUMsR0FBRyxFQUFFO2dCQUNwQixJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksRUFBRSxJQUFJLENBQUMsQ0FBQztZQUMzQixDQUFDLEVBQUUsT0FBTyxDQUFDLENBQUM7UUFDaEIsQ0FBQyxDQUFDO0lBQ04sQ0FBQztJQUVNLGVBQWUsQ0FBQyxJQUFjLEVBQUUsT0FBTyxHQUFHLGFBQWE7UUFDMUQsSUFBSSxLQUFxQixDQUFDO1FBQzFCLE9BQU8sQ0FBQyxHQUFHLElBQVMsRUFBRSxFQUFFO1lBQ3BCLElBQUksQ0FBQyxLQUFLLEVBQUU7Z0JBQ1IsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLEVBQUUsSUFBSSxDQUFDLENBQUM7YUFDMUI7WUFDRCxZQUFZLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDcEIsS0FBSyxHQUFHLFVBQVUsQ0FBQyxHQUFHLEVBQUU7Z0JBQ3BCLEtBQUssR0FBRyxJQUFJLENBQUM7WUFDakIsQ0FBQyxFQUFFLE9BQU8sQ0FBQyxDQUFDO1FBQ2hCLENBQUMsQ0FBQztJQUNOLENBQUM7Q0FDSixDQUFBOztBQXZCWSxhQUFhO0lBSHpCLFVBQVUsQ0FBQztRQUNSLFVBQVUsRUFBRSxNQUFNO0tBQ3JCLENBQUM7R0FDVyxhQUFhLENBdUJ6QjtTQXZCWSxhQUFhIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5jb25zdCBERUZBVUxUX1RJTUVSID0gMzAwO1xuXG5ASW5qZWN0YWJsZSh7XG4gICAgcHJvdmlkZWRJbjogJ3Jvb3QnLFxufSlcbmV4cG9ydCBjbGFzcyBEZWJvdW5jZVV0aWxzIHtcbiAgICBwdWJsaWMgZGVib3VuY2UoZnVuYzogRnVuY3Rpb24sIHRpbWVvdXQgPSBERUZBVUxUX1RJTUVSKXtcbiAgICAgICAgbGV0IHRpbWVyOiBOb2RlSlMuVGltZW91dDtcbiAgICAgICAgcmV0dXJuICguLi5hcmdzOiBhbnkpID0+IHtcbiAgICAgICAgICAgIGNsZWFyVGltZW91dCh0aW1lcik7XG4gICAgICAgICAgICB0aW1lciA9IHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAgICAgICAgIGZ1bmMuYXBwbHkodGhpcywgYXJncyk7XG4gICAgICAgICAgICB9LCB0aW1lb3V0KTtcbiAgICAgICAgfTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZGVib3VuY2VMZWFkaW5nKGZ1bmM6IEZ1bmN0aW9uLCB0aW1lb3V0ID0gREVGQVVMVF9USU1FUikge1xuICAgICAgICBsZXQgdGltZXI6IE5vZGVKUy5UaW1lb3V0O1xuICAgICAgICByZXR1cm4gKC4uLmFyZ3M6IGFueSkgPT4ge1xuICAgICAgICAgICAgaWYgKCF0aW1lcikge1xuICAgICAgICAgICAgICAgIGZ1bmMuYXBwbHkodGhpcywgYXJncyk7XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICBjbGVhclRpbWVvdXQodGltZXIpO1xuICAgICAgICAgICAgdGltZXIgPSBzZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgICAgICAgICAgICB0aW1lciA9IG51bGw7XG4gICAgICAgICAgICB9LCB0aW1lb3V0KTtcbiAgICAgICAgfTtcbiAgICB9XG59XG4iXX0=
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
export class ExportUtils {
|
|
2
|
-
constructor() {
|
|
3
|
-
throw new Error("Classe não deve ser instanciada.");
|
|
4
|
-
}
|
|
5
|
-
static addClass(element, className) {
|
|
6
|
-
element.nativeElement.className = `${element.nativeElement.className} ${className}`;
|
|
7
|
-
}
|
|
8
|
-
static removeClass(element, className) {
|
|
9
|
-
if (element.nativeElement.className.includes(className)) {
|
|
10
|
-
element.nativeElement.className = element.nativeElement.className.replace(className, "");
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
static exportCSV(columns = [], data = [], csvSeparator = ";", documentName = "download") {
|
|
14
|
-
let csv = "\ufeff";
|
|
15
|
-
columns.filter((column) => column.exportable && column.field).forEach((column, i) => {
|
|
16
|
-
csv += `"${column.header || column.field}"`;
|
|
17
|
-
if (i < columns.length - 1)
|
|
18
|
-
csv += csvSeparator;
|
|
19
|
-
});
|
|
20
|
-
data.forEach((record) => {
|
|
21
|
-
csv += "\n";
|
|
22
|
-
columns.filter((column) => column.exportable && column.field).forEach((column, i) => {
|
|
23
|
-
let cellData;
|
|
24
|
-
if (Array.isArray(column.field)) {
|
|
25
|
-
const fieldValues = column.field.map((col) => this.resolveFieldData(record, col));
|
|
26
|
-
cellData = fieldValues
|
|
27
|
-
.flat()
|
|
28
|
-
.filter((value) => value !== null && value !== undefined)
|
|
29
|
-
.join(column.separator);
|
|
30
|
-
}
|
|
31
|
-
else {
|
|
32
|
-
cellData = this.resolveFieldData(record, column.field);
|
|
33
|
-
}
|
|
34
|
-
if (cellData != null)
|
|
35
|
-
cellData = String(cellData).replace(/"/g, `""`);
|
|
36
|
-
else
|
|
37
|
-
cellData = "";
|
|
38
|
-
csv += `"${cellData}"`;
|
|
39
|
-
if (i < columns.length - 1)
|
|
40
|
-
csv += csvSeparator;
|
|
41
|
-
});
|
|
42
|
-
});
|
|
43
|
-
const blob = new Blob([csv], {
|
|
44
|
-
type: "text/csv;charset=utf-8;",
|
|
45
|
-
});
|
|
46
|
-
if (window.navigator.msSaveOrOpenBlob)
|
|
47
|
-
navigator.msSaveOrOpenBlob(blob, documentName + ".csv");
|
|
48
|
-
else {
|
|
49
|
-
const link = document.createElement("a");
|
|
50
|
-
link.style.display = "none";
|
|
51
|
-
document.body.appendChild(link);
|
|
52
|
-
if (link.download !== undefined) {
|
|
53
|
-
link.setAttribute("href", URL.createObjectURL(blob));
|
|
54
|
-
link.setAttribute("download", documentName + ".csv");
|
|
55
|
-
link.click();
|
|
56
|
-
}
|
|
57
|
-
else {
|
|
58
|
-
csv = "data:text/csv;charset=utf-8," + csv;
|
|
59
|
-
window.open(encodeURI(csv));
|
|
60
|
-
}
|
|
61
|
-
document.body.removeChild(link);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
static resolveFieldData(data, field) {
|
|
65
|
-
if (data && field) {
|
|
66
|
-
if (this.isFunction(field))
|
|
67
|
-
return field(data);
|
|
68
|
-
else if (field.indexOf(".") == -1)
|
|
69
|
-
return data[field];
|
|
70
|
-
else {
|
|
71
|
-
const fields = field.split(".");
|
|
72
|
-
let value = data;
|
|
73
|
-
for (let i = 0, len = fields.length; i < len; ++i) {
|
|
74
|
-
if (value == null) {
|
|
75
|
-
return null;
|
|
76
|
-
}
|
|
77
|
-
value = value[fields[i]];
|
|
78
|
-
}
|
|
79
|
-
return value;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
else
|
|
83
|
-
return null;
|
|
84
|
-
}
|
|
85
|
-
static isFunction(obj) {
|
|
86
|
-
return !!(obj && obj.constructor && obj.call && obj.apply);
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhwb3J0LXV0aWxzLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvdXRpbHMvZXhwb3J0LXV0aWxzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sT0FBTyxXQUFXO0lBQ3BCO1FBQ0ksTUFBTSxJQUFJLEtBQUssQ0FBQyxrQ0FBa0MsQ0FBQyxDQUFDO0lBQ3hELENBQUM7SUFFTSxNQUFNLENBQUMsUUFBUSxDQUFDLE9BQW1CLEVBQUUsU0FBaUI7UUFDekQsT0FBTyxDQUFDLGFBQWEsQ0FBQyxTQUFTLEdBQUcsR0FBRyxPQUFPLENBQUMsYUFBYSxDQUFDLFNBQVMsSUFBSSxTQUFTLEVBQUUsQ0FBQztJQUN4RixDQUFDO0lBRU0sTUFBTSxDQUFDLFdBQVcsQ0FBQyxPQUFtQixFQUFFLFNBQWlCO1FBQzVELElBQUksT0FBTyxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxFQUFFO1lBQ3JELE9BQU8sQ0FBQyxhQUFhLENBQUMsU0FBUyxHQUFHLE9BQU8sQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxTQUFTLEVBQUUsRUFBRSxDQUFDLENBQUM7U0FDNUY7SUFDTCxDQUFDO0lBRU0sTUFBTSxDQUFDLFNBQVMsQ0FDbkIsVUFBMEIsRUFBRSxFQUM1QixPQUFjLEVBQUUsRUFDaEIsZUFBdUIsR0FBRyxFQUMxQixlQUF1QixVQUFVO1FBRWpDLElBQUksR0FBRyxHQUFHLFFBQVEsQ0FBQztRQUVuQixPQUFPLENBQUMsTUFBTSxDQUFDLENBQUMsTUFBVyxFQUFFLEVBQUUsQ0FBQyxNQUFNLENBQUMsVUFBVSxJQUFJLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxNQUFXLEVBQUUsQ0FBUyxFQUFFLEVBQUU7WUFDbEcsR0FBRyxJQUFJLElBQUksTUFBTSxDQUFDLE1BQU0sSUFB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O0lBQ0wsQ0FBQztJQUVPLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFTLEVBQUUsS0FBVTtRQUNqRCxJQUFJLElBQUksSUFBSSxLQUFLLEVBQUU7WUFDZixJQUFJLElBQUksQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDO2dCQUFFLE9BQU8sS0FBSyxDQUFDLElBQUksQ0FBQyxDQUFDO2lCQUMxQyxJQUFJLEtBQUssQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxDQUFDO2dCQUFFLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO2lCQUNqRDtnQkFDRCxNQUFNLE1BQU0sR0FBYSxLQUFLLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDO2dCQUMxQyxJQUFJLEtBQUssR0FBRyxJQUFJLENBQUM7Z0JBQ2pCLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLEdBQUcsR0FBRyxNQUFNLENBQUMsTUFBTSxFQUFFLENBQUMsR0FBRyxHQUFHLEVBQUUsRUFBRSxDQUFDLEVBQUU7b0JBQy9DLElBQUksS0FBSyxJQUFJLElBQUksRUFBRTt3QkFDZixPQUFPLElBQUksQ0FBQztxQkFDZjtvQkFDRCxLQUFLLEdBQUcsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO2lCQUM1QjtnQkFDRCxPQUFPLEtBQUssQ0FBQzthQUNoQjtTQUNKOztZQUFNLE9BQU8sSUFBSSxDQUFDO0lBQ3ZCLENBQUM7SUFFTyxNQUFNLENBQUMsVUFBVSxDQUFDLEdBQVE7UUFDOUIsT0FBTyxDQUFDLENBQUMsQ0FBQyxHQUFHLElBQUksR0FBRyxDQUFDLFdBQVcsSUFBSSxHQUFHLENBQUMsSUFBSSxJQUFJLEdBQUcsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMvRCxDQUFDO0NBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFbGVtZW50UmVmIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcblxuZXhwb3J0IGNsYXNzIEV4cG9ydFV0aWxzIHtcbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKFwiQ2xhc3NlIG7Do28gZGV2ZSBzZXIgaW5zdGFuY2lhZGEuXCIpO1xuICAgIH1cblxuICAgIHB1YmxpYyBzdGF0aWMgYWRkQ2xhc3MoZWxlbWVudDogRWxlbWVudFJlZiwgY2xhc3NOYW1lOiBzdHJpbmcpIHtcbiAgICAgICAgZWxlbWVudC5uYXRpdmVFbGVtZW50LmNsYXNzTmFtZSA9IGAke2VsZW1lbnQubmF0aXZlRWxlbWVudC5jbGFzc05hbWV9ICR7Y2xhc3NOYW1lfWA7XG4gICAgfVxuXG4gICAgcHVibGljIHN0YXRpYyByZW1vdmVDbGFzcyhlbGVtZW50OiBFbGVtZW50UmVmLCBjbGFzc05hbWU6IHN0cmluZykge1xuICAgICAgICBpZiAoZWxlbWVudC5uYXRpdmVFbGVtZW50LmNsYXNzTmFtZS5pbmNsdWRlcyhjbGFzc05hbWUpKSB7XG4gICAgICAgICAgICBlbGVtZW50Lm5hdGl2ZUVsZW1lbnQuY2xhc3NOYW1lID0gZWxlbWVudC5uYXRpdmVFbGVtZW50LmNsYXNzTmFtZS5yZXBsYWNlKGNsYXNzTmFtZSwgXCJcIik7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgc3RhdGljIGV4cG9ydENTVihcbiAgICAgICAgY29sdW1uczogUGFydGlhbDxhbnk+W10gPSBbXSxcbiAgICAgICAgZGF0YTogYW55W10gPSBbXSxcbiAgICAgICAgY3N2U2VwYXJhdG9yOiBzdHJpbmcgPSBcIjtcIixcbiAgICAgICAgZG9jdW1lbnROYW1lOiBzdHJpbmcgPSBcImRvd25sb2FkXCJcbiAgICApIHtcbiAgICAgICAgbGV0IGNzdiA9IFwiXFx1ZmVmZlwiO1xuXG4gICAgICAgIGNvbHVtbnMuZmlsdGVyKChjb2x1bW46IGFueSkgPT4gY29sdW1uLmV4cG9ydGFibGUgJiYgY29sdW1uLmZpZWxkKS5mb3JFYWNoKChjb2x1bW46IGFueSwgaTogbnVtYmVyKSA9PiB7XG4gICAgICAgICAgICBjc3YgKz0gYFwiJHtjb2x1bW4uaGVhZGVyIHx8IGNvbHVtbi5maWVsZH1cImA7XG5cbiAgICAgICAgICAgIGlmIChpIDwgY29sdW1ucy5sZW5ndGggLSAxKSBjc3YgKz0gY3N2U2VwYXJhdG9yO1xuICAgICAgICB9KTtcblxuICAgICAgICBkYXRhLmZvckVhY2goKHJlY29yZDogYW55KSA9PiB7XG4gICAgICAgICAgICBjc3YgKz0gXCJcXG5cIjtcblxuICAgICAgICAgICAgY29sdW1ucy5maWx0ZXIoKGNvbHVtbjogYW55KSA9PiBjb2x1bW4uZXhwb3J0YWJsZSAmJiBjb2x1bW4uZmllbGQpLmZvckVhY2goKGNvbHVtbjogYW55LCBpOiBudW1iZXIpID0+IHtcbiAgICAgICAgICAgICAgICBsZXQgY2VsbERhdGE7XG4gICAgICAgICAgICAgICAgaWYgKEFycmF5LmlzQXJyYXkoY29sdW1uLmZpZWxkKSkge1xuICAgICAgICAgICAgICAgICAgICBjb25zdCBmaWVsZFZhbHVlcyA9IGNvbHVtbi5maWVsZC5tYXAoKGNvbDogc3RyaW5nKSA9PiB0aGlzLnJlc29sdmVGaWVsZERhdGEocmVjb3JkLCBjb2wpKTtcblxuICAgICAgICAgICAgICAgICAgICBjZWxsRGF0YSA9IGZpZWxkVmFsdWVzXG4gICAgICAgICAgICAgICAgICAgICAgICAuZmxhdCgpXG4gICAgICAgICAgICAgICAgICAgICAgICAuZmlsdGVyKCh2YWx1ZTogc3RyaW5nKSA9PiB2YWx1ZSAhPT0gbnVsbCAmJiB2YWx1ZSAhPT0gdW5kZWZpbmVkKVxuICAgICAgICAgICAgICAgICAgICAgICAgLmpvaW4oY29sdW1uLnNlcGFyYXRvcik7XG4gICAgICAgICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgICAgICAgICAgY2VsbERhdGEgPSB0aGlzLnJlc29sdmVGaWVsZERhdGEocmVjb3JkLCBjb2x1bW4uZmllbGQpO1xuICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgIGlmIChjZWxsRGF0YSAhPSBudWxsKSBjZWxsRGF0YSA9IFN0cmluZyhjZWxsRGF0YSkucmVwbGFjZSgvXCIvZywgYFwiXCJgKTtcbiAgICAgICAgICAgICAgICBlbHNlIGNlbGxEYXRhID0gXCJcIjtcblxuICAgICAgICAgICAgICAgIGNzdiArPSBgXCIke2NlbGxEYXRhfVwiYDtcblxuICAgICAgICAgICAgICAgIGlmIChpIDwgY29sdW1ucy5sZW5ndGggLSAxKSBjc3YgKz0gY3N2U2VwYXJhdG9yO1xuICAgICAgICAgICAgfSk7XG4gICAgICAgIH0pO1xuXG4gICAgICAgIGNvbnN0IGJsb2IgPSBuZXcgQmxvYihbY3N2XSwge1xuICAgICAgICAgICAgdHlwZTogXCJ0ZXh0L2NzdjtjaGFyc2V0PXV0Zi04O1wiLFxuICAgICAgICB9KTtcblxuICAgICAgICBpZiAod2luZG93Lm5hdmlnYXRvci5tc1NhdmVPck9wZW5CbG9iKSBuYXZpZ2F0b3IubXNTYXZlT3JPcGVuQmxvYihibG9iLCBkb2N1bWVudE5hbWUgKyBcIi5jc3ZcIik7XG4gICAgICAgIGVsc2Uge1xuICAgICAgICAgICAgY29uc3QgbGluayA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoXCJhXCIpO1xuICAgICAgICAgICAgbGluay5zdHlsZS5kaXNwbGF5ID0gXCJub25lXCI7XG4gICAgICAgICAgICBkb2N1bWVudC5ib2R5LmFwcGVuZENoaWxkKGxpbmspO1xuICAgICAgICAgICAgaWYgKGxpbmsuZG93bmxvYWQgIT09IHVuZGVmaW5lZCkge1xuICAgICAgICAgICAgICAgIGxpbmsuc2V0QXR0cmlidXRlKFwiaHJlZlwiLCBVUkwuY3JlYXRlT2JqZWN0VVJMKGJsb2IpKTtcbiAgICAgICAgICAgICAgICBsaW5rLnNldEF0dHJpYnV0ZShcImRvd25sb2FkXCIsIGRvY3VtZW50TmFtZSArIFwiLmNzdlwiKTtcbiAgICAgICAgICAgICAgICBsaW5rLmNsaWNrKCk7XG4gICAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgICAgIGNzdiA9IFwiZGF0YTp0ZXh0L2NzdjtjaGFyc2V0PXV0Zi04LFwiICsgY3N2O1xuICAgICAgICAgICAgICAgIHdpbmRvdy5vcGVuKGVuY29kZVVSSShjc3YpKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIGRvY3VtZW50LmJvZHkucmVtb3ZlQ2hpbGQobGluayk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwcml2YXRlIHN0YXRpYyByZXNvbHZlRmllbGREYXRhKGRhdGE6IGFueSwgZmllbGQ6IGFueSk6IGFueSB7XG4gICAgICAgIGlmIChkYXRhICYmIGZpZWxkKSB7XG4gICAgICAgICAgICBpZiAodGhpcy5pc0Z1bmN0aW9uKGZpZWxkKSkgcmV0dXJuIGZpZWxkKGRhdGEpO1xuICAgICAgICAgICAgZWxzZSBpZiAoZmllbGQuaW5kZXhPZihcIi5cIikgPT0gLTEpIHJldHVybiBkYXRhW2ZpZWxkXTtcbiAgICAgICAgICAgIGVsc2Uge1xuICAgICAgICAgICAgICAgIGNvbnN0IGZpZWxkczogc3RyaW5nW10gPSBmaWVsZC5zcGxpdChcIi5cIik7XG4gICAgICAgICAgICAgICAgbGV0IHZhbHVlID0gZGF0YTtcbiAgICAgICAgICAgICAgICBmb3IgKGxldCBpID0gMCwgbGVuID0gZmllbGRzLmxlbmd0aDsgaSA8IGxlbjsgKytpKSB7XG4gICAgICAgICAgICAgICAgICAgIGlmICh2YWx1ZSA9PSBudWxsKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gbnVsbDtcbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICB2YWx1ZSA9IHZhbHVlW2ZpZWxkc1tpXV07XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIHJldHVybiB2YWx1ZTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSBlbHNlIHJldHVybiBudWxsO1xuICAgIH1cblxuICAgIHByaXZhdGUgc3RhdGljIGlzRnVuY3Rpb24ob2JqOiBhbnkpIHtcbiAgICAgICAgcmV0dXJuICEhKG9iaiAmJiBvYmouY29uc3RydWN0b3IgJiYgb2JqLmNhbGwgJiYgb2JqLmFwcGx5KTtcbiAgICB9XG59XG4iXX0=
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export { Breakpoints } from "./breakpoints";
|
|
2
|
-
export { DebounceUtils } from "./debouce";
|
|
3
|
-
export { ExportUtils } from "./export-utils";
|
|
4
|
-
export { convertToMomentDateFormat } from "./locale-utils";
|
|
5
|
-
export * from "./utils";
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290Ijoibmc6Ly9Ac2VuaW9yc2lzdGVtYXMvYW5ndWxhci1jb21wb25lbnRzLyIsInNvdXJjZXMiOlsiY29tcG9uZW50cy91dGlscy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzVDLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxXQUFXLENBQUM7QUFDMUMsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzdDLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzNELGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgQnJlYWtwb2ludHMgfSBmcm9tIFwiLi9icmVha3BvaW50c1wiO1xuZXhwb3J0IHsgRGVib3VuY2VVdGlscyB9IGZyb20gXCIuL2RlYm91Y2VcIjtcbmV4cG9ydCB7IEV4cG9ydFV0aWxzIH0gZnJvbSBcIi4vZXhwb3J0LXV0aWxzXCI7XG5leHBvcnQgeyBjb252ZXJ0VG9Nb21lbnREYXRlRm9ybWF0IH0gZnJvbSBcIi4vbG9jYWxlLXV0aWxzXCI7XG5leHBvcnQgKiBmcm9tIFwiLi91dGlsc1wiO1xuIl19
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export const convertToMomentDateFormat = (format) => {
|
|
2
|
-
// A ordem dos replaces é importante.
|
|
3
|
-
return format
|
|
4
|
-
.replace(/\bd\b/, "D") // day of month (no leading zero)
|
|
5
|
-
.replace(/\bdd\b/, "DD") // day of month
|
|
6
|
-
.replace(/\bo\b/, "DDD") // day of the year (no leading zero)
|
|
7
|
-
.replace(/\boo\b/, "DDDD") // day of the year
|
|
8
|
-
.replace(/\bM\b/, "MMM") // month name short
|
|
9
|
-
.replace(/\bMM\b/, "MMMM") // month name long
|
|
10
|
-
.replace(/\bm\b/, "M") // month of year (no leading)
|
|
11
|
-
.replace(/\bmm\b/, "MM") // month of year
|
|
12
|
-
.replace(/\by\b/, "YY") // year (two digits)
|
|
13
|
-
.replace(/\byy\b/, "YYYY"); // year (four digits)
|
|
14
|
-
};
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9jYWxlLXV0aWxzLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvdXRpbHMvbG9jYWxlLXV0aWxzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBQyxNQUFNLHlCQUF5QixHQUFHLENBQUMsTUFBYyxFQUFVLEVBQUU7SUFDaEUscUNBQXFDO0lBQ3JDLE9BQU8sTUFBTTtTQUNSLE9BQU8sQ0FBQyxPQUFPLEVBQUUsR0FBRyxDQUFDLENBQUMsaUNBQWlDO1NBQ3ZELE9BQU8sQ0FBQyxRQUFRLEVBQUUsSUFBSSxDQUFDLENBQUMsZUFBZTtTQUN2QyxPQUFPLENBQUMsT0FBTyxFQUFFLEtBQUssQ0FBQyxDQUFDLG9DQUFvQztTQUM1RCxPQUFPLENBQUMsUUFBUSxFQUFFLE1BQU0sQ0FBQyxDQUFDLGtCQUFrQjtTQUM1QyxPQUFPLENBQUMsT0FBTyxFQUFFLEtBQUssQ0FBQyxDQUFDLG1CQUFtQjtTQUMzQyxPQUFPLENBQUMsUUFBUSxFQUFFLE1BQU0sQ0FBQyxDQUFDLGtCQUFrQjtTQUM1QyxPQUFPLENBQUMsT0FBTyxFQUFFLEdBQUcsQ0FBQyxDQUFDLDZCQUE2QjtTQUNuRCxPQUFPLENBQUMsUUFBUSxFQUFFLElBQUksQ0FBQyxDQUFDLGdCQUFnQjtTQUN4QyxPQUFPLENBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxDQUFDLG9CQUFvQjtTQUMzQyxPQUFPLENBQUMsUUFBUSxFQUFFLE1BQU0sQ0FBQyxDQUFDLENBQUMscUJBQXFCO0FBQ3pELENBQUMsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCBjb252ZXJ0VG9Nb21lbnREYXRlRm9ybWF0ID0gKGZvcm1hdDogc3RyaW5nKTogc3RyaW5nID0+IHtcbiAgICAvLyBBIG9yZGVtIGRvcyByZXBsYWNlcyDDqSBpbXBvcnRhbnRlLlxuICAgIHJldHVybiBmb3JtYXRcbiAgICAgICAgLnJlcGxhY2UoL1xcYmRcXGIvLCBcIkRcIikgLy8gZGF5IG9mIG1vbnRoIChubyBsZWFkaW5nIHplcm8pXG4gICAgICAgIC5yZXBsYWNlKC9cXGJkZFxcYi8sIFwiRERcIikgLy8gZGF5IG9mIG1vbnRoXG4gICAgICAgIC5yZXBsYWNlKC9cXGJvXFxiLywgXCJERERcIikgLy8gZGF5IG9mIHRoZSB5ZWFyIChubyBsZWFkaW5nIHplcm8pXG4gICAgICAgIC5yZXBsYWNlKC9cXGJvb1xcYi8sIFwiRERERFwiKSAvLyBkYXkgb2YgdGhlIHllYXJcbiAgICAgICAgLnJlcGxhY2UoL1xcYk1cXGIvLCBcIk1NTVwiKSAvLyBtb250aCBuYW1lIHNob3J0XG4gICAgICAgIC5yZXBsYWNlKC9cXGJNTVxcYi8sIFwiTU1NTVwiKSAvLyBtb250aCBuYW1lIGxvbmdcbiAgICAgICAgLnJlcGxhY2UoL1xcYm1cXGIvLCBcIk1cIikgLy8gbW9udGggb2YgeWVhciAobm8gbGVhZGluZylcbiAgICAgICAgLnJlcGxhY2UoL1xcYm1tXFxiLywgXCJNTVwiKSAvLyBtb250aCBvZiB5ZWFyXG4gICAgICAgIC5yZXBsYWNlKC9cXGJ5XFxiLywgXCJZWVwiKSAvLyB5ZWFyICh0d28gZGlnaXRzKVxuICAgICAgICAucmVwbGFjZSgvXFxieXlcXGIvLCBcIllZWVlcIik7IC8vIHllYXIgKGZvdXIgZGlnaXRzKVxufSJdfQ==
|