ngx-vector-components 4.92.0 → 4.93.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 +1220 -1214
- 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/esm2022/lib/components/badge/badge.component.mjs +39 -0
- package/esm2022/lib/components/badge/badge.module.mjs +19 -0
- package/{esm2020 → esm2022}/lib/components/badge/index.mjs +3 -3
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +66 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.module.mjs +18 -0
- package/{esm2020 → esm2022}/lib/components/breadcrumb/index.mjs +3 -3
- package/esm2022/lib/components/crud-base/crud-base.component.mjs +47 -0
- package/{esm2020 → esm2022}/lib/components/crud-base/index.mjs +2 -2
- package/esm2022/lib/components/crud-footer/crud-footer.component.mjs +32 -0
- package/esm2022/lib/components/crud-footer/crud-footer.module.mjs +20 -0
- package/{esm2020 → esm2022}/lib/components/crud-footer/index.mjs +3 -3
- package/esm2022/lib/components/crud-header/crud-header.component.mjs +30 -0
- package/esm2022/lib/components/crud-header/crud-header.module.mjs +19 -0
- package/{esm2020 → esm2022}/lib/components/crud-header/index.mjs +3 -3
- package/esm2022/lib/components/crud-history/crud-history.component.mjs +82 -0
- package/esm2022/lib/components/crud-history/crud-history.module.mjs +20 -0
- package/{esm2020 → esm2022}/lib/components/crud-history/index.mjs +3 -3
- package/esm2022/lib/components/fields/button/button.component.mjs +41 -0
- package/{esm2020 → esm2022}/lib/components/fields/button/index.mjs +2 -2
- package/esm2022/lib/components/fields/calendar-field/calendar-field.component.mjs +74 -0
- package/{esm2020 → esm2022}/lib/components/fields/calendar-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/checkbox-field/checkbox-field.component.mjs +46 -0
- package/{esm2020 → esm2022}/lib/components/fields/checkbox-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/currency-field/currency-field.component.mjs +98 -0
- package/{esm2020 → esm2022}/lib/components/fields/currency-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/data-table/data-table.component.mjs +386 -0
- package/{esm2020 → esm2022}/lib/components/fields/data-table/index.mjs +2 -2
- package/esm2022/lib/components/fields/dropdown-field/dropdown-field.component.mjs +204 -0
- package/{esm2020 → esm2022}/lib/components/fields/dropdown-field/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/components/fields/field-error-message/field-error-message.component.mjs +30 -30
- package/{esm2020 → esm2022}/lib/components/fields/field-error-message/index.mjs +2 -2
- package/esm2022/lib/components/fields/fields.module.mjs +211 -0
- package/esm2022/lib/components/fields/filters/filters.component.mjs +203 -0
- package/{esm2020 → esm2022}/lib/components/fields/filters/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/components/fields/index.mjs +19 -19
- package/{esm2020 → esm2022}/lib/components/fields/input-number-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/input-number-field/input-number-field.component.mjs +85 -0
- package/{esm2020 → esm2022}/lib/components/fields/multiselect-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/multiselect-field/multiselect-field.component.mjs +50 -0
- package/{esm2020 → esm2022}/lib/components/fields/percentage-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/percentage-field/percentage-field.component.mjs +42 -0
- package/{esm2020 → esm2022}/lib/components/fields/radio-button-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/radio-button-field/radio-button-field.component.mjs +48 -0
- package/{esm2020 → esm2022}/lib/components/fields/range-value/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/components/fields/range-value/range-value.component.mjs +72 -72
- package/{esm2020 → esm2022}/lib/components/fields/search-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/search-field/search-field.component.mjs +33 -0
- package/{esm2020 → esm2022}/lib/components/fields/select-button-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/select-button-field/select-button-field.component.mjs +20 -0
- package/{esm2020 → esm2022}/lib/components/fields/text-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/text-field/text-field.component.mjs +229 -0
- package/{esm2020 → esm2022}/lib/components/fields/textarea-field/index.mjs +2 -2
- package/esm2022/lib/components/fields/textarea-field/textarea-field.component.mjs +81 -0
- package/esm2022/lib/components/generic-error-modal/generic-error-modal.component.mjs +39 -0
- package/esm2022/lib/components/generic-error-modal/generic-error-modal.module.mjs +20 -0
- package/{esm2020 → esm2022}/lib/components/generic-error-modal/index.mjs +3 -3
- package/esm2022/lib/components/generic-modal/generic-modal.component.mjs +66 -0
- package/esm2022/lib/components/generic-modal/generic-modal.module.mjs +20 -0
- package/{esm2020 → esm2022}/lib/components/generic-modal/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/components/index.mjs +14 -14
- package/{esm2020 → esm2022}/lib/components/menu/index.mjs +4 -4
- package/esm2022/lib/components/menu/menu.component.mjs +305 -0
- package/esm2022/lib/components/menu/menu.module.mjs +20 -0
- package/esm2022/lib/components/menu/sub-menus-list/sub-menus-list.component.mjs +42 -0
- package/{esm2020 → esm2022}/lib/components/panel/index.mjs +3 -3
- package/esm2022/lib/components/panel/panel.component.mjs +15 -0
- package/esm2022/lib/components/panel/panel.module.mjs +19 -0
- package/{esm2020 → esm2022}/lib/components/score/index.mjs +3 -3
- package/esm2022/lib/components/score/score.component.mjs +17 -0
- package/{esm2020 → esm2022}/lib/components/score/score.module.mjs +16 -16
- package/{esm2020 → esm2022}/lib/components/top-bar/index.mjs +3 -3
- package/esm2022/lib/components/top-bar/top-bar.component.mjs +142 -0
- package/esm2022/lib/components/top-bar/top-bar.module.mjs +20 -0
- package/{esm2020 → esm2022}/lib/guards/crud-list-has-items.guard.mjs +22 -22
- package/{esm2020 → esm2022}/lib/guards/get-token-by-guid.guard.mjs +54 -54
- package/{esm2020 → esm2022}/lib/guards/has-permission.guard.mjs +27 -27
- package/{esm2020 → esm2022}/lib/guards/index.mjs +6 -6
- package/{esm2020 → esm2022}/lib/guards/role.guard.mjs +24 -24
- package/{esm2020 → esm2022}/lib/guards/token-is-present.guard.mjs +26 -26
- package/{esm2020 → esm2022}/lib/interceptors/http-interceptor.mjs +185 -185
- package/{esm2020 → esm2022}/lib/interceptors/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/models/app-name.enum.mjs +10 -10
- package/{esm2020 → esm2022}/lib/models/boolean-type.enum.mjs +6 -6
- package/{esm2020 → esm2022}/lib/models/crud-history.model.mjs +3 -3
- package/{esm2020 → esm2022}/lib/models/crud-mode.enum.mjs +7 -7
- package/{esm2020 → esm2022}/lib/models/currency.enum.mjs +7 -7
- package/esm2022/lib/models/data-table.model.mjs +23 -0
- package/{esm2020 → esm2022}/lib/models/document-type.enum.mjs +6 -6
- package/{esm2020 → esm2022}/lib/models/filters.model.mjs +2 -2
- package/{esm2020 → esm2022}/lib/models/generic-modal.model.mjs +2 -2
- package/esm2022/lib/models/http-response.model.mjs +2 -0
- package/{esm2020 → esm2022}/lib/models/index.mjs +18 -18
- package/{esm2020 → esm2022}/lib/models/ip-info.enum.mjs +2 -2
- package/{esm2020 → esm2022}/lib/models/list-item.model.mjs +2 -2
- package/{esm2020 → esm2022}/lib/models/locale.enum.mjs +7 -7
- package/esm2022/lib/models/menu-item.model.mjs +2 -0
- package/{esm2020 → esm2022}/lib/models/message-status.enum.mjs +8 -8
- package/{esm2020 → esm2022}/lib/models/profile.model.mjs +271 -271
- package/{esm2020 → esm2022}/lib/models/role.enum.mjs +5 -5
- package/{esm2020 → esm2022}/lib/models/status.enum.mjs +8 -8
- package/{esm2020 → esm2022}/lib/models/topbar.model.mjs +2 -2
- package/esm2022/lib/models/vector-app.model.mjs +2 -0
- package/{esm2020 → esm2022}/lib/models/vector-notification.model.mjs +2 -2
- package/{esm2020 → esm2022}/lib/models/view.enum.mjs +7 -7
- package/{esm2020 → esm2022}/lib/pipes/currency-brl.pipe.mjs +18 -18
- package/{esm2020 → esm2022}/lib/pipes/format-document.pipe.mjs +17 -17
- package/{esm2020 → esm2022}/lib/pipes/index.mjs +9 -9
- package/{esm2020 → esm2022}/lib/pipes/mask.pipe.mjs +21 -21
- package/{esm2020 → esm2022}/lib/pipes/not-hidden.pipe.mjs +16 -16
- package/{esm2020 → esm2022}/lib/pipes/only-active.pipe.mjs +16 -16
- package/{esm2020 → esm2022}/lib/pipes/pipes.module.mjs +50 -50
- package/{esm2020 → esm2022}/lib/pipes/remove-last-child.pipe.mjs +18 -18
- package/{esm2020 → esm2022}/lib/pipes/unread-notifications.pipe.mjs +15 -15
- package/{esm2020 → esm2022}/lib/resolvers/get-selected-crud-item.resolver.mjs +28 -28
- package/{esm2020 → esm2022}/lib/resolvers/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/services/auth.service.mjs +77 -77
- package/esm2022/lib/services/base-dropdown.mjs +2 -0
- package/{esm2020 → esm2022}/lib/services/crud-base.service.mjs +14 -14
- package/{esm2020 → esm2022}/lib/services/enum.service.mjs +43 -43
- package/{esm2020 → esm2022}/lib/services/error-message.service.mjs +16 -16
- package/{esm2020 → esm2022}/lib/services/geolocation.service.mjs +23 -23
- package/{esm2020 → esm2022}/lib/services/index.mjs +13 -13
- package/{esm2020 → esm2022}/lib/services/loading.service.mjs +15 -15
- package/{esm2020 → esm2022}/lib/services/menu.service.mjs +152 -152
- package/{esm2020 → esm2022}/lib/services/modal.service.mjs +15 -15
- package/{esm2020 → esm2022}/lib/services/notifications.service.mjs +64 -64
- package/{esm2020 → esm2022}/lib/services/profile.service.mjs +103 -103
- package/{esm2020 → esm2022}/lib/services/storage.service.mjs +108 -108
- package/esm2022/lib/shared/shared.module.mjs +19 -0
- package/{esm2020 → esm2022}/lib/utils/cpf-cnpj-validator.util.mjs +116 -116
- package/{esm2020 → esm2022}/lib/utils/file.util.mjs +15 -15
- package/{esm2020 → esm2022}/lib/utils/index.mjs +8 -8
- package/esm2022/lib/utils/mask.util.mjs +76 -0
- package/{esm2020 → esm2022}/lib/utils/object.util.mjs +27 -27
- package/{esm2020 → esm2022}/lib/utils/string.util.mjs +16 -16
- package/{esm2020 → esm2022}/lib/utils/validation.util.mjs +234 -234
- package/{esm2020 → esm2022}/lib/utils/window.util.mjs +9 -9
- package/{esm2020 → esm2022}/ngx-vector-components.mjs +4 -4
- package/{esm2020 → esm2022}/public-api.mjs +9 -9
- package/fesm2022/ngx-vector-components.mjs +4784 -0
- package/fesm2022/ngx-vector-components.mjs.map +1 -0
- package/{ngx-vector-components.d.ts → index.d.ts} +5 -5
- package/lib/components/badge/badge.component.d.ts +15 -15
- package/lib/components/badge/badge.module.d.ts +9 -9
- package/lib/components/badge/index.d.ts +2 -2
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +19 -19
- package/lib/components/breadcrumb/breadcrumb.module.d.ts +8 -8
- package/lib/components/breadcrumb/index.d.ts +2 -2
- package/lib/components/crud-base/crud-base.component.d.ts +20 -20
- package/lib/components/crud-base/index.d.ts +1 -1
- package/lib/components/crud-footer/crud-footer.component.d.ts +13 -13
- package/lib/components/crud-footer/crud-footer.module.d.ts +10 -10
- package/lib/components/crud-footer/index.d.ts +2 -2
- package/lib/components/crud-header/crud-header.component.d.ts +11 -11
- package/lib/components/crud-header/crud-header.module.d.ts +9 -9
- package/lib/components/crud-header/index.d.ts +2 -2
- package/lib/components/crud-history/crud-history.component.d.ts +12 -12
- package/lib/components/crud-history/crud-history.module.d.ts +10 -10
- package/lib/components/crud-history/index.d.ts +2 -2
- package/lib/components/fields/button/button.component.d.ts +17 -17
- package/lib/components/fields/button/index.d.ts +1 -1
- package/lib/components/fields/calendar-field/calendar-field.component.d.ts +23 -23
- package/lib/components/fields/calendar-field/index.d.ts +1 -1
- package/lib/components/fields/checkbox-field/checkbox-field.component.d.ts +19 -19
- package/lib/components/fields/checkbox-field/index.d.ts +1 -1
- package/lib/components/fields/currency-field/currency-field.component.d.ts +32 -32
- package/lib/components/fields/currency-field/index.d.ts +1 -1
- package/lib/components/fields/data-table/data-table.component.d.ts +82 -82
- package/lib/components/fields/data-table/index.d.ts +1 -1
- package/lib/components/fields/dropdown-field/dropdown-field.component.d.ts +52 -52
- package/lib/components/fields/dropdown-field/index.d.ts +1 -1
- package/lib/components/fields/field-error-message/field-error-message.component.d.ts +10 -10
- package/lib/components/fields/field-error-message/index.d.ts +1 -1
- package/lib/components/fields/fields.module.d.ts +48 -48
- package/lib/components/fields/filters/filters.component.d.ts +63 -63
- package/lib/components/fields/filters/index.d.ts +1 -1
- package/lib/components/fields/index.d.ts +18 -18
- package/lib/components/fields/input-number-field/index.d.ts +1 -1
- package/lib/components/fields/input-number-field/input-number-field.component.d.ts +28 -28
- package/lib/components/fields/multiselect-field/index.d.ts +1 -1
- package/lib/components/fields/multiselect-field/multiselect-field.component.d.ts +16 -16
- package/lib/components/fields/percentage-field/index.d.ts +1 -1
- package/lib/components/fields/percentage-field/percentage-field.component.d.ts +16 -16
- package/lib/components/fields/radio-button-field/index.d.ts +1 -1
- package/lib/components/fields/radio-button-field/radio-button-field.component.d.ts +25 -25
- package/lib/components/fields/range-value/index.d.ts +1 -1
- package/lib/components/fields/range-value/range-value.component.d.ts +18 -18
- package/lib/components/fields/search-field/index.d.ts +1 -1
- package/lib/components/fields/search-field/search-field.component.d.ts +14 -14
- package/lib/components/fields/select-button-field/index.d.ts +1 -1
- package/lib/components/fields/select-button-field/select-button-field.component.d.ts +9 -9
- package/lib/components/fields/text-field/index.d.ts +1 -1
- package/lib/components/fields/text-field/text-field.component.d.ts +54 -54
- package/lib/components/fields/textarea-field/index.d.ts +1 -1
- package/lib/components/fields/textarea-field/textarea-field.component.d.ts +22 -22
- package/lib/components/generic-error-modal/generic-error-modal.component.d.ts +16 -15
- package/lib/components/generic-error-modal/generic-error-modal.module.d.ts +10 -10
- package/lib/components/generic-error-modal/index.d.ts +2 -2
- package/lib/components/generic-modal/generic-modal.component.d.ts +24 -24
- package/lib/components/generic-modal/generic-modal.module.d.ts +10 -10
- package/lib/components/generic-modal/index.d.ts +2 -2
- package/lib/components/index.d.ts +13 -13
- package/lib/components/menu/index.d.ts +3 -3
- package/lib/components/menu/menu.component.d.ts +53 -53
- package/lib/components/menu/menu.module.d.ts +10 -10
- package/lib/components/menu/sub-menus-list/sub-menus-list.component.d.ts +14 -14
- package/lib/components/panel/index.d.ts +2 -2
- package/lib/components/panel/panel.component.d.ts +8 -8
- package/lib/components/panel/panel.module.d.ts +9 -9
- package/lib/components/score/index.d.ts +2 -2
- package/lib/components/score/score.component.d.ts +9 -9
- package/lib/components/score/score.module.d.ts +7 -7
- package/lib/components/top-bar/index.d.ts +2 -2
- package/lib/components/top-bar/top-bar.component.d.ts +48 -48
- package/lib/components/top-bar/top-bar.module.d.ts +10 -10
- package/lib/guards/crud-list-has-items.guard.d.ts +10 -10
- package/lib/guards/get-token-by-guid.guard.d.ts +15 -15
- package/lib/guards/has-permission.guard.d.ts +13 -13
- package/lib/guards/index.d.ts +5 -5
- package/lib/guards/role.guard.d.ts +11 -11
- package/lib/guards/token-is-present.guard.d.ts +11 -11
- package/lib/interceptors/http-interceptor.d.ts +31 -31
- package/lib/interceptors/index.d.ts +1 -1
- package/lib/models/app-name.enum.d.ts +8 -8
- package/lib/models/boolean-type.enum.d.ts +4 -4
- package/lib/models/crud-history.model.d.ts +13 -13
- package/lib/models/crud-mode.enum.d.ts +5 -5
- package/lib/models/currency.enum.d.ts +5 -5
- package/lib/models/data-table.model.d.ts +65 -65
- package/lib/models/document-type.enum.d.ts +4 -4
- package/lib/models/filters.model.d.ts +4 -4
- package/lib/models/generic-modal.model.d.ts +13 -13
- package/lib/models/http-response.model.d.ts +48 -48
- package/lib/models/index.d.ts +17 -17
- package/lib/models/ip-info.enum.d.ts +6 -6
- package/lib/models/list-item.model.d.ts +7 -7
- package/lib/models/locale.enum.d.ts +5 -5
- package/lib/models/menu-item.model.d.ts +16 -16
- package/lib/models/message-status.enum.d.ts +6 -6
- package/lib/models/profile.model.d.ts +292 -292
- package/lib/models/role.enum.d.ts +3 -3
- package/lib/models/status.enum.d.ts +6 -6
- package/lib/models/topbar.model.d.ts +5 -5
- package/lib/models/vector-app.model.d.ts +9 -9
- package/lib/models/vector-notification.model.d.ts +8 -8
- package/lib/models/view.enum.d.ts +5 -5
- package/lib/pipes/currency-brl.pipe.d.ts +7 -7
- package/lib/pipes/format-document.pipe.d.ts +7 -7
- package/lib/pipes/index.d.ts +8 -8
- package/lib/pipes/mask.pipe.d.ts +7 -7
- package/lib/pipes/not-hidden.pipe.d.ts +7 -7
- package/lib/pipes/only-active.pipe.d.ts +7 -7
- package/lib/pipes/pipes.module.d.ts +13 -13
- package/lib/pipes/remove-last-child.pipe.d.ts +7 -7
- package/lib/pipes/unread-notifications.pipe.d.ts +9 -9
- package/lib/resolvers/get-selected-crud-item.resolver.d.ts +10 -10
- package/lib/resolvers/index.d.ts +1 -1
- package/lib/services/auth.service.d.ts +24 -24
- package/lib/services/base-dropdown.d.ts +7 -7
- package/lib/services/crud-base.service.d.ts +7 -7
- package/lib/services/enum.service.d.ts +13 -13
- package/lib/services/error-message.service.d.ts +8 -8
- package/lib/services/geolocation.service.d.ts +13 -13
- package/lib/services/index.d.ts +12 -12
- package/lib/services/loading.service.d.ts +7 -7
- package/lib/services/menu.service.d.ts +35 -35
- package/lib/services/modal.service.d.ts +7 -7
- package/lib/services/notifications.service.d.ts +13 -13
- package/lib/services/profile.service.d.ts +26 -26
- package/lib/services/storage.service.d.ts +43 -43
- package/lib/shared/shared.module.d.ts +10 -10
- package/lib/utils/cpf-cnpj-validator.util.d.ts +5 -5
- package/lib/utils/file.util.d.ts +4 -4
- package/lib/utils/index.d.ts +7 -7
- package/lib/utils/mask.util.d.ts +21 -21
- package/lib/utils/object.util.d.ts +5 -5
- package/lib/utils/string.util.d.ts +4 -4
- package/lib/utils/validation.util.d.ts +17 -17
- package/lib/utils/window.util.d.ts +4 -4
- package/package.json +18 -24
- package/public-api.d.ts +8 -8
- package/esm2020/lib/components/badge/badge.component.mjs +0 -39
- package/esm2020/lib/components/badge/badge.module.mjs +0 -19
- package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +0 -66
- package/esm2020/lib/components/breadcrumb/breadcrumb.module.mjs +0 -18
- package/esm2020/lib/components/crud-base/crud-base.component.mjs +0 -47
- package/esm2020/lib/components/crud-footer/crud-footer.component.mjs +0 -32
- package/esm2020/lib/components/crud-footer/crud-footer.module.mjs +0 -20
- package/esm2020/lib/components/crud-header/crud-header.component.mjs +0 -30
- package/esm2020/lib/components/crud-header/crud-header.module.mjs +0 -19
- package/esm2020/lib/components/crud-history/crud-history.component.mjs +0 -82
- package/esm2020/lib/components/crud-history/crud-history.module.mjs +0 -20
- package/esm2020/lib/components/fields/button/button.component.mjs +0 -41
- package/esm2020/lib/components/fields/calendar-field/calendar-field.component.mjs +0 -74
- package/esm2020/lib/components/fields/checkbox-field/checkbox-field.component.mjs +0 -46
- package/esm2020/lib/components/fields/currency-field/currency-field.component.mjs +0 -98
- package/esm2020/lib/components/fields/data-table/data-table.component.mjs +0 -386
- package/esm2020/lib/components/fields/dropdown-field/dropdown-field.component.mjs +0 -204
- package/esm2020/lib/components/fields/fields.module.mjs +0 -213
- package/esm2020/lib/components/fields/filters/filters.component.mjs +0 -203
- package/esm2020/lib/components/fields/input-number-field/input-number-field.component.mjs +0 -85
- package/esm2020/lib/components/fields/multiselect-field/multiselect-field.component.mjs +0 -50
- package/esm2020/lib/components/fields/percentage-field/percentage-field.component.mjs +0 -42
- package/esm2020/lib/components/fields/radio-button-field/radio-button-field.component.mjs +0 -48
- package/esm2020/lib/components/fields/search-field/search-field.component.mjs +0 -33
- package/esm2020/lib/components/fields/select-button-field/select-button-field.component.mjs +0 -20
- package/esm2020/lib/components/fields/text-field/text-field.component.mjs +0 -229
- package/esm2020/lib/components/fields/textarea-field/textarea-field.component.mjs +0 -81
- package/esm2020/lib/components/generic-error-modal/generic-error-modal.component.mjs +0 -36
- package/esm2020/lib/components/generic-error-modal/generic-error-modal.module.mjs +0 -20
- package/esm2020/lib/components/generic-modal/generic-modal.component.mjs +0 -66
- package/esm2020/lib/components/generic-modal/generic-modal.module.mjs +0 -20
- package/esm2020/lib/components/menu/menu.component.mjs +0 -305
- package/esm2020/lib/components/menu/menu.module.mjs +0 -20
- package/esm2020/lib/components/menu/sub-menus-list/sub-menus-list.component.mjs +0 -42
- package/esm2020/lib/components/panel/panel.component.mjs +0 -15
- package/esm2020/lib/components/panel/panel.module.mjs +0 -19
- package/esm2020/lib/components/score/score.component.mjs +0 -17
- package/esm2020/lib/components/top-bar/top-bar.component.mjs +0 -142
- package/esm2020/lib/components/top-bar/top-bar.module.mjs +0 -20
- package/esm2020/lib/models/data-table.model.mjs +0 -23
- package/esm2020/lib/models/http-response.model.mjs +0 -2
- package/esm2020/lib/models/menu-item.model.mjs +0 -2
- package/esm2020/lib/models/vector-app.model.mjs +0 -2
- package/esm2020/lib/services/base-dropdown.mjs +0 -2
- package/esm2020/lib/shared/shared.module.mjs +0 -19
- package/esm2020/lib/utils/mask.util.mjs +0 -76
- package/fesm2015/ngx-vector-components.mjs +0 -4805
- package/fesm2015/ngx-vector-components.mjs.map +0 -1
- package/fesm2020/ngx-vector-components.mjs +0 -4783
- package/fesm2020/ngx-vector-components.mjs.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
/// <amd-module name="ngx-vector-components" />
|
|
5
|
-
export * from './public-api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
/// <amd-module name="ngx-vector-components" />
|
|
5
|
+
export * from './public-api';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { Status } from '../../models';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class BadgeComponent implements OnInit {
|
|
5
|
-
type?: Status;
|
|
6
|
-
label?: string;
|
|
7
|
-
customColor?: string;
|
|
8
|
-
customBackgroundColor?: string;
|
|
9
|
-
tooltip?: string;
|
|
10
|
-
constructor();
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
getStatusColor(): "
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "vector-badge", never, { "type": "type"; "label": "label"; "customColor": "customColor"; "customBackgroundColor": "customBackgroundColor"; "tooltip": "tooltip"; }, {}, never, never>;
|
|
15
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Status } from '../../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BadgeComponent implements OnInit {
|
|
5
|
+
type?: Status;
|
|
6
|
+
label?: string;
|
|
7
|
+
customColor?: string;
|
|
8
|
+
customBackgroundColor?: string;
|
|
9
|
+
tooltip?: string;
|
|
10
|
+
constructor();
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
getStatusColor(): "badge-warning" | "badge-success" | "badge-error" | "badge-info" | "";
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "vector-badge", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; "customBackgroundColor": { "alias": "customBackgroundColor"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./badge.component";
|
|
3
|
-
import * as i2 from "../../shared/shared.module";
|
|
4
|
-
import * as i3 from "primeng/tooltip";
|
|
5
|
-
export declare class BadgeModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BadgeModule, [typeof i1.BadgeComponent], [typeof i2.SharedModule, typeof i3.TooltipModule], [typeof i1.BadgeComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<BadgeModule>;
|
|
9
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./badge.component";
|
|
3
|
+
import * as i2 from "../../shared/shared.module";
|
|
4
|
+
import * as i3 from "primeng/tooltip";
|
|
5
|
+
export declare class BadgeModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BadgeModule, [typeof i1.BadgeComponent], [typeof i2.SharedModule, typeof i3.TooltipModule], [typeof i1.BadgeComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BadgeModule>;
|
|
9
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './badge.component';
|
|
2
|
-
export * from './badge.module';
|
|
1
|
+
export * from './badge.component';
|
|
2
|
+
export * from './badge.module';
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
3
|
-
import { MenuItem } from '../../models';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class BreadcrumbComponent implements OnInit, OnDestroy {
|
|
6
|
-
private router;
|
|
7
|
-
private environment;
|
|
8
|
-
private menuOptions;
|
|
9
|
-
appName: any;
|
|
10
|
-
routeFragments: MenuItem[];
|
|
11
|
-
private subscription;
|
|
12
|
-
constructor(router: Router, environment: any, menuOptions: MenuItem[]);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
ngOnDestroy(): void;
|
|
15
|
-
navigateToFragment(fragment: MenuItem): void;
|
|
16
|
-
private extractRouteFragmentsFromMenu;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "vector-breadcrumb", never, {}, {}, never, never>;
|
|
19
|
-
}
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { MenuItem } from '../../models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BreadcrumbComponent implements OnInit, OnDestroy {
|
|
6
|
+
private router;
|
|
7
|
+
private environment;
|
|
8
|
+
private menuOptions;
|
|
9
|
+
appName: any;
|
|
10
|
+
routeFragments: MenuItem[];
|
|
11
|
+
private subscription;
|
|
12
|
+
constructor(router: Router, environment: any, menuOptions: MenuItem[]);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
navigateToFragment(fragment: MenuItem): void;
|
|
16
|
+
private extractRouteFragmentsFromMenu;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "vector-breadcrumb", never, {}, {}, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./breadcrumb.component";
|
|
3
|
-
import * as i2 from "../../shared/shared.module";
|
|
4
|
-
export declare class BreadcrumbModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BreadcrumbModule, [typeof i1.BreadcrumbComponent], [typeof i2.SharedModule], [typeof i1.BreadcrumbComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<BreadcrumbModule>;
|
|
8
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./breadcrumb.component";
|
|
3
|
+
import * as i2 from "../../shared/shared.module";
|
|
4
|
+
export declare class BreadcrumbModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BreadcrumbModule, [typeof i1.BreadcrumbComponent], [typeof i2.SharedModule], [typeof i1.BreadcrumbComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BreadcrumbModule>;
|
|
8
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './breadcrumb.component';
|
|
2
|
-
export * from './breadcrumb.module';
|
|
1
|
+
export * from './breadcrumb.component';
|
|
2
|
+
export * from './breadcrumb.module';
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import { ActivatedRoute } from '@angular/router';
|
|
4
|
-
import { Subscription } from 'rxjs';
|
|
5
|
-
import { CrudMode } from '../../models/crud-mode.enum';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class CrudBaseComponent implements OnDestroy {
|
|
8
|
-
protected activatedRoute: ActivatedRoute;
|
|
9
|
-
crudMode: CrudMode;
|
|
10
|
-
isReadonly: boolean;
|
|
11
|
-
form:
|
|
12
|
-
protected subscription: Subscription;
|
|
13
|
-
constructor(activatedRoute: ActivatedRoute);
|
|
14
|
-
ngOnDestroy(): void;
|
|
15
|
-
isInsertion(): boolean;
|
|
16
|
-
isEdition(): boolean;
|
|
17
|
-
private getCrudModeByRoute;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CrudBaseComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CrudBaseComponent, "ng-component", never, {}, {}, never, never>;
|
|
20
|
-
}
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute } from '@angular/router';
|
|
4
|
+
import { Subscription } from 'rxjs';
|
|
5
|
+
import { CrudMode } from '../../models/crud-mode.enum';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CrudBaseComponent implements OnDestroy {
|
|
8
|
+
protected activatedRoute: ActivatedRoute;
|
|
9
|
+
crudMode: CrudMode;
|
|
10
|
+
isReadonly: boolean;
|
|
11
|
+
form: UntypedFormGroup;
|
|
12
|
+
protected subscription: Subscription;
|
|
13
|
+
constructor(activatedRoute: ActivatedRoute);
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
isInsertion(): boolean;
|
|
16
|
+
isEdition(): boolean;
|
|
17
|
+
private getCrudModeByRoute;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CrudBaseComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CrudBaseComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './crud-base.component';
|
|
1
|
+
export * from './crud-base.component';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CrudFooterComponent implements OnInit {
|
|
4
|
-
submitDisabled: boolean;
|
|
5
|
-
submitHidden: boolean;
|
|
6
|
-
goBackHidden: boolean;
|
|
7
|
-
onGoBack: EventEmitter<void>;
|
|
8
|
-
onSubmit: EventEmitter<void>;
|
|
9
|
-
constructor();
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CrudFooterComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CrudFooterComponent, "vector-crud-footer", never, { "submitDisabled": "submitDisabled"; "submitHidden": "submitHidden"; "goBackHidden": "goBackHidden"; }, { "onGoBack": "onGoBack"; "onSubmit": "onSubmit"; }, never, never>;
|
|
13
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CrudFooterComponent implements OnInit {
|
|
4
|
+
submitDisabled: boolean;
|
|
5
|
+
submitHidden: boolean;
|
|
6
|
+
goBackHidden: boolean;
|
|
7
|
+
onGoBack: EventEmitter<void>;
|
|
8
|
+
onSubmit: EventEmitter<void>;
|
|
9
|
+
constructor();
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CrudFooterComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CrudFooterComponent, "vector-crud-footer", never, { "submitDisabled": { "alias": "submitDisabled"; "required": false; }; "submitHidden": { "alias": "submitHidden"; "required": false; }; "goBackHidden": { "alias": "goBackHidden"; "required": false; }; }, { "onGoBack": "onGoBack"; "onSubmit": "onSubmit"; }, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./crud-footer.component";
|
|
3
|
-
import * as i2 from "../../shared/shared.module";
|
|
4
|
-
import * as i3 from "../fields/fields.module";
|
|
5
|
-
import * as i4 from "@ngx-translate/core";
|
|
6
|
-
export declare class FooterModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FooterModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FooterModule, [typeof i1.CrudFooterComponent], [typeof i2.SharedModule, typeof i3.FieldsModule, typeof i4.TranslateModule], [typeof i1.CrudFooterComponent, typeof i4.TranslateModule]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FooterModule>;
|
|
10
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./crud-footer.component";
|
|
3
|
+
import * as i2 from "../../shared/shared.module";
|
|
4
|
+
import * as i3 from "../fields/fields.module";
|
|
5
|
+
import * as i4 from "@ngx-translate/core";
|
|
6
|
+
export declare class FooterModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FooterModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FooterModule, [typeof i1.CrudFooterComponent], [typeof i2.SharedModule, typeof i3.FieldsModule, typeof i4.TranslateModule], [typeof i1.CrudFooterComponent, typeof i4.TranslateModule]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FooterModule>;
|
|
10
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './crud-footer.component';
|
|
2
|
-
export * from './crud-footer.module';
|
|
1
|
+
export * from './crud-footer.component';
|
|
2
|
+
export * from './crud-footer.module';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CrudHeaderComponent implements OnInit {
|
|
4
|
-
statusCode?: number;
|
|
5
|
-
code?: number;
|
|
6
|
-
get statusLabel(): "" | "Pendente" | "Ativo" | "Inativo";
|
|
7
|
-
constructor();
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CrudHeaderComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CrudHeaderComponent, "vector-crud-header", never, { "statusCode": "statusCode"; "code": "code"; }, {}, never, never>;
|
|
11
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CrudHeaderComponent implements OnInit {
|
|
4
|
+
statusCode?: number;
|
|
5
|
+
code?: number;
|
|
6
|
+
get statusLabel(): "" | "Pendente" | "Ativo" | "Inativo";
|
|
7
|
+
constructor();
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CrudHeaderComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CrudHeaderComponent, "vector-crud-header", never, { "statusCode": { "alias": "statusCode"; "required": false; }; "code": { "alias": "code"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./crud-header.component";
|
|
3
|
-
import * as i2 from "../../shared/shared.module";
|
|
4
|
-
import * as i3 from "../badge/badge.module";
|
|
5
|
-
export declare class CrudHeaderModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CrudHeaderModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CrudHeaderModule, [typeof i1.CrudHeaderComponent], [typeof i2.SharedModule, typeof i3.BadgeModule], [typeof i1.CrudHeaderComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CrudHeaderModule>;
|
|
9
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./crud-header.component";
|
|
3
|
+
import * as i2 from "../../shared/shared.module";
|
|
4
|
+
import * as i3 from "../badge/badge.module";
|
|
5
|
+
export declare class CrudHeaderModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CrudHeaderModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CrudHeaderModule, [typeof i1.CrudHeaderComponent], [typeof i2.SharedModule, typeof i3.BadgeModule], [typeof i1.CrudHeaderComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CrudHeaderModule>;
|
|
9
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './crud-header.component';
|
|
2
|
-
export * from './crud-header.module';
|
|
1
|
+
export * from './crud-header.component';
|
|
2
|
+
export * from './crud-header.module';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { CrudHistory } from '../../models';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CrudHistoryComponent {
|
|
5
|
-
crudHistory?: CrudHistory<any>;
|
|
6
|
-
onClick: EventEmitter<any>;
|
|
7
|
-
getHistoryBadgeBackgroundColor(crudHistoryEventType?: string): string;
|
|
8
|
-
getHistoryBadgeColor(crudHistoryEventType?: string): string;
|
|
9
|
-
getHistoryBadgeLabel(crudHistoryEventType?: string): string;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CrudHistoryComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CrudHistoryComponent, "vector-crud-history", never, { "crudHistory": "crudHistory"; }, { "onClick": "onClick"; }, never, never>;
|
|
12
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { CrudHistory } from '../../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CrudHistoryComponent {
|
|
5
|
+
crudHistory?: CrudHistory<any>;
|
|
6
|
+
onClick: EventEmitter<any>;
|
|
7
|
+
getHistoryBadgeBackgroundColor(crudHistoryEventType?: string): string;
|
|
8
|
+
getHistoryBadgeColor(crudHistoryEventType?: string): string;
|
|
9
|
+
getHistoryBadgeLabel(crudHistoryEventType?: string): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CrudHistoryComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CrudHistoryComponent, "vector-crud-history", never, { "crudHistory": { "alias": "crudHistory"; "required": false; }; }, { "onClick": "onClick"; }, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./crud-history.component";
|
|
3
|
-
import * as i2 from "../../shared/shared.module";
|
|
4
|
-
import * as i3 from "../badge/badge.module";
|
|
5
|
-
import * as i4 from "primeng/accordion";
|
|
6
|
-
export declare class CrudHistoryModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CrudHistoryModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CrudHistoryModule, [typeof i1.CrudHistoryComponent], [typeof i2.SharedModule, typeof i3.BadgeModule, typeof i4.AccordionModule], [typeof i1.CrudHistoryComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CrudHistoryModule>;
|
|
10
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./crud-history.component";
|
|
3
|
+
import * as i2 from "../../shared/shared.module";
|
|
4
|
+
import * as i3 from "../badge/badge.module";
|
|
5
|
+
import * as i4 from "primeng/accordion";
|
|
6
|
+
export declare class CrudHistoryModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CrudHistoryModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CrudHistoryModule, [typeof i1.CrudHistoryComponent], [typeof i2.SharedModule, typeof i3.BadgeModule, typeof i4.AccordionModule], [typeof i1.CrudHistoryComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CrudHistoryModule>;
|
|
10
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './crud-history.component';
|
|
2
|
-
export * from './crud-history.module';
|
|
1
|
+
export * from './crud-history.component';
|
|
2
|
+
export * from './crud-history.module';
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
|
|
4
|
-
export declare class ButtonComponent {
|
|
5
|
-
disabled: boolean;
|
|
6
|
-
label: string;
|
|
7
|
-
type: ButtonType;
|
|
8
|
-
leftIcon: string;
|
|
9
|
-
rightIcon: string;
|
|
10
|
-
noShadow: boolean;
|
|
11
|
-
style: any;
|
|
12
|
-
onClick: EventEmitter<any>;
|
|
13
|
-
get styleClass(): string;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "vector-button", never, { "disabled": "disabled"; "label": "label"; "type": "type"; "leftIcon": "leftIcon"; "rightIcon": "rightIcon"; "noShadow": "noShadow"; "style": "style"; }, { "onClick": "onClick"; }, never, never>;
|
|
16
|
-
}
|
|
17
|
-
export {};
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
type ButtonType = 'success' | 'success-outlined' | 'default' | 'default-filled' | 'cancel' | 'cancel-filled';
|
|
4
|
+
export declare class ButtonComponent {
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
label: string;
|
|
7
|
+
type: ButtonType;
|
|
8
|
+
leftIcon: string;
|
|
9
|
+
rightIcon: string;
|
|
10
|
+
noShadow: boolean;
|
|
11
|
+
style: any;
|
|
12
|
+
onClick: EventEmitter<any>;
|
|
13
|
+
get styleClass(): string;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "vector-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "leftIcon": { "alias": "leftIcon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "noShadow": { "alias": "noShadow"; "required": false; }; "style": { "alias": "style"; "required": false; }; }, { "onClick": "onClick"; }, never, never, false, never>;
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './button.component';
|
|
1
|
+
export * from './button.component';
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { ModalService } from '../../../services';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CalendarComponent {
|
|
4
|
-
private modalService;
|
|
5
|
-
isRequired: boolean;
|
|
6
|
-
control: any;
|
|
7
|
-
label: string;
|
|
8
|
-
showCalendarOnFocus: boolean;
|
|
9
|
-
min?: any;
|
|
10
|
-
max?: any;
|
|
11
|
-
disabledDates: Date[];
|
|
12
|
-
disabled: boolean;
|
|
13
|
-
defaultDate: Date;
|
|
14
|
-
hiddenErrorMessage: boolean;
|
|
15
|
-
get placeholder(): string;
|
|
16
|
-
keyFilter: string;
|
|
17
|
-
constructor(modalService: ModalService);
|
|
18
|
-
fieldErrorLabel(): string;
|
|
19
|
-
onShowCalendar(): void;
|
|
20
|
-
onHideCalendar(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "vector-calendar-field", never, { "isRequired": "isRequired"; "control": "control"; "label": "label"; "showCalendarOnFocus": "showCalendarOnFocus"; "min": "min"; "max": "max"; "disabledDates": "disabledDates"; "disabled": "disabled"; "defaultDate": "defaultDate"; "hiddenErrorMessage": "hiddenErrorMessage"; }, {}, never, never>;
|
|
23
|
-
}
|
|
1
|
+
import { ModalService } from '../../../services';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CalendarComponent {
|
|
4
|
+
private modalService;
|
|
5
|
+
isRequired: boolean;
|
|
6
|
+
control: any;
|
|
7
|
+
label: string;
|
|
8
|
+
showCalendarOnFocus: boolean;
|
|
9
|
+
min?: any;
|
|
10
|
+
max?: any;
|
|
11
|
+
disabledDates: Date[];
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
defaultDate: Date;
|
|
14
|
+
hiddenErrorMessage: boolean;
|
|
15
|
+
get placeholder(): string;
|
|
16
|
+
keyFilter: string;
|
|
17
|
+
constructor(modalService: ModalService);
|
|
18
|
+
fieldErrorLabel(): string;
|
|
19
|
+
onShowCalendar(): void;
|
|
20
|
+
onHideCalendar(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "vector-calendar-field", never, { "isRequired": { "alias": "isRequired"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showCalendarOnFocus": { "alias": "showCalendarOnFocus"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "defaultDate": { "alias": "defaultDate"; "required": false; }; "hiddenErrorMessage": { "alias": "hiddenErrorMessage"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './calendar-field.component';
|
|
1
|
+
export * from './calendar-field.component';
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ListItem } from '../../../models';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CheckboxFieldComponent implements OnInit {
|
|
5
|
-
isRequired: boolean;
|
|
6
|
-
control: any;
|
|
7
|
-
label: string;
|
|
8
|
-
rounded: boolean;
|
|
9
|
-
labelSize: 'default' | 'large';
|
|
10
|
-
value: boolean | undefined;
|
|
11
|
-
groupName: string;
|
|
12
|
-
options: ListItem[] | null;
|
|
13
|
-
disabled: boolean;
|
|
14
|
-
valueChange: EventEmitter<boolean>;
|
|
15
|
-
constructor();
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxFieldComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxFieldComponent, "vector-checkbox-field", never, { "isRequired": "isRequired"; "control": "control"; "label": "label"; "rounded": "rounded"; "labelSize": "labelSize"; "value": "value"; "groupName": "groupName"; "options": "options"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never>;
|
|
19
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ListItem } from '../../../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CheckboxFieldComponent implements OnInit {
|
|
5
|
+
isRequired: boolean;
|
|
6
|
+
control: any;
|
|
7
|
+
label: string;
|
|
8
|
+
rounded: boolean;
|
|
9
|
+
labelSize: 'default' | 'large';
|
|
10
|
+
value: boolean | undefined;
|
|
11
|
+
groupName: string;
|
|
12
|
+
options: ListItem[] | null;
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
valueChange: EventEmitter<boolean>;
|
|
15
|
+
constructor();
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxFieldComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxFieldComponent, "vector-checkbox-field", never, { "isRequired": { "alias": "isRequired"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "value": { "alias": "value"; "required": false; }; "groupName": { "alias": "groupName"; "required": false; }; "options": { "alias": "options"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './checkbox-field.component';
|
|
1
|
+
export * from './checkbox-field.component';
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import { AfterViewInit } from '@angular/core';
|
|
2
|
-
import { Currency } from '../../../models/currency.enum';
|
|
3
|
-
import { Locale } from '../../../models/locale.enum';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CurrencyFieldComponent implements AfterViewInit {
|
|
6
|
-
minValue: number;
|
|
7
|
-
maxValue: number;
|
|
8
|
-
placeholder: string;
|
|
9
|
-
numberOfDecimals: number;
|
|
10
|
-
control: any;
|
|
11
|
-
outlined: boolean;
|
|
12
|
-
rounded: boolean;
|
|
13
|
-
label?: string;
|
|
14
|
-
isBankingField: boolean;
|
|
15
|
-
inputClassName: string;
|
|
16
|
-
localePrefix: Locale | string;
|
|
17
|
-
currencyPrefix: Currency | string;
|
|
18
|
-
disabled: boolean;
|
|
19
|
-
centered: boolean;
|
|
20
|
-
private inputElement?;
|
|
21
|
-
ngAfterViewInit(): void;
|
|
22
|
-
getInputNgClass(): {
|
|
23
|
-
[x: string]: boolean;
|
|
24
|
-
outlined: boolean;
|
|
25
|
-
rounded: boolean;
|
|
26
|
-
};
|
|
27
|
-
focusLastIndex($event: Event): void;
|
|
28
|
-
inputNextChar($event: KeyboardEvent): void;
|
|
29
|
-
clearValue(): void;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyFieldComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyFieldComponent, "vector-currency-field", never, { "minValue": "minValue"; "maxValue": "maxValue"; "placeholder": "placeholder"; "numberOfDecimals": "numberOfDecimals"; "control": "control"; "outlined": "outlined"; "rounded": "rounded"; "label": "label"; "isBankingField": "isBankingField"; "inputClassName": "inputClassName"; "localePrefix": "localePrefix"; "currencyPrefix": "currencyPrefix"; "disabled": "disabled"; "centered": "centered"; }, {}, never, never>;
|
|
32
|
-
}
|
|
1
|
+
import { AfterViewInit } from '@angular/core';
|
|
2
|
+
import { Currency } from '../../../models/currency.enum';
|
|
3
|
+
import { Locale } from '../../../models/locale.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CurrencyFieldComponent implements AfterViewInit {
|
|
6
|
+
minValue: number;
|
|
7
|
+
maxValue: number;
|
|
8
|
+
placeholder: string;
|
|
9
|
+
numberOfDecimals: number;
|
|
10
|
+
control: any;
|
|
11
|
+
outlined: boolean;
|
|
12
|
+
rounded: boolean;
|
|
13
|
+
label?: string;
|
|
14
|
+
isBankingField: boolean;
|
|
15
|
+
inputClassName: string;
|
|
16
|
+
localePrefix: Locale | string;
|
|
17
|
+
currencyPrefix: Currency | string;
|
|
18
|
+
disabled: boolean;
|
|
19
|
+
centered: boolean;
|
|
20
|
+
private inputElement?;
|
|
21
|
+
ngAfterViewInit(): void;
|
|
22
|
+
getInputNgClass(): {
|
|
23
|
+
[x: string]: boolean;
|
|
24
|
+
outlined: boolean;
|
|
25
|
+
rounded: boolean;
|
|
26
|
+
};
|
|
27
|
+
focusLastIndex($event: Event): void;
|
|
28
|
+
inputNextChar($event: KeyboardEvent): void;
|
|
29
|
+
clearValue(): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyFieldComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyFieldComponent, "vector-currency-field", never, { "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "numberOfDecimals": { "alias": "numberOfDecimals"; "required": false; }; "control": { "alias": "control"; "required": false; }; "outlined": { "alias": "outlined"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "label": { "alias": "label"; "required": false; }; "isBankingField": { "alias": "isBankingField"; "required": false; }; "inputClassName": { "alias": "inputClassName"; "required": false; }; "localePrefix": { "alias": "localePrefix"; "required": false; }; "currencyPrefix": { "alias": "currencyPrefix"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "centered": { "alias": "centered"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './currency-field.component';
|
|
1
|
+
export * from './currency-field.component';
|