ngx-vector-components 4.94.0 → 4.96.0
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/CHANGELOG.md +1227 -1226
- package/README.md +35 -35
- package/assets/icons/chevron_down_icon.svg +3 -3
- package/assets/icons/home_menu_icon.svg +3 -3
- package/assets/icons/logout_icon.svg +9 -9
- package/assets/icons/menu_footer_icon.svg +3 -3
- package/assets/icons/menu_hamburguer_icon.svg +3 -3
- package/assets/icons/terms_of_use_icon.svg +9 -9
- package/assets/icons/vector_admin_icon.svg +4 -4
- package/assets/icons/vector_fintech_icon.svg +3 -3
- package/assets/icons/vector_logtech_icon.svg +6 -6
- package/assets/icons/vector_marketplace_icon.svg +3 -3
- package/assets/images/bunge_logo.svg +23 -23
- package/assets/images/cofco_logo.svg +117 -117
- package/assets/images/emote_bad.svg +6 -6
- package/assets/images/emote_cool.svg +5 -5
- package/assets/images/emote_nice.svg +5 -5
- package/assets/images/success_sign.svg +4 -4
- package/assets/images/vector-logo-horizontal-inverse-color.svg +13 -13
- package/assets/images/vector_logo_horizontal.svg +13 -13
- package/assets/images/warn_sign.svg +4 -4
- package/assets/styles/_fonts.scss +114 -114
- package/assets/styles/_mixins.scss +7 -7
- package/assets/styles/_primeng-custom-theme.scss +982 -982
- package/assets/styles/_spinner.scss +35 -35
- package/assets/styles/_styles.scss +115 -115
- package/assets/styles/_variables.scss +27 -27
- package/esm2020/lib/components/badge/badge.component.mjs +39 -0
- package/esm2020/lib/components/badge/badge.module.mjs +19 -0
- package/{esm2022 → esm2020}/lib/components/badge/index.mjs +1 -1
- package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +66 -0
- package/esm2020/lib/components/breadcrumb/breadcrumb.module.mjs +18 -0
- package/{esm2022 → esm2020}/lib/components/breadcrumb/index.mjs +1 -1
- package/esm2020/lib/components/crud-base/crud-base.component.mjs +47 -0
- package/{esm2022 → esm2020}/lib/components/crud-base/index.mjs +1 -1
- package/esm2020/lib/components/crud-footer/crud-footer.component.mjs +32 -0
- package/esm2020/lib/components/crud-footer/crud-footer.module.mjs +20 -0
- package/{esm2022 → esm2020}/lib/components/crud-footer/index.mjs +1 -1
- package/esm2020/lib/components/crud-header/crud-header.component.mjs +30 -0
- package/esm2020/lib/components/crud-header/crud-header.module.mjs +19 -0
- package/{esm2022 → esm2020}/lib/components/crud-header/index.mjs +1 -1
- package/esm2020/lib/components/crud-history/crud-history.component.mjs +82 -0
- package/esm2020/lib/components/crud-history/crud-history.module.mjs +20 -0
- package/{esm2022 → esm2020}/lib/components/crud-history/index.mjs +1 -1
- package/esm2020/lib/components/fields/button/button.component.mjs +41 -0
- package/{esm2022 → esm2020}/lib/components/fields/button/index.mjs +1 -1
- package/esm2020/lib/components/fields/calendar-field/calendar-field.component.mjs +74 -0
- package/{esm2022 → esm2020}/lib/components/fields/calendar-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/checkbox-field/checkbox-field.component.mjs +46 -0
- package/{esm2022 → esm2020}/lib/components/fields/checkbox-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/currency-field/currency-field.component.mjs +98 -0
- package/{esm2022 → esm2020}/lib/components/fields/currency-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/data-table/data-table.component.mjs +386 -0
- package/{esm2022 → esm2020}/lib/components/fields/data-table/index.mjs +1 -1
- package/esm2020/lib/components/fields/dropdown-field/dropdown-field.component.mjs +204 -0
- package/{esm2022 → esm2020}/lib/components/fields/dropdown-field/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/components/fields/field-error-message/field-error-message.component.mjs +5 -5
- package/{esm2022 → esm2020}/lib/components/fields/field-error-message/index.mjs +1 -1
- package/esm2020/lib/components/fields/fields.module.mjs +213 -0
- package/esm2020/lib/components/fields/filters/filters.component.mjs +203 -0
- package/{esm2022 → esm2020}/lib/components/fields/filters/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/components/fields/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/components/fields/input-number-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/input-number-field/input-number-field.component.mjs +85 -0
- package/{esm2022 → esm2020}/lib/components/fields/multiselect-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/multiselect-field/multiselect-field.component.mjs +50 -0
- package/{esm2022 → esm2020}/lib/components/fields/percentage-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/percentage-field/percentage-field.component.mjs +42 -0
- package/{esm2022 → esm2020}/lib/components/fields/radio-button-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/radio-button-field/radio-button-field.component.mjs +48 -0
- package/{esm2022 → esm2020}/lib/components/fields/range-value/index.mjs +1 -1
- package/esm2020/lib/components/fields/range-value/range-value.component.mjs +72 -0
- package/{esm2022 → esm2020}/lib/components/fields/search-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/search-field/search-field.component.mjs +33 -0
- package/{esm2022 → esm2020}/lib/components/fields/select-button-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/select-button-field/select-button-field.component.mjs +20 -0
- package/{esm2022 → esm2020}/lib/components/fields/text-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/text-field/text-field.component.mjs +232 -0
- package/{esm2022 → esm2020}/lib/components/fields/textarea-field/index.mjs +1 -1
- package/esm2020/lib/components/fields/textarea-field/textarea-field.component.mjs +81 -0
- package/esm2020/lib/components/generic-error-modal/generic-error-modal.component.mjs +36 -0
- package/esm2020/lib/components/generic-error-modal/generic-error-modal.module.mjs +20 -0
- package/{esm2022 → esm2020}/lib/components/generic-error-modal/index.mjs +1 -1
- package/esm2020/lib/components/generic-modal/generic-modal.component.mjs +66 -0
- package/esm2020/lib/components/generic-modal/generic-modal.module.mjs +20 -0
- package/{esm2022 → esm2020}/lib/components/generic-modal/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/components/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/components/menu/index.mjs +1 -1
- package/esm2020/lib/components/menu/menu.component.mjs +305 -0
- package/esm2020/lib/components/menu/menu.module.mjs +20 -0
- package/esm2020/lib/components/menu/sub-menus-list/sub-menus-list.component.mjs +42 -0
- package/{esm2022 → esm2020}/lib/components/panel/index.mjs +1 -1
- package/esm2020/lib/components/panel/panel.component.mjs +15 -0
- package/esm2020/lib/components/panel/panel.module.mjs +19 -0
- package/{esm2022 → esm2020}/lib/components/score/index.mjs +1 -1
- package/esm2020/lib/components/score/score.component.mjs +17 -0
- package/{esm2022 → esm2020}/lib/components/score/score.module.mjs +5 -5
- package/{esm2022 → esm2020}/lib/components/top-bar/index.mjs +1 -1
- package/esm2020/lib/components/top-bar/top-bar.component.mjs +142 -0
- package/esm2020/lib/components/top-bar/top-bar.module.mjs +20 -0
- package/{esm2022 → esm2020}/lib/guards/crud-list-has-items.guard.mjs +4 -4
- package/{esm2022 → esm2020}/lib/guards/get-token-by-guid.guard.mjs +4 -4
- package/{esm2022 → esm2020}/lib/guards/has-permission.guard.mjs +4 -4
- package/{esm2022 → esm2020}/lib/guards/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/guards/role.guard.mjs +4 -4
- package/{esm2022 → esm2020}/lib/guards/token-is-present.guard.mjs +4 -4
- package/{esm2022 → esm2020}/lib/interceptors/http-interceptor.mjs +4 -4
- package/{esm2022 → esm2020}/lib/interceptors/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/app-name.enum.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/boolean-type.enum.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/crud-history.model.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/crud-mode.enum.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/currency.enum.mjs +1 -1
- package/esm2020/lib/models/data-table.model.mjs +23 -0
- package/{esm2022 → esm2020}/lib/models/document-type.enum.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/filters.model.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/generic-modal.model.mjs +1 -1
- package/esm2020/lib/models/http-response.model.mjs +2 -0
- package/{esm2022 → esm2020}/lib/models/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/ip-info.enum.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/list-item.model.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/locale.enum.mjs +1 -1
- package/esm2020/lib/models/menu-item.model.mjs +2 -0
- package/{esm2022 → esm2020}/lib/models/message-status.enum.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/profile.model.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/role.enum.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/status.enum.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/topbar.model.mjs +1 -1
- package/esm2020/lib/models/vector-app.model.mjs +2 -0
- package/{esm2022 → esm2020}/lib/models/vector-notification.model.mjs +1 -1
- package/{esm2022 → esm2020}/lib/models/view.enum.mjs +1 -1
- package/{esm2022 → esm2020}/lib/pipes/currency-brl.pipe.mjs +4 -4
- package/{esm2022 → esm2020}/lib/pipes/format-document.pipe.mjs +4 -4
- package/{esm2022 → esm2020}/lib/pipes/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/pipes/mask.pipe.mjs +4 -4
- package/{esm2022 → esm2020}/lib/pipes/not-hidden.pipe.mjs +4 -4
- package/{esm2022 → esm2020}/lib/pipes/only-active.pipe.mjs +4 -4
- package/esm2020/lib/pipes/pipes.module.mjs +50 -0
- package/{esm2022 → esm2020}/lib/pipes/remove-last-child.pipe.mjs +4 -4
- package/{esm2022 → esm2020}/lib/pipes/unread-notifications.pipe.mjs +4 -4
- package/{esm2022 → esm2020}/lib/resolvers/get-selected-crud-item.resolver.mjs +4 -4
- package/{esm2022 → esm2020}/lib/resolvers/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/services/auth.service.mjs +4 -4
- package/esm2020/lib/services/base-dropdown.mjs +2 -0
- package/{esm2022 → esm2020}/lib/services/crud-base.service.mjs +1 -1
- package/{esm2022 → esm2020}/lib/services/enum.service.mjs +4 -4
- package/{esm2022 → esm2020}/lib/services/error-message.service.mjs +4 -4
- package/{esm2022 → esm2020}/lib/services/geolocation.service.mjs +4 -4
- package/{esm2022 → esm2020}/lib/services/index.mjs +1 -1
- package/{esm2022 → esm2020}/lib/services/loading.service.mjs +4 -4
- package/{esm2022 → esm2020}/lib/services/menu.service.mjs +4 -4
- package/{esm2022 → esm2020}/lib/services/modal.service.mjs +4 -4
- package/{esm2022 → esm2020}/lib/services/notifications.service.mjs +4 -4
- package/{esm2022 → esm2020}/lib/services/profile.service.mjs +4 -4
- package/{esm2022 → esm2020}/lib/services/storage.service.mjs +4 -4
- package/esm2020/lib/shared/shared.module.mjs +19 -0
- package/{esm2022 → esm2020}/lib/utils/cpf-cnpj-validator.util.mjs +1 -1
- package/{esm2022 → esm2020}/lib/utils/file.util.mjs +1 -1
- package/{esm2022 → esm2020}/lib/utils/index.mjs +1 -1
- package/esm2020/lib/utils/mask.util.mjs +76 -0
- package/{esm2022 → esm2020}/lib/utils/object.util.mjs +1 -1
- package/{esm2022 → esm2020}/lib/utils/string.util.mjs +1 -1
- package/{esm2022 → esm2020}/lib/utils/validation.util.mjs +1 -1
- package/{esm2022 → esm2020}/lib/utils/window.util.mjs +1 -1
- package/{esm2022 → esm2020}/public-api.mjs +1 -1
- package/fesm2015/ngx-vector-components.mjs +4808 -0
- package/fesm2015/ngx-vector-components.mjs.map +1 -0
- package/fesm2020/ngx-vector-components.mjs +4786 -0
- package/fesm2020/ngx-vector-components.mjs.map +1 -0
- package/lib/components/badge/badge.component.d.ts +2 -2
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/lib/components/crud-base/crud-base.component.d.ts +3 -3
- package/lib/components/crud-footer/crud-footer.component.d.ts +1 -1
- package/lib/components/crud-header/crud-header.component.d.ts +1 -1
- package/lib/components/crud-history/crud-history.component.d.ts +1 -1
- package/lib/components/fields/button/button.component.d.ts +2 -2
- package/lib/components/fields/calendar-field/calendar-field.component.d.ts +1 -1
- package/lib/components/fields/checkbox-field/checkbox-field.component.d.ts +1 -1
- package/lib/components/fields/currency-field/currency-field.component.d.ts +1 -1
- package/lib/components/fields/data-table/data-table.component.d.ts +3 -3
- package/lib/components/fields/dropdown-field/dropdown-field.component.d.ts +2 -2
- package/lib/components/fields/field-error-message/field-error-message.component.d.ts +1 -1
- package/lib/components/fields/filters/filters.component.d.ts +4 -4
- package/lib/components/fields/input-number-field/input-number-field.component.d.ts +1 -1
- package/lib/components/fields/multiselect-field/multiselect-field.component.d.ts +1 -1
- package/lib/components/fields/percentage-field/percentage-field.component.d.ts +1 -1
- package/lib/components/fields/radio-button-field/radio-button-field.component.d.ts +2 -2
- package/lib/components/fields/range-value/range-value.component.d.ts +1 -1
- package/lib/components/fields/search-field/search-field.component.d.ts +3 -3
- package/lib/components/fields/select-button-field/select-button-field.component.d.ts +1 -1
- package/lib/components/fields/text-field/text-field.component.d.ts +1 -1
- package/lib/components/fields/textarea-field/textarea-field.component.d.ts +1 -1
- package/lib/components/generic-error-modal/generic-error-modal.component.d.ts +1 -2
- package/lib/components/generic-modal/generic-modal.component.d.ts +1 -1
- package/lib/components/menu/menu.component.d.ts +1 -1
- package/lib/components/menu/sub-menus-list/sub-menus-list.component.d.ts +1 -1
- package/lib/components/panel/panel.component.d.ts +1 -1
- package/lib/components/score/score.component.d.ts +1 -1
- package/lib/components/top-bar/top-bar.component.d.ts +1 -1
- package/lib/guards/crud-list-has-items.guard.d.ts +2 -2
- package/lib/guards/get-token-by-guid.guard.d.ts +2 -2
- package/lib/guards/has-permission.guard.d.ts +2 -2
- package/lib/guards/role.guard.d.ts +2 -2
- package/lib/guards/token-is-present.guard.d.ts +2 -2
- package/lib/models/crud-history.model.d.ts +1 -1
- package/lib/models/data-table.model.d.ts +3 -3
- package/lib/models/filters.model.d.ts +1 -1
- package/lib/models/generic-modal.model.d.ts +1 -1
- package/lib/models/http-response.model.d.ts +8 -8
- package/lib/models/list-item.model.d.ts +1 -1
- package/lib/models/menu-item.model.d.ts +1 -1
- package/lib/models/profile.model.d.ts +5 -5
- package/lib/models/topbar.model.d.ts +1 -1
- package/lib/models/vector-app.model.d.ts +1 -1
- package/lib/models/vector-notification.model.d.ts +1 -1
- package/lib/pipes/currency-brl.pipe.d.ts +1 -1
- package/lib/pipes/format-document.pipe.d.ts +1 -1
- package/lib/pipes/mask.pipe.d.ts +1 -1
- package/lib/pipes/not-hidden.pipe.d.ts +1 -1
- package/lib/pipes/only-active.pipe.d.ts +1 -1
- package/lib/pipes/remove-last-child.pipe.d.ts +1 -1
- package/lib/pipes/unread-notifications.pipe.d.ts +1 -1
- package/lib/resolvers/get-selected-crud-item.resolver.d.ts +2 -2
- package/package.json +24 -18
- package/esm2022/lib/components/badge/badge.component.mjs +0 -39
- package/esm2022/lib/components/badge/badge.module.mjs +0 -19
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +0 -66
- package/esm2022/lib/components/breadcrumb/breadcrumb.module.mjs +0 -18
- package/esm2022/lib/components/crud-base/crud-base.component.mjs +0 -47
- package/esm2022/lib/components/crud-footer/crud-footer.component.mjs +0 -32
- package/esm2022/lib/components/crud-footer/crud-footer.module.mjs +0 -20
- package/esm2022/lib/components/crud-header/crud-header.component.mjs +0 -30
- package/esm2022/lib/components/crud-header/crud-header.module.mjs +0 -19
- package/esm2022/lib/components/crud-history/crud-history.component.mjs +0 -82
- package/esm2022/lib/components/crud-history/crud-history.module.mjs +0 -20
- package/esm2022/lib/components/fields/button/button.component.mjs +0 -41
- package/esm2022/lib/components/fields/calendar-field/calendar-field.component.mjs +0 -74
- package/esm2022/lib/components/fields/checkbox-field/checkbox-field.component.mjs +0 -46
- package/esm2022/lib/components/fields/currency-field/currency-field.component.mjs +0 -98
- package/esm2022/lib/components/fields/data-table/data-table.component.mjs +0 -386
- package/esm2022/lib/components/fields/dropdown-field/dropdown-field.component.mjs +0 -204
- package/esm2022/lib/components/fields/fields.module.mjs +0 -211
- package/esm2022/lib/components/fields/filters/filters.component.mjs +0 -203
- package/esm2022/lib/components/fields/input-number-field/input-number-field.component.mjs +0 -85
- package/esm2022/lib/components/fields/multiselect-field/multiselect-field.component.mjs +0 -50
- package/esm2022/lib/components/fields/percentage-field/percentage-field.component.mjs +0 -42
- package/esm2022/lib/components/fields/radio-button-field/radio-button-field.component.mjs +0 -48
- package/esm2022/lib/components/fields/range-value/range-value.component.mjs +0 -72
- package/esm2022/lib/components/fields/search-field/search-field.component.mjs +0 -33
- package/esm2022/lib/components/fields/select-button-field/select-button-field.component.mjs +0 -20
- package/esm2022/lib/components/fields/text-field/text-field.component.mjs +0 -232
- package/esm2022/lib/components/fields/textarea-field/textarea-field.component.mjs +0 -81
- package/esm2022/lib/components/generic-error-modal/generic-error-modal.component.mjs +0 -39
- package/esm2022/lib/components/generic-error-modal/generic-error-modal.module.mjs +0 -20
- package/esm2022/lib/components/generic-modal/generic-modal.component.mjs +0 -66
- package/esm2022/lib/components/generic-modal/generic-modal.module.mjs +0 -20
- package/esm2022/lib/components/menu/menu.component.mjs +0 -305
- package/esm2022/lib/components/menu/menu.module.mjs +0 -20
- package/esm2022/lib/components/menu/sub-menus-list/sub-menus-list.component.mjs +0 -42
- package/esm2022/lib/components/panel/panel.component.mjs +0 -15
- package/esm2022/lib/components/panel/panel.module.mjs +0 -19
- package/esm2022/lib/components/score/score.component.mjs +0 -17
- package/esm2022/lib/components/top-bar/top-bar.component.mjs +0 -142
- package/esm2022/lib/components/top-bar/top-bar.module.mjs +0 -20
- package/esm2022/lib/models/data-table.model.mjs +0 -23
- package/esm2022/lib/models/http-response.model.mjs +0 -2
- package/esm2022/lib/models/menu-item.model.mjs +0 -2
- package/esm2022/lib/models/vector-app.model.mjs +0 -2
- package/esm2022/lib/pipes/pipes.module.mjs +0 -50
- package/esm2022/lib/services/base-dropdown.mjs +0 -2
- package/esm2022/lib/shared/shared.module.mjs +0 -19
- package/esm2022/lib/utils/mask.util.mjs +0 -76
- package/fesm2022/ngx-vector-components.mjs +0 -4787
- package/fesm2022/ngx-vector-components.mjs.map +0 -1
- /package/{esm2022 → esm2020}/ngx-vector-components.mjs +0 -0
- /package/{index.d.ts → ngx-vector-components.d.ts} +0 -0
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/router";
|
|
4
|
-
import * as i2 from "primeng/dialog";
|
|
5
|
-
import * as i3 from "../fields/button/button.component";
|
|
6
|
-
import * as i4 from "@angular/common";
|
|
7
|
-
export class GenericModalComponent {
|
|
8
|
-
constructor(router) {
|
|
9
|
-
this.router = router;
|
|
10
|
-
this.modalMessage = {
|
|
11
|
-
fileIcon: '',
|
|
12
|
-
title: '',
|
|
13
|
-
message: [],
|
|
14
|
-
confirmButton: { label: 'Confirmar', clickFunction: () => { } },
|
|
15
|
-
cancelButton: { label: 'Voltar', clickFunction: () => { } },
|
|
16
|
-
};
|
|
17
|
-
this.isClosable = true;
|
|
18
|
-
this.hiddenActions = false;
|
|
19
|
-
this.linkLabel = '';
|
|
20
|
-
this.linkUrl = '';
|
|
21
|
-
this.maxWidth = '';
|
|
22
|
-
this.lineBreak = '';
|
|
23
|
-
this.displayChange = new EventEmitter();
|
|
24
|
-
this.onCloseModal = new EventEmitter();
|
|
25
|
-
}
|
|
26
|
-
ngOnInit() { }
|
|
27
|
-
routerLink(url) {
|
|
28
|
-
this.router.navigate([url]);
|
|
29
|
-
}
|
|
30
|
-
confirm() {
|
|
31
|
-
this.display = false;
|
|
32
|
-
this.displayChange.emit(this.display);
|
|
33
|
-
}
|
|
34
|
-
hideModal() {
|
|
35
|
-
this.display = false;
|
|
36
|
-
this.displayChange.emit(this.display);
|
|
37
|
-
this.onCloseModal.emit();
|
|
38
|
-
}
|
|
39
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: GenericModalComponent, deps: [{ token: i1.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
40
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: GenericModalComponent, selector: "vector-generic-modal", inputs: { modalMessage: "modalMessage", isClosable: "isClosable", hiddenActions: "hiddenActions", linkLabel: "linkLabel", linkUrl: "linkUrl", display: "display", maxWidth: "maxWidth", lineBreak: "lineBreak" }, outputs: { displayChange: "displayChange", onCloseModal: "onCloseModal" }, ngImport: i0, template: "<p-dialog\r\n [(visible)]=\"display\"\r\n [modal]=\"true\"\r\n [breakpoints]=\"{ '440px': '95vw' }\"\r\n [style]=\"{ width: '400px' }\"\r\n [draggable]=\"false\"\r\n [resizable]=\"false\"\r\n [blockScroll]=\"true\"\r\n [closeOnEscape]=\"false\"\r\n [closable]=\"isClosable\"\r\n (onHide)=\"hideModal()\"\r\n [ngStyle]=\"{ 'max-width': maxWidth, 'line-break': lineBreak }\"\r\n>\r\n <div class=\"content-container\">\r\n <img *ngIf=\"modalMessage.fileIcon\" class=\"emote\" src=\"assets/images/{{ modalMessage.fileIcon }}.svg\" />\r\n <p *ngIf=\"modalMessage.title\" class=\"title\">{{ modalMessage.title }}</p>\r\n <p *ngFor=\"let text of modalMessage.message\" class=\"message\" [innerHTML]=\"text\"></p>\r\n <vector-button *ngIf=\"linkLabel\" [label]=\"linkLabel\" (click)=\"routerLink(linkUrl)\"></vector-button>\r\n\r\n <div *ngIf=\"!hiddenActions\" class=\"actions\">\r\n <div class=\"grid justify-content-center w-full\">\r\n <div\r\n [ngClass]=\"{ 'col-12': !modalMessage.confirmButton, 'col-6': modalMessage.confirmButton }\"\r\n *ngIf=\"modalMessage.cancelButton\"\r\n >\r\n <vector-button\r\n (onClick)=\"modalMessage.cancelButton && modalMessage.cancelButton.clickFunction()\"\r\n [label]=\"modalMessage.cancelButton.label\"\r\n type=\"default\"\r\n ></vector-button>\r\n </div>\r\n <div\r\n [ngClass]=\"{ 'col-12': !modalMessage.cancelButton, 'col-6': modalMessage.cancelButton }\"\r\n *ngIf=\"modalMessage.confirmButton\"\r\n >\r\n <vector-button\r\n (onClick)=\"modalMessage.confirmButton && modalMessage.confirmButton.clickFunction()\"\r\n [label]=\"modalMessage.confirmButton.label\"\r\n type=\"default-filled\"\r\n ></vector-button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</p-dialog>\r\n", styles: [".content-container{display:flex;flex-direction:column;justify-content:center;align-items:center;padding-top:2rem}.content-container .title{text-align:center;color:var(--theme-dark);font-weight:600;margin-bottom:20px}.content-container .emote{height:40px;width:40px}@media (min-width: 991px){.content-container .emote{height:60px;width:60px}}.content-container .actions{margin-top:20px;width:100%;display:flex;flex-direction:row;justify-content:center;align-items:center}.content-container .actions vector-button{width:75%}.content-container .message{text-align:center}\n"], dependencies: [{ kind: "component", type: i2.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { kind: "component", type: i3.ButtonComponent, selector: "vector-button", inputs: ["disabled", "label", "type", "leftIcon", "rightIcon", "noShadow", "style"], outputs: ["onClick"] }, { kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
41
|
-
}
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: GenericModalComponent, decorators: [{
|
|
43
|
-
type: Component,
|
|
44
|
-
args: [{ selector: 'vector-generic-modal', template: "<p-dialog\r\n [(visible)]=\"display\"\r\n [modal]=\"true\"\r\n [breakpoints]=\"{ '440px': '95vw' }\"\r\n [style]=\"{ width: '400px' }\"\r\n [draggable]=\"false\"\r\n [resizable]=\"false\"\r\n [blockScroll]=\"true\"\r\n [closeOnEscape]=\"false\"\r\n [closable]=\"isClosable\"\r\n (onHide)=\"hideModal()\"\r\n [ngStyle]=\"{ 'max-width': maxWidth, 'line-break': lineBreak }\"\r\n>\r\n <div class=\"content-container\">\r\n <img *ngIf=\"modalMessage.fileIcon\" class=\"emote\" src=\"assets/images/{{ modalMessage.fileIcon }}.svg\" />\r\n <p *ngIf=\"modalMessage.title\" class=\"title\">{{ modalMessage.title }}</p>\r\n <p *ngFor=\"let text of modalMessage.message\" class=\"message\" [innerHTML]=\"text\"></p>\r\n <vector-button *ngIf=\"linkLabel\" [label]=\"linkLabel\" (click)=\"routerLink(linkUrl)\"></vector-button>\r\n\r\n <div *ngIf=\"!hiddenActions\" class=\"actions\">\r\n <div class=\"grid justify-content-center w-full\">\r\n <div\r\n [ngClass]=\"{ 'col-12': !modalMessage.confirmButton, 'col-6': modalMessage.confirmButton }\"\r\n *ngIf=\"modalMessage.cancelButton\"\r\n >\r\n <vector-button\r\n (onClick)=\"modalMessage.cancelButton && modalMessage.cancelButton.clickFunction()\"\r\n [label]=\"modalMessage.cancelButton.label\"\r\n type=\"default\"\r\n ></vector-button>\r\n </div>\r\n <div\r\n [ngClass]=\"{ 'col-12': !modalMessage.cancelButton, 'col-6': modalMessage.cancelButton }\"\r\n *ngIf=\"modalMessage.confirmButton\"\r\n >\r\n <vector-button\r\n (onClick)=\"modalMessage.confirmButton && modalMessage.confirmButton.clickFunction()\"\r\n [label]=\"modalMessage.confirmButton.label\"\r\n type=\"default-filled\"\r\n ></vector-button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</p-dialog>\r\n", styles: [".content-container{display:flex;flex-direction:column;justify-content:center;align-items:center;padding-top:2rem}.content-container .title{text-align:center;color:var(--theme-dark);font-weight:600;margin-bottom:20px}.content-container .emote{height:40px;width:40px}@media (min-width: 991px){.content-container .emote{height:60px;width:60px}}.content-container .actions{margin-top:20px;width:100%;display:flex;flex-direction:row;justify-content:center;align-items:center}.content-container .actions vector-button{width:75%}.content-container .message{text-align:center}\n"] }]
|
|
45
|
-
}], ctorParameters: function () { return [{ type: i1.Router }]; }, propDecorators: { modalMessage: [{
|
|
46
|
-
type: Input
|
|
47
|
-
}], isClosable: [{
|
|
48
|
-
type: Input
|
|
49
|
-
}], hiddenActions: [{
|
|
50
|
-
type: Input
|
|
51
|
-
}], linkLabel: [{
|
|
52
|
-
type: Input
|
|
53
|
-
}], linkUrl: [{
|
|
54
|
-
type: Input
|
|
55
|
-
}], display: [{
|
|
56
|
-
type: Input
|
|
57
|
-
}], maxWidth: [{
|
|
58
|
-
type: Input
|
|
59
|
-
}], lineBreak: [{
|
|
60
|
-
type: Input
|
|
61
|
-
}], displayChange: [{
|
|
62
|
-
type: Output
|
|
63
|
-
}], onCloseModal: [{
|
|
64
|
-
type: Output
|
|
65
|
-
}] } });
|
|
66
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2VuZXJpYy1tb2RhbC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtdmVjdG9yLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2dlbmVyaWMtbW9kYWwvZ2VuZXJpYy1tb2RhbC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtdmVjdG9yLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2dlbmVyaWMtbW9kYWwvZ2VuZXJpYy1tb2RhbC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7Ozs7QUFTL0UsTUFBTSxPQUFPLHFCQUFxQjtJQTJCaEMsWUFBbUIsTUFBYztRQUFkLFdBQU0sR0FBTixNQUFNLENBQVE7UUF6QjFCLGlCQUFZLEdBQXdCO1lBQ3pDLFFBQVEsRUFBRSxFQUFFO1lBQ1osS0FBSyxFQUFFLEVBQUU7WUFDVCxPQUFPLEVBQUUsRUFBRTtZQUNYLGFBQWEsRUFBRSxFQUFFLEtBQUssRUFBRSxXQUFXLEVBQUUsYUFBYSxFQUFFLEdBQUcsRUFBRSxHQUFFLENBQUMsRUFBRTtZQUM5RCxZQUFZLEVBQUUsRUFBRSxLQUFLLEVBQUUsUUFBUSxFQUFFLGFBQWEsRUFBRSxHQUFHLEVBQUUsR0FBRSxDQUFDLEVBQUU7U0FDM0QsQ0FBQztRQUVLLGVBQVUsR0FBWSxJQUFJLENBQUM7UUFFM0Isa0JBQWEsR0FBWSxLQUFLLENBQUM7UUFFL0IsY0FBUyxHQUFXLEVBQUUsQ0FBQztRQUV2QixZQUFPLEdBQVcsRUFBRSxDQUFDO1FBSXJCLGFBQVEsR0FBWSxFQUFFLENBQUM7UUFFdkIsY0FBUyxHQUFZLEVBQUUsQ0FBQztRQUV4QixrQkFBYSxHQUFHLElBQUksWUFBWSxFQUFXLENBQUM7UUFFNUMsaUJBQVksR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO0lBQ0wsQ0FBQztJQUVyQyxRQUFRLEtBQVUsQ0FBQztJQUVaLFVBQVUsQ0FBQyxHQUFXO1FBQzNCLElBQUksQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQztJQUM5QixDQUFDO0lBRU0sT0FBTztRQUNaLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO1FBQ3JCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUN4QyxDQUFDO0lBRU0sU0FBUztRQUNkLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO1FBQ3JCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUN0QyxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQzNCLENBQUM7OEdBNUNVLHFCQUFxQjtrR0FBckIscUJBQXFCLHlWQ1RsQywrNERBNkNBOzsyRkRwQ2EscUJBQXFCO2tCQUxqQyxTQUFTOytCQUNFLHNCQUFzQjs2RkFNekIsWUFBWTtzQkFEbEIsS0FBSztnQkFTQyxVQUFVO3NCQURoQixLQUFLO2dCQUdDLGFBQWE7c0JBRG5CLEtBQUs7Z0JBR0MsU0FBUztzQkFEZixLQUFLO2dCQUdDLE9BQU87c0JBRGIsS0FBSztnQkFHQyxPQUFPO3NCQURiLEtBQUs7Z0JBR0MsUUFBUTtzQkFEZCxLQUFLO2dCQUdDLFNBQVM7c0JBRGYsS0FBSztnQkFHQyxhQUFhO3NCQURuQixNQUFNO2dCQUdBLFlBQVk7c0JBRGxCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFJvdXRlciB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcbmltcG9ydCB7IEdlbmVyaWNNb2RhbE1lc3NhZ2UgfSBmcm9tICcuLi8uLi9tb2RlbHMvZ2VuZXJpYy1tb2RhbC5tb2RlbCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3ZlY3Rvci1nZW5lcmljLW1vZGFsJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vZ2VuZXJpYy1tb2RhbC5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vZ2VuZXJpYy1tb2RhbC5jb21wb25lbnQuc2NzcyddLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgR2VuZXJpY01vZGFsQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBtb2RhbE1lc3NhZ2U6IEdlbmVyaWNNb2RhbE1lc3NhZ2UgPSB7XHJcbiAgICBmaWxlSWNvbjogJycsXHJcbiAgICB0aXRsZTogJycsXHJcbiAgICBtZXNzYWdlOiBbXSxcclxuICAgIGNvbmZpcm1CdXR0b246IHsgbGFiZWw6ICdDb25maXJtYXInLCBjbGlja0Z1bmN0aW9uOiAoKSA9PiB7fSB9LFxyXG4gICAgY2FuY2VsQnV0dG9uOiB7IGxhYmVsOiAnVm9sdGFyJywgY2xpY2tGdW5jdGlvbjogKCkgPT4ge30gfSxcclxuICB9O1xyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIGlzQ2xvc2FibGU6IGJvb2xlYW4gPSB0cnVlO1xyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIGhpZGRlbkFjdGlvbnM6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBsaW5rTGFiZWw6IHN0cmluZyA9ICcnO1xyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIGxpbmtVcmw6IHN0cmluZyA9ICcnO1xyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIGRpc3BsYXkhOiBib29sZWFuO1xyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIG1heFdpZHRoPzogc3RyaW5nID0gJyc7XHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgbGluZUJyZWFrPzogc3RyaW5nID0gJyc7XHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIGRpc3BsYXlDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIG9uQ2xvc2VNb2RhbCA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcclxuICBjb25zdHJ1Y3RvcihwdWJsaWMgcm91dGVyOiBSb3V0ZXIpIHt9XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge31cclxuXHJcbiAgcHVibGljIHJvdXRlckxpbmsodXJsOiBzdHJpbmcpIHtcclxuICAgIHRoaXMucm91dGVyLm5hdmlnYXRlKFt1cmxdKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBjb25maXJtKCkge1xyXG4gICAgdGhpcy5kaXNwbGF5ID0gZmFsc2U7XHJcbiAgICB0aGlzLmRpc3BsYXlDaGFuZ2UuZW1pdCh0aGlzLmRpc3BsYXkpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGhpZGVNb2RhbCgpIHtcclxuICAgIHRoaXMuZGlzcGxheSA9IGZhbHNlO1xyXG4gICAgdGhpcy5kaXNwbGF5Q2hhbmdlLmVtaXQodGhpcy5kaXNwbGF5KTtcclxuICAgIHRoaXMub25DbG9zZU1vZGFsLmVtaXQoKTtcclxuICB9XHJcbn1cclxuIiwiPHAtZGlhbG9nXHJcbiAgWyh2aXNpYmxlKV09XCJkaXNwbGF5XCJcclxuICBbbW9kYWxdPVwidHJ1ZVwiXHJcbiAgW2JyZWFrcG9pbnRzXT1cInsgJzQ0MHB4JzogJzk1dncnIH1cIlxyXG4gIFtzdHlsZV09XCJ7IHdpZHRoOiAnNDAwcHgnIH1cIlxyXG4gIFtkcmFnZ2FibGVdPVwiZmFsc2VcIlxyXG4gIFtyZXNpemFibGVdPVwiZmFsc2VcIlxyXG4gIFtibG9ja1Njcm9sbF09XCJ0cnVlXCJcclxuICBbY2xvc2VPbkVzY2FwZV09XCJmYWxzZVwiXHJcbiAgW2Nsb3NhYmxlXT1cImlzQ2xvc2FibGVcIlxyXG4gIChvbkhpZGUpPVwiaGlkZU1vZGFsKClcIlxyXG4gIFtuZ1N0eWxlXT1cInsgJ21heC13aWR0aCc6IG1heFdpZHRoLCAnbGluZS1icmVhayc6IGxpbmVCcmVhayB9XCJcclxuPlxyXG4gIDxkaXYgY2xhc3M9XCJjb250ZW50LWNvbnRhaW5lclwiPlxyXG4gICAgPGltZyAqbmdJZj1cIm1vZGFsTWVzc2FnZS5maWxlSWNvblwiIGNsYXNzPVwiZW1vdGVcIiBzcmM9XCJhc3NldHMvaW1hZ2VzL3t7IG1vZGFsTWVzc2FnZS5maWxlSWNvbiB9fS5zdmdcIiAvPlxyXG4gICAgPHAgKm5nSWY9XCJtb2RhbE1lc3NhZ2UudGl0bGVcIiBjbGFzcz1cInRpdGxlXCI+e3sgbW9kYWxNZXNzYWdlLnRpdGxlIH19PC9wPlxyXG4gICAgPHAgKm5nRm9yPVwibGV0IHRleHQgb2YgbW9kYWxNZXNzYWdlLm1lc3NhZ2VcIiBjbGFzcz1cIm1lc3NhZ2VcIiBbaW5uZXJIVE1MXT1cInRleHRcIj48L3A+XHJcbiAgICA8dmVjdG9yLWJ1dHRvbiAqbmdJZj1cImxpbmtMYWJlbFwiIFtsYWJlbF09XCJsaW5rTGFiZWxcIiAoY2xpY2spPVwicm91dGVyTGluayhsaW5rVXJsKVwiPjwvdmVjdG9yLWJ1dHRvbj5cclxuXHJcbiAgICA8ZGl2ICpuZ0lmPVwiIWhpZGRlbkFjdGlvbnNcIiBjbGFzcz1cImFjdGlvbnNcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cImdyaWQganVzdGlmeS1jb250ZW50LWNlbnRlciB3LWZ1bGxcIj5cclxuICAgICAgICA8ZGl2XHJcbiAgICAgICAgICBbbmdDbGFzc109XCJ7ICdjb2wtMTInOiAhbW9kYWxNZXNzYWdlLmNvbmZpcm1CdXR0b24sICdjb2wtNic6IG1vZGFsTWVzc2FnZS5jb25maXJtQnV0dG9uIH1cIlxyXG4gICAgICAgICAgKm5nSWY9XCJtb2RhbE1lc3NhZ2UuY2FuY2VsQnV0dG9uXCJcclxuICAgICAgICA+XHJcbiAgICAgICAgICA8dmVjdG9yLWJ1dHRvblxyXG4gICAgICAgICAgICAob25DbGljayk9XCJtb2RhbE1lc3NhZ2UuY2FuY2VsQnV0dG9uICYmIG1vZGFsTWVzc2FnZS5jYW5jZWxCdXR0b24uY2xpY2tGdW5jdGlvbigpXCJcclxuICAgICAgICAgICAgW2xhYmVsXT1cIm1vZGFsTWVzc2FnZS5jYW5jZWxCdXR0b24ubGFiZWxcIlxyXG4gICAgICAgICAgICB0eXBlPVwiZGVmYXVsdFwiXHJcbiAgICAgICAgICA+PC92ZWN0b3ItYnV0dG9uPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXZcclxuICAgICAgICAgIFtuZ0NsYXNzXT1cInsgJ2NvbC0xMic6ICFtb2RhbE1lc3NhZ2UuY2FuY2VsQnV0dG9uLCAnY29sLTYnOiBtb2RhbE1lc3NhZ2UuY2FuY2VsQnV0dG9uIH1cIlxyXG4gICAgICAgICAgKm5nSWY9XCJtb2RhbE1lc3NhZ2UuY29uZmlybUJ1dHRvblwiXHJcbiAgICAgICAgPlxyXG4gICAgICAgICAgPHZlY3Rvci1idXR0b25cclxuICAgICAgICAgICAgKG9uQ2xpY2spPVwibW9kYWxNZXNzYWdlLmNvbmZpcm1CdXR0b24gJiYgbW9kYWxNZXNzYWdlLmNvbmZpcm1CdXR0b24uY2xpY2tGdW5jdGlvbigpXCJcclxuICAgICAgICAgICAgW2xhYmVsXT1cIm1vZGFsTWVzc2FnZS5jb25maXJtQnV0dG9uLmxhYmVsXCJcclxuICAgICAgICAgICAgdHlwZT1cImRlZmF1bHQtZmlsbGVkXCJcclxuICAgICAgICAgID48L3ZlY3Rvci1idXR0b24+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgPC9kaXY+XHJcbjwvcC1kaWFsb2c+XHJcbiJdfQ==
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { DialogModule } from 'primeng/dialog';
|
|
3
|
-
import { FieldsModule } from '..';
|
|
4
|
-
import { SharedModule } from '../../shared/shared.module';
|
|
5
|
-
import { GenericModalComponent } from './generic-modal.component';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export class GenericModalModule {
|
|
8
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: GenericModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
9
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: GenericModalModule, declarations: [GenericModalComponent], imports: [DialogModule, FieldsModule, SharedModule], exports: [GenericModalComponent] }); }
|
|
10
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: GenericModalModule, imports: [DialogModule, FieldsModule, SharedModule] }); }
|
|
11
|
-
}
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: GenericModalModule, decorators: [{
|
|
13
|
-
type: NgModule,
|
|
14
|
-
args: [{
|
|
15
|
-
declarations: [GenericModalComponent],
|
|
16
|
-
exports: [GenericModalComponent],
|
|
17
|
-
imports: [DialogModule, FieldsModule, SharedModule],
|
|
18
|
-
}]
|
|
19
|
-
}] });
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2VuZXJpYy1tb2RhbC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtdmVjdG9yLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2dlbmVyaWMtbW9kYWwvZ2VuZXJpYy1tb2RhbC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDOUMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLElBQUksQ0FBQztBQUNsQyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDMUQsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMkJBQTJCLENBQUM7O0FBT2xFLE1BQU0sT0FBTyxrQkFBa0I7OEdBQWxCLGtCQUFrQjsrR0FBbEIsa0JBQWtCLGlCQUpkLHFCQUFxQixhQUUxQixZQUFZLEVBQUUsWUFBWSxFQUFFLFlBQVksYUFEeEMscUJBQXFCOytHQUdwQixrQkFBa0IsWUFGbkIsWUFBWSxFQUFFLFlBQVksRUFBRSxZQUFZOzsyRkFFdkMsa0JBQWtCO2tCQUw5QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLHFCQUFxQixDQUFDO29CQUNyQyxPQUFPLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQztvQkFDaEMsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFlBQVksRUFBRSxZQUFZLENBQUM7aUJBQ3BEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRGlhbG9nTW9kdWxlIH0gZnJvbSAncHJpbWVuZy9kaWFsb2cnO1xyXG5pbXBvcnQgeyBGaWVsZHNNb2R1bGUgfSBmcm9tICcuLic7XHJcbmltcG9ydCB7IFNoYXJlZE1vZHVsZSB9IGZyb20gJy4uLy4uL3NoYXJlZC9zaGFyZWQubW9kdWxlJztcclxuaW1wb3J0IHsgR2VuZXJpY01vZGFsQ29tcG9uZW50IH0gZnJvbSAnLi9nZW5lcmljLW1vZGFsLmNvbXBvbmVudCc7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gIGRlY2xhcmF0aW9uczogW0dlbmVyaWNNb2RhbENvbXBvbmVudF0sXHJcbiAgZXhwb3J0czogW0dlbmVyaWNNb2RhbENvbXBvbmVudF0sXHJcbiAgaW1wb3J0czogW0RpYWxvZ01vZHVsZSwgRmllbGRzTW9kdWxlLCBTaGFyZWRNb2R1bGVdLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgR2VuZXJpY01vZGFsTW9kdWxlIHt9XHJcbiJdfQ==
|