bit-ng-library 12.0.2 → 13.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +160 -142
- package/bit-ng-library.d.ts +6 -6
- package/bit-ng-library.d.ts.map +1 -0
- package/esm2020/bit-ng-library.mjs +5 -0
- package/esm2020/lib/base/components/base.component.mjs +18 -0
- package/{esm2015/lib/base/models/base-form.models.js → esm2020/lib/base/models/base-form.models.mjs} +129 -129
- package/{esm2015/lib/base/models/base-list.models.js → esm2020/lib/base/models/base-list.models.mjs} +202 -202
- package/{esm2015/lib/base/models/base-sublist.models.js → esm2020/lib/base/models/base-sublist.models.mjs} +93 -93
- package/{esm2015/lib/base/models/index.js → esm2020/lib/base/models/index.mjs} +5 -5
- package/esm2020/lib/base/models/types.mjs +19 -0
- package/esm2020/lib/base/shared/base-interface.service.mjs +2 -0
- package/esm2020/lib/base/shared/base.filter.mjs +78 -0
- package/{esm2015/lib/base/shared/base.service.js → esm2020/lib/base/shared/base.service.mjs} +85 -85
- package/{esm2015/lib/base/shared/utils.js → esm2020/lib/base/shared/utils.mjs} +113 -113
- package/esm2020/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.mjs +67 -0
- package/esm2020/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.mjs +49 -0
- package/esm2020/lib/sharedlibrary/components/dialog/bit-dialog.component.mjs +209 -0
- package/esm2020/lib/sharedlibrary/components/footer/bit-footer.component.mjs +217 -0
- package/esm2020/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.mjs +47 -0
- package/esm2020/lib/sharedlibrary/components/form/bit-custom.component.mjs +86 -0
- package/esm2020/lib/sharedlibrary/components/form/bit-editable.component.mjs +87 -0
- package/esm2020/lib/sharedlibrary/components/form/bit-general.component.mjs +93 -0
- package/esm2020/lib/sharedlibrary/components/form/calendar/bit-calendar.component.mjs +37 -0
- package/esm2020/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.mjs +24 -0
- package/esm2020/lib/sharedlibrary/components/form/date/bit-date.component.mjs +45 -0
- package/esm2020/lib/sharedlibrary/components/form/datetime/bit-datetime.component.mjs +38 -0
- package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.mjs +100 -0
- package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.mjs +80 -0
- package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.mjs +86 -0
- package/esm2020/lib/sharedlibrary/components/form/editor/bit-editor.component.mjs +81 -0
- package/esm2020/lib/sharedlibrary/components/form/readonly/bit-readonly.component.mjs +96 -0
- package/esm2020/lib/sharedlibrary/components/form/switch/bit-switch.component.mjs +43 -0
- package/esm2020/lib/sharedlibrary/components/form/text/bit-text.component.mjs +23 -0
- package/esm2020/lib/sharedlibrary/components/form/textarea/bit-textarea.component.mjs +21 -0
- package/esm2020/lib/sharedlibrary/components/form/time/bit-time.component.mjs +45 -0
- package/esm2020/lib/sharedlibrary/components/header/bit-header.component.mjs +48 -0
- package/esm2020/lib/sharedlibrary/components/help/bit-help.component.mjs +59 -0
- package/esm2020/lib/sharedlibrary/components/loading/bit-loading.component.mjs +65 -0
- package/esm2020/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.mjs +44 -0
- package/esm2020/lib/sharedlibrary/components/misc/bit-column-boolean.component.mjs +38 -0
- package/esm2020/lib/sharedlibrary/components/misc/bit-domain-value.component.mjs +45 -0
- package/esm2020/lib/sharedlibrary/components/notificacion/bit-notification-error.component.mjs +110 -0
- package/esm2020/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.mjs +45 -0
- package/esm2020/lib/sharedlibrary/components/toolbar/bit-toolbar.component.mjs +104 -0
- package/esm2020/lib/sharedlibrary/components/upload/bit-ng-upload.component.mjs +133 -0
- package/esm2020/lib/sharedlibrary/components/user/bit-user-controls.component.mjs +39 -0
- package/{esm2015/lib/sharedlibrary/data/ayudacontextual.js → esm2020/lib/sharedlibrary/data/ayudacontextual.mjs} +12 -12
- package/{esm2015/lib/sharedlibrary/data/bitmessage.js → esm2020/lib/sharedlibrary/data/bitmessage.mjs} +21 -21
- package/{esm2015/lib/sharedlibrary/data/bitnotification-error.js → esm2020/lib/sharedlibrary/data/bitnotification-error.mjs} +11 -11
- package/{esm2015/lib/sharedlibrary/data/bitnotification.js → esm2020/lib/sharedlibrary/data/bitnotification.mjs} +12 -12
- package/{esm2015/lib/sharedlibrary/data/configuration-editor.js → esm2020/lib/sharedlibrary/data/configuration-editor.mjs} +20 -20
- package/{esm2015/lib/sharedlibrary/data/domain.js → esm2020/lib/sharedlibrary/data/domain.mjs} +9 -9
- package/{esm2015/lib/sharedlibrary/data/error.js → esm2020/lib/sharedlibrary/data/error.mjs} +14 -14
- package/{esm2015/lib/sharedlibrary/data/fichero.js → esm2020/lib/sharedlibrary/data/fichero.mjs} +18 -18
- package/{esm2015/lib/sharedlibrary/data/index.js → esm2020/lib/sharedlibrary/data/index.mjs} +10 -10
- package/{esm2015/lib/sharedlibrary/data/item.js → esm2020/lib/sharedlibrary/data/item.mjs} +9 -9
- package/esm2020/lib/sharedlibrary/directives/edit-mode.directive.mjs +16 -0
- package/esm2020/lib/sharedlibrary/directives/focus-register.directive.mjs +31 -0
- package/esm2020/lib/sharedlibrary/directives/view-mode.directive.mjs +16 -0
- package/{esm2015/lib/sharedlibrary/global.constants.js → esm2020/lib/sharedlibrary/global.constants.mjs} +24 -24
- package/esm2020/lib/sharedlibrary/guards/candeactivate.guard.mjs +13 -0
- package/esm2020/lib/sharedlibrary/pipes/capitalize.pipe.mjs +22 -0
- package/esm2020/lib/sharedlibrary/pipes/other-actions.pipe.mjs +26 -0
- package/esm2020/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.mjs +44 -0
- package/esm2020/lib/sharedlibrary/pipes/remove-line-breaks.pipe.mjs +28 -0
- package/{esm2015/lib/sharedlibrary/services/ayuda.service.js → esm2020/lib/sharedlibrary/services/ayuda.service.mjs} +38 -37
- package/{esm2015/lib/sharedlibrary/services/base-data-adapter.service.js → esm2020/lib/sharedlibrary/services/base-data-adapter.service.mjs} +16 -16
- package/esm2020/lib/sharedlibrary/services/base-data.service.mjs +4 -0
- package/{esm2015/lib/sharedlibrary/services/custom-validators.service.js → esm2020/lib/sharedlibrary/services/custom-validators.service.mjs} +627 -627
- package/esm2020/lib/sharedlibrary/services/domain.service.mjs +24 -0
- package/esm2020/lib/sharedlibrary/services/focus.service.mjs +30 -0
- package/esm2020/lib/sharedlibrary/services/general-utils.service.mjs +143 -0
- package/esm2020/lib/sharedlibrary/services/http-utils.service.mjs +175 -0
- package/{esm2015/lib/sharedlibrary/services/index.js → esm2020/lib/sharedlibrary/services/index.mjs} +16 -16
- package/{esm2015/lib/sharedlibrary/services/locator.service.js → esm2020/lib/sharedlibrary/services/locator.service.mjs} +8 -8
- package/esm2020/lib/sharedlibrary/services/message.service.mjs +69 -0
- package/esm2020/lib/sharedlibrary/services/session-shared.service.mjs +23 -0
- package/esm2020/lib/sharedlibrary/services/tableview.service.mjs +19 -0
- package/esm2020/lib/sharedlibrary/services/toolbar.service.mjs +25 -0
- package/esm2020/lib/sharedlibrary/services/translate.service.mjs +67 -0
- package/{esm2015/lib/sharedlibrary/services/upload.service.js → esm2020/lib/sharedlibrary/services/upload.service.mjs} +57 -55
- package/esm2020/lib/sharedlibrary/sharedlibrary.module.mjs +264 -0
- package/esm2020/lib/sharedlibrary/utils/custom-http-interceptor.mjs +37 -0
- package/{esm2015/public-api.js → esm2020/public-api.mjs} +81 -81
- package/fesm2015/bit-ng-library.mjs +4708 -0
- package/fesm2015/bit-ng-library.mjs.map +1 -0
- package/{fesm2015/bit-ng-library.js → fesm2020/bit-ng-library.mjs} +4563 -4325
- package/fesm2020/bit-ng-library.mjs.map +1 -0
- package/lib/base/components/base.component.d.ts +9 -5
- package/lib/base/components/base.component.d.ts.map +1 -0
- package/lib/base/models/base-form.models.d.ts +81 -80
- package/lib/base/models/base-form.models.d.ts.map +1 -0
- package/lib/base/models/base-list.models.d.ts +137 -136
- package/lib/base/models/base-list.models.d.ts.map +1 -0
- package/lib/base/models/base-sublist.models.d.ts +43 -42
- package/lib/base/models/base-sublist.models.d.ts.map +1 -0
- package/lib/base/models/index.d.ts +5 -4
- package/lib/base/models/index.d.ts.map +1 -0
- package/lib/base/models/types.d.ts +34 -33
- package/lib/base/models/types.d.ts.map +1 -0
- package/lib/base/shared/base-interface.service.d.ts +38 -37
- package/lib/base/shared/base-interface.service.d.ts.map +1 -0
- package/lib/base/shared/base.filter.d.ts +38 -37
- package/lib/base/shared/base.filter.d.ts.map +1 -0
- package/lib/base/shared/base.service.d.ts +60 -59
- package/lib/base/shared/base.service.d.ts.map +1 -0
- package/lib/base/shared/utils.d.ts +43 -42
- package/lib/base/shared/utils.d.ts.map +1 -0
- package/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.d.ts +26 -22
- package/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.d.ts +16 -12
- package/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/dialog/bit-dialog.component.d.ts +31 -27
- package/lib/sharedlibrary/components/dialog/bit-dialog.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/footer/bit-footer.component.d.ts +74 -70
- package/lib/sharedlibrary/components/footer/bit-footer.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.d.ts +20 -16
- package/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/bit-custom.component.d.ts +36 -32
- package/lib/sharedlibrary/components/form/bit-custom.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/bit-editable.component.d.ts +32 -28
- package/lib/sharedlibrary/components/form/bit-editable.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/bit-general.component.d.ts +42 -38
- package/lib/sharedlibrary/components/form/bit-general.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/calendar/bit-calendar.component.d.ts +20 -16
- package/lib/sharedlibrary/components/form/calendar/bit-calendar.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.d.ts +11 -7
- package/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/date/bit-date.component.d.ts +16 -12
- package/lib/sharedlibrary/components/form/date/bit-date.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/datetime/bit-datetime.component.d.ts +15 -11
- package/lib/sharedlibrary/components/form/datetime/bit-datetime.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.d.ts +42 -38
- package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.d.ts +38 -34
- package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.d.ts +34 -30
- package/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/editor/bit-editor.component.d.ts +32 -28
- package/lib/sharedlibrary/components/form/editor/bit-editor.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/readonly/bit-readonly.component.d.ts +27 -23
- package/lib/sharedlibrary/components/form/readonly/bit-readonly.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/switch/bit-switch.component.d.ts +16 -12
- package/lib/sharedlibrary/components/form/switch/bit-switch.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/text/bit-text.component.d.ts +10 -6
- package/lib/sharedlibrary/components/form/text/bit-text.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/textarea/bit-textarea.component.d.ts +10 -6
- package/lib/sharedlibrary/components/form/textarea/bit-textarea.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/form/time/bit-time.component.d.ts +16 -12
- package/lib/sharedlibrary/components/form/time/bit-time.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/header/bit-header.component.d.ts +23 -19
- package/lib/sharedlibrary/components/header/bit-header.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/help/bit-help.component.d.ts +16 -12
- package/lib/sharedlibrary/components/help/bit-help.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/loading/bit-loading.component.d.ts +18 -14
- package/lib/sharedlibrary/components/loading/bit-loading.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.d.ts +13 -9
- package/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/misc/bit-column-boolean.component.d.ts +14 -10
- package/lib/sharedlibrary/components/misc/bit-column-boolean.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/misc/bit-domain-value.component.d.ts +15 -11
- package/lib/sharedlibrary/components/misc/bit-domain-value.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/notificacion/bit-notification-error.component.d.ts +35 -31
- package/lib/sharedlibrary/components/notificacion/bit-notification-error.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.d.ts +17 -13
- package/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/toolbar/bit-toolbar.component.d.ts +40 -36
- package/lib/sharedlibrary/components/toolbar/bit-toolbar.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/upload/bit-ng-upload.component.d.ts +50 -45
- package/lib/sharedlibrary/components/upload/bit-ng-upload.component.d.ts.map +1 -0
- package/lib/sharedlibrary/components/user/bit-user-controls.component.d.ts +15 -11
- package/lib/sharedlibrary/components/user/bit-user-controls.component.d.ts.map +1 -0
- package/lib/sharedlibrary/data/ayudacontextual.d.ts +9 -8
- package/lib/sharedlibrary/data/ayudacontextual.d.ts.map +1 -0
- package/lib/sharedlibrary/data/bitmessage.d.ts +18 -17
- package/lib/sharedlibrary/data/bitmessage.d.ts.map +1 -0
- package/lib/sharedlibrary/data/bitnotification-error.d.ts +10 -9
- package/lib/sharedlibrary/data/bitnotification-error.d.ts.map +1 -0
- package/lib/sharedlibrary/data/bitnotification.d.ts +11 -10
- package/lib/sharedlibrary/data/bitnotification.d.ts.map +1 -0
- package/lib/sharedlibrary/data/configuration-editor.d.ts +10 -9
- package/lib/sharedlibrary/data/configuration-editor.d.ts.map +1 -0
- package/lib/sharedlibrary/data/domain.d.ts +8 -7
- package/lib/sharedlibrary/data/domain.d.ts.map +1 -0
- package/lib/sharedlibrary/data/error.d.ts +13 -12
- package/lib/sharedlibrary/data/error.d.ts.map +1 -0
- package/lib/sharedlibrary/data/fichero.d.ts +14 -13
- package/lib/sharedlibrary/data/fichero.d.ts.map +1 -0
- package/lib/sharedlibrary/data/index.d.ts +10 -9
- package/lib/sharedlibrary/data/index.d.ts.map +1 -0
- package/lib/sharedlibrary/data/item.d.ts +8 -7
- package/lib/sharedlibrary/data/item.d.ts.map +1 -0
- package/lib/sharedlibrary/directives/edit-mode.directive.d.ts +9 -5
- package/lib/sharedlibrary/directives/edit-mode.directive.d.ts.map +1 -0
- package/lib/sharedlibrary/directives/focus-register.directive.d.ts +14 -10
- package/lib/sharedlibrary/directives/focus-register.directive.d.ts.map +1 -0
- package/lib/sharedlibrary/directives/view-mode.directive.d.ts +9 -5
- package/lib/sharedlibrary/directives/view-mode.directive.d.ts.map +1 -0
- package/lib/sharedlibrary/global.constants.d.ts +16 -15
- package/lib/sharedlibrary/global.constants.d.ts.map +1 -0
- package/lib/sharedlibrary/guards/candeactivate.guard.d.ts +12 -8
- package/lib/sharedlibrary/guards/candeactivate.guard.d.ts.map +1 -0
- package/lib/sharedlibrary/pipes/capitalize.pipe.d.ts +11 -7
- package/lib/sharedlibrary/pipes/capitalize.pipe.d.ts.map +1 -0
- package/lib/sharedlibrary/pipes/other-actions.pipe.d.ts +8 -4
- package/lib/sharedlibrary/pipes/other-actions.pipe.d.ts.map +1 -0
- package/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.d.ts +13 -9
- package/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.d.ts.map +1 -0
- package/lib/sharedlibrary/pipes/remove-line-breaks.pipe.d.ts +8 -4
- package/lib/sharedlibrary/pipes/remove-line-breaks.pipe.d.ts.map +1 -0
- package/lib/sharedlibrary/services/ayuda.service.d.ts +14 -10
- package/lib/sharedlibrary/services/ayuda.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/base-data-adapter.service.d.ts +12 -11
- package/lib/sharedlibrary/services/base-data-adapter.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/base-data.service.d.ts +14 -13
- package/lib/sharedlibrary/services/base-data.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/custom-validators.service.d.ts +174 -173
- package/lib/sharedlibrary/services/custom-validators.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/domain.service.d.ts +12 -8
- package/lib/sharedlibrary/services/domain.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/focus.service.d.ts +13 -9
- package/lib/sharedlibrary/services/focus.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/general-utils.service.d.ts +40 -36
- package/lib/sharedlibrary/services/general-utils.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/http-utils.service.d.ts +35 -31
- package/lib/sharedlibrary/services/http-utils.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/index.d.ts +16 -15
- package/lib/sharedlibrary/services/index.d.ts.map +1 -0
- package/lib/sharedlibrary/services/locator.service.d.ts +9 -8
- package/lib/sharedlibrary/services/locator.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/message.service.d.ts +45 -41
- package/lib/sharedlibrary/services/message.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/session-shared.service.d.ts +10 -6
- package/lib/sharedlibrary/services/session-shared.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/tableview.service.d.ts +10 -6
- package/lib/sharedlibrary/services/tableview.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/toolbar.service.d.ts +11 -7
- package/lib/sharedlibrary/services/toolbar.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/translate.service.d.ts +32 -28
- package/lib/sharedlibrary/services/translate.service.d.ts.map +1 -0
- package/lib/sharedlibrary/services/upload.service.d.ts +20 -16
- package/lib/sharedlibrary/services/upload.service.d.ts.map +1 -0
- package/lib/sharedlibrary/sharedlibrary.module.d.ts +72 -6
- package/lib/sharedlibrary/sharedlibrary.module.d.ts.map +1 -0
- package/lib/sharedlibrary/utils/custom-http-interceptor.d.ts +14 -10
- package/lib/sharedlibrary/utils/custom-http-interceptor.d.ts.map +1 -0
- package/package.json +19 -7
- package/public-api.d.ts +78 -77
- package/public-api.d.ts.map +1 -0
- package/bit-ng-library.metadata.json +0 -1
- package/bundles/bit-ng-library.umd.js +0 -5165
- package/bundles/bit-ng-library.umd.js.map +0 -1
- package/esm2015/bit-ng-library.js +0 -6
- package/esm2015/lib/base/components/base.component.js +0 -15
- package/esm2015/lib/base/models/types.js +0 -19
- package/esm2015/lib/base/shared/base-interface.service.js +0 -2
- package/esm2015/lib/base/shared/base.filter.js +0 -78
- package/esm2015/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.js +0 -57
- package/esm2015/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.js +0 -43
- package/esm2015/lib/sharedlibrary/components/dialog/bit-dialog.component.js +0 -163
- package/esm2015/lib/sharedlibrary/components/footer/bit-footer.component.js +0 -206
- package/esm2015/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.js +0 -44
- package/esm2015/lib/sharedlibrary/components/form/bit-custom.component.js +0 -89
- package/esm2015/lib/sharedlibrary/components/form/bit-editable.component.js +0 -83
- package/esm2015/lib/sharedlibrary/components/form/bit-general.component.js +0 -81
- package/esm2015/lib/sharedlibrary/components/form/calendar/bit-calendar.component.js +0 -38
- package/esm2015/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.js +0 -23
- package/esm2015/lib/sharedlibrary/components/form/date/bit-date.component.js +0 -45
- package/esm2015/lib/sharedlibrary/components/form/datetime/bit-datetime.component.js +0 -38
- package/esm2015/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.js +0 -99
- package/esm2015/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.js +0 -81
- package/esm2015/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.js +0 -89
- package/esm2015/lib/sharedlibrary/components/form/editor/bit-editor.component.js +0 -77
- package/esm2015/lib/sharedlibrary/components/form/readonly/bit-readonly.component.js +0 -95
- package/esm2015/lib/sharedlibrary/components/form/switch/bit-switch.component.js +0 -43
- package/esm2015/lib/sharedlibrary/components/form/text/bit-text.component.js +0 -19
- package/esm2015/lib/sharedlibrary/components/form/textarea/bit-textarea.component.js +0 -19
- package/esm2015/lib/sharedlibrary/components/form/time/bit-time.component.js +0 -45
- package/esm2015/lib/sharedlibrary/components/header/bit-header.component.js +0 -38
- package/esm2015/lib/sharedlibrary/components/help/bit-help.component.js +0 -47
- package/esm2015/lib/sharedlibrary/components/loading/bit-loading.component.js +0 -55
- package/esm2015/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.js +0 -33
- package/esm2015/lib/sharedlibrary/components/misc/bit-column-boolean.component.js +0 -28
- package/esm2015/lib/sharedlibrary/components/misc/bit-domain-value.component.js +0 -39
- package/esm2015/lib/sharedlibrary/components/notificacion/bit-notification-error.component.js +0 -110
- package/esm2015/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.js +0 -45
- package/esm2015/lib/sharedlibrary/components/toolbar/bit-toolbar.component.js +0 -97
- package/esm2015/lib/sharedlibrary/components/upload/bit-ng-upload.component.js +0 -116
- package/esm2015/lib/sharedlibrary/components/user/bit-user-controls.component.js +0 -30
- package/esm2015/lib/sharedlibrary/directives/edit-mode.directive.js +0 -15
- package/esm2015/lib/sharedlibrary/directives/focus-register.directive.js +0 -30
- package/esm2015/lib/sharedlibrary/directives/view-mode.directive.js +0 -15
- package/esm2015/lib/sharedlibrary/guards/candeactivate.guard.js +0 -10
- package/esm2015/lib/sharedlibrary/pipes/capitalize.pipe.js +0 -18
- package/esm2015/lib/sharedlibrary/pipes/other-actions.pipe.js +0 -22
- package/esm2015/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.js +0 -41
- package/esm2015/lib/sharedlibrary/pipes/remove-line-breaks.pipe.js +0 -24
- package/esm2015/lib/sharedlibrary/services/base-data.service.js +0 -4
- package/esm2015/lib/sharedlibrary/services/domain.service.js +0 -26
- package/esm2015/lib/sharedlibrary/services/focus.service.js +0 -28
- package/esm2015/lib/sharedlibrary/services/general-utils.service.js +0 -142
- package/esm2015/lib/sharedlibrary/services/http-utils.service.js +0 -178
- package/esm2015/lib/sharedlibrary/services/message.service.js +0 -68
- package/esm2015/lib/sharedlibrary/services/session-shared.service.js +0 -22
- package/esm2015/lib/sharedlibrary/services/tableview.service.js +0 -18
- package/esm2015/lib/sharedlibrary/services/toolbar.service.js +0 -24
- package/esm2015/lib/sharedlibrary/services/translate.service.js +0 -67
- package/esm2015/lib/sharedlibrary/sharedlibrary.module.js +0 -135
- package/esm2015/lib/sharedlibrary/utils/custom-http-interceptor.js +0 -41
- package/fesm2015/bit-ng-library.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,142 +1,160 @@
|
|
|
1
|
-
# BitNgLibrary
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.6.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project bit-ng-library` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project bit-ng-library`.
|
|
8
|
-
|
|
9
|
-
> Note: Don't forget to add `--project bit-ng-library` or else it will be added to the default project in your `angular.json` file.
|
|
10
|
-
|
|
11
|
-
## Build
|
|
12
|
-
|
|
13
|
-
Run `ng build bit-ng-library --configuration production` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
14
|
-
|
|
15
|
-
## Publishing
|
|
16
|
-
|
|
17
|
-
After building your library with `ng build bit-ng-library`, go to the dist folder `cd dist/bit-ng-library` and run `npm publish`.
|
|
18
|
-
|
|
19
|
-
## Running unit tests
|
|
20
|
-
|
|
21
|
-
Run `ng test bit-ng-library` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
22
|
-
|
|
23
|
-
## Further help
|
|
24
|
-
|
|
25
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
|
|
26
|
-
|
|
27
|
-
## changelog
|
|
28
|
-
|
|
29
|
-
## [
|
|
30
|
-
|
|
31
|
-
Se
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
## [1.
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
## [1.
|
|
121
|
-
|
|
122
|
-
### Changed
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
## [1.0
|
|
127
|
-
|
|
128
|
-
### Changed
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
## [1.0.
|
|
133
|
-
|
|
134
|
-
### Changed
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
## [1.0.
|
|
139
|
-
|
|
140
|
-
###
|
|
141
|
-
|
|
142
|
-
-
|
|
1
|
+
# BitNgLibrary
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.6.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project bit-ng-library` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project bit-ng-library`.
|
|
8
|
+
|
|
9
|
+
> Note: Don't forget to add `--project bit-ng-library` or else it will be added to the default project in your `angular.json` file.
|
|
10
|
+
|
|
11
|
+
## Build
|
|
12
|
+
|
|
13
|
+
Run `ng build bit-ng-library --configuration production` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
14
|
+
|
|
15
|
+
## Publishing
|
|
16
|
+
|
|
17
|
+
After building your library with `ng build bit-ng-library`, go to the dist folder `cd dist/bit-ng-library` and run `npm publish`.
|
|
18
|
+
|
|
19
|
+
## Running unit tests
|
|
20
|
+
|
|
21
|
+
Run `ng test bit-ng-library` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
22
|
+
|
|
23
|
+
## Further help
|
|
24
|
+
|
|
25
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
|
|
26
|
+
|
|
27
|
+
## changelog
|
|
28
|
+
|
|
29
|
+
## [13.0.2] - 2022-02-03
|
|
30
|
+
|
|
31
|
+
Se añade allowSyntheticDefaultImports a true en las opciones de compilacion de tsconfig para que se importe correctamente la librería
|
|
32
|
+
moment. También se modifica la forma de importar en el código pasando a import momento from 'moment' en vez de import \* as moment from
|
|
33
|
+
'moment'
|
|
34
|
+
|
|
35
|
+
## [13.0.1] - 2022-02-03
|
|
36
|
+
|
|
37
|
+
Se elimina moment-mini-ts al presentar problemas de carga con angular 13
|
|
38
|
+
|
|
39
|
+
## [13.0.0] - 2022-02-02
|
|
40
|
+
|
|
41
|
+
Migración a angular 13
|
|
42
|
+
|
|
43
|
+
## [12.0.3] - 2021-12-30
|
|
44
|
+
|
|
45
|
+
Nuevo parámetro "inputAccept" para el "input file" del componente BitNgUpload, que permite restringir los tipos de ficheros del explorador de archivos al elegir un archivo para subida.
|
|
46
|
+
|
|
47
|
+
## [12.0.2] - 2021-10-20
|
|
48
|
+
|
|
49
|
+
Se aplican cambios para centrar spinner y el breadcrumb
|
|
50
|
+
|
|
51
|
+
## [12.0.1] - 2021-09-30
|
|
52
|
+
|
|
53
|
+
Se aplican cambios para adecuarse al primeflex3
|
|
54
|
+
|
|
55
|
+
## [12.0.0] - 2021-08-22
|
|
56
|
+
|
|
57
|
+
Versión angular12
|
|
58
|
+
|
|
59
|
+
## [11.0.6] - 2021-08-06
|
|
60
|
+
|
|
61
|
+
Estilo para el footer sin resultados
|
|
62
|
+
|
|
63
|
+
## [11.0.5] - 2021-07-08
|
|
64
|
+
|
|
65
|
+
se restaura el servicio DomainService que había desaparecido tras un delete no sé muy bien porqué
|
|
66
|
+
|
|
67
|
+
## [11.0.4] - 2021-07-08
|
|
68
|
+
|
|
69
|
+
se pone firstDayOfWeek a los calendarios de prime
|
|
70
|
+
|
|
71
|
+
## [11.0.3] - 2021-05-20
|
|
72
|
+
|
|
73
|
+
Se modifica el bit-ng-upload
|
|
74
|
+
|
|
75
|
+
## [11.0.2] - 2021-05-13
|
|
76
|
+
|
|
77
|
+
Se adapta la toolbar a prime para el caso de botones con más acciones
|
|
78
|
+
|
|
79
|
+
## [11.0.1] - 2021-05-05
|
|
80
|
+
|
|
81
|
+
Se añade la función objectoToQueryParameters
|
|
82
|
+
|
|
83
|
+
## [11.0.0] - 2021-04-21
|
|
84
|
+
|
|
85
|
+
Versión compatible con angular 11
|
|
86
|
+
|
|
87
|
+
## [1.2.4] - 2021-04-21
|
|
88
|
+
|
|
89
|
+
se añaden console.log en el envío de la notificacionError al detectarse fallos
|
|
90
|
+
|
|
91
|
+
## [1.2.3] - 2021-03-19
|
|
92
|
+
|
|
93
|
+
método para poder ocultar notificaciones de error
|
|
94
|
+
|
|
95
|
+
## [1.2.2] - 2021-03-05
|
|
96
|
+
|
|
97
|
+
Se imorta moment versión mini
|
|
98
|
+
|
|
99
|
+
## [1.2.1] - 2021-02-25
|
|
100
|
+
|
|
101
|
+
Añadir tag pInputText al input de bit-text-component.
|
|
102
|
+
|
|
103
|
+
## [1.2.0] - 2021-02-05
|
|
104
|
+
|
|
105
|
+
Migración a angular 10
|
|
106
|
+
|
|
107
|
+
## [1.1.3] - 2020-09-11
|
|
108
|
+
|
|
109
|
+
### Changed
|
|
110
|
+
|
|
111
|
+
Se añade la validación de teléfonos separados por comas
|
|
112
|
+
|
|
113
|
+
## [1.1.2] - 2020-09-10
|
|
114
|
+
|
|
115
|
+
### Changed
|
|
116
|
+
|
|
117
|
+
Se arregla un fallo del bit-dropdown-multiple que no traduce el valor emptyTest.
|
|
118
|
+
Se añade el parámetro filter al bit-dropdown-multiple para poder indicar si queremos que filtre o no
|
|
119
|
+
|
|
120
|
+
## [1.1.1] - 2020-08-07
|
|
121
|
+
|
|
122
|
+
### Changed
|
|
123
|
+
|
|
124
|
+
Se arregla un fallo del bit-dropdown que repetía dos veces el valor empty
|
|
125
|
+
|
|
126
|
+
## [1.1.0] - 2020-07-30
|
|
127
|
+
|
|
128
|
+
### Changed
|
|
129
|
+
|
|
130
|
+
Se eliminan los css internos
|
|
131
|
+
|
|
132
|
+
## [1.0.0] - 2020-07-01
|
|
133
|
+
|
|
134
|
+
### Changed
|
|
135
|
+
|
|
136
|
+
Primera versión funcional
|
|
137
|
+
|
|
138
|
+
## [1.0.3-alpha1] - 2020-05-14
|
|
139
|
+
|
|
140
|
+
### Changed
|
|
141
|
+
|
|
142
|
+
- Se modifica el observable que notifica el cambio de idioma de Subject a BehaviourSubject por un issue que siempre se emitía el valor ca cuando te resuscribías
|
|
143
|
+
|
|
144
|
+
## [1.0.3-alpha1] - 2020-05-13
|
|
145
|
+
|
|
146
|
+
### Changed
|
|
147
|
+
|
|
148
|
+
- Label mal construido no se traducía
|
|
149
|
+
|
|
150
|
+
## [1.0.2-alpha1] - 2020-05-13
|
|
151
|
+
|
|
152
|
+
### Changed
|
|
153
|
+
|
|
154
|
+
- Se publica la clase BaseLisPaginateComponent
|
|
155
|
+
|
|
156
|
+
## [1.0.1-alpha1] - 2020-05-12
|
|
157
|
+
|
|
158
|
+
### Added
|
|
159
|
+
|
|
160
|
+
- Commit inicial
|
package/bit-ng-library.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export
|
|
6
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
/// <amd-module name="bit-ng-library" />
|
|
5
|
+
export * from './public-api';
|
|
6
|
+
//# sourceMappingURL=bit-ng-library.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bit-ng-library.d.ts","sourceRoot":"","sources":["../../projects/bit-ng-library/src/bit-ng-library.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,cAAc,cAAc,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYml0LW5nLWxpYnJhcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9iaXQtbmctbGlicmFyeS9zcmMvYml0LW5nLWxpYnJhcnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Subject } from "rxjs";
|
|
2
|
+
import { Directive } from "@angular/core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class BaseComponent {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.destroy$ = new Subject();
|
|
7
|
+
}
|
|
8
|
+
ngOnDestroy() {
|
|
9
|
+
this.destroy$.next(true);
|
|
10
|
+
this.destroy$.unsubscribe();
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
BaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: BaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
14
|
+
BaseComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.0", type: BaseComponent, ngImport: i0 });
|
|
15
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: BaseComponent, decorators: [{
|
|
16
|
+
type: Directive
|
|
17
|
+
}] });
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iaXQtbmctbGlicmFyeS9zcmMvbGliL2Jhc2UvY29tcG9uZW50cy9iYXNlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQy9CLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBRzFDLE1BQU0sT0FBZ0IsYUFBYTtJQURuQztRQUVFLGFBQVEsR0FBcUIsSUFBSSxPQUFPLEVBQVcsQ0FBQztLQU1yRDtJQUpDLFdBQVc7UUFDVCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUN6QixJQUFJLENBQUMsUUFBUSxDQUFDLFdBQVcsRUFBRSxDQUFDO0lBQzlCLENBQUM7OzBHQU5tQixhQUFhOzhGQUFiLGFBQWE7MkZBQWIsYUFBYTtrQkFEbEMsU0FBUyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFN1YmplY3QgfSBmcm9tIFwicnhqc1wiO1xuaW1wb3J0IHsgRGlyZWN0aXZlIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcblxuQERpcmVjdGl2ZSgpXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgQmFzZUNvbXBvbmVudCB7XG4gIGRlc3Ryb3kkOiBTdWJqZWN0PGJvb2xlYW4+ID0gbmV3IFN1YmplY3Q8Ym9vbGVhbj4oKTtcblxuICBuZ09uRGVzdHJveSgpIHtcbiAgICB0aGlzLmRlc3Ryb3kkLm5leHQodHJ1ZSk7XG4gICAgdGhpcy5kZXN0cm95JC51bnN1YnNjcmliZSgpO1xuICB9XG59XG4iXX0=
|