@abp/ng.theme.shared 7.2.2 → 7.3.0-rc.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 +129 -2
- package/{esm2020 → esm2022}/abp-ng.theme.shared.mjs +4 -4
- package/{esm2020 → esm2022}/extensions/abp-ng.theme.shared-extensions.mjs +4 -4
- package/esm2022/extensions/lib/adapters/date-time.adapter.mjs +45 -0
- package/esm2022/extensions/lib/adapters/date.adapter.mjs +42 -0
- package/esm2022/extensions/lib/adapters/time.adapter.mjs +37 -0
- package/esm2022/extensions/lib/components/abstract-actions/abstract-actions.component.mjs +26 -0
- package/esm2022/extensions/lib/components/date-time-picker/date-time-picker.component.mjs +110 -0
- package/esm2022/extensions/lib/components/extensible-form/extensible-form-prop.component.mjs +199 -0
- package/esm2022/extensions/lib/components/extensible-form/extensible-form.component.mjs +74 -0
- package/esm2022/extensions/lib/components/extensible-table/extensible-table.component.mjs +137 -0
- package/esm2022/extensions/lib/components/grid-actions/grid-actions.component.mjs +40 -0
- package/esm2022/extensions/lib/components/page-toolbar/page-toolbar.component.mjs +39 -0
- package/{esm2020 → esm2022}/extensions/lib/constants/extra-properties.mjs +1 -1
- package/esm2022/extensions/lib/directives/disabled.directive.mjs +30 -0
- package/esm2022/extensions/lib/directives/prop-data.directive.mjs +42 -0
- package/{esm2020 → esm2022}/extensions/lib/enums/components.mjs +1 -1
- package/{esm2020 → esm2022}/extensions/lib/enums/props.enum.mjs +1 -1
- package/{esm2020 → esm2022}/extensions/lib/models/actions.mjs +46 -46
- package/{esm2020 → esm2022}/extensions/lib/models/entity-actions.mjs +28 -28
- package/esm2022/extensions/lib/models/entity-props.mjs +44 -0
- package/esm2022/extensions/lib/models/form-props.mjs +76 -0
- package/{esm2020 → esm2022}/extensions/lib/models/internal/object-extensions.mjs +2 -2
- package/{esm2020 → esm2022}/extensions/lib/models/object-extensions.mjs +2 -2
- package/esm2022/extensions/lib/models/props.mjs +54 -0
- package/{esm2020 → esm2022}/extensions/lib/models/toolbar-actions.mjs +43 -43
- package/esm2022/extensions/lib/pipes/create-injector.pipe.mjs +37 -0
- package/esm2022/extensions/lib/services/extensions.service.mjs +25 -0
- package/{esm2020 → esm2022}/extensions/lib/tokens/extensible-form-view-provider.token.mjs +2 -2
- package/{esm2020 → esm2022}/extensions/lib/tokens/extensions.token.mjs +11 -11
- package/esm2022/extensions/lib/ui-extensions.module.mjs +100 -0
- package/{esm2020 → esm2022}/extensions/lib/utils/actions.util.mjs +8 -8
- package/{esm2020 → esm2022}/extensions/lib/utils/enum.util.mjs +41 -41
- package/{esm2020 → esm2022}/extensions/lib/utils/factory.util.mjs +3 -3
- package/esm2022/extensions/lib/utils/form-props.util.mjs +51 -0
- package/{esm2020 → esm2022}/extensions/lib/utils/localization.util.mjs +12 -12
- package/{esm2020 → esm2022}/extensions/lib/utils/props.util.mjs +13 -13
- package/esm2022/extensions/lib/utils/state.util.mjs +126 -0
- package/{esm2020 → esm2022}/extensions/lib/utils/typeahead.util.mjs +51 -51
- package/{esm2020 → esm2022}/extensions/lib/utils/validation.util.mjs +10 -10
- package/{esm2020 → esm2022}/extensions/public-api.mjs +30 -30
- package/{esm2020 → esm2022}/lib/animations/bounce.animations.mjs +16 -16
- package/{esm2020 → esm2022}/lib/animations/collapse.animations.mjs +49 -49
- package/{esm2020 → esm2022}/lib/animations/fade.animations.mjs +37 -37
- package/{esm2020 → esm2022}/lib/animations/index.mjs +6 -6
- package/{esm2020 → esm2022}/lib/animations/modal.animations.mjs +10 -10
- package/{esm2020 → esm2022}/lib/animations/slide.animations.mjs +7 -7
- package/{esm2020 → esm2022}/lib/animations/toast.animations.mjs +12 -12
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +44 -0
- package/esm2022/lib/components/breadcrumb-items/breadcrumb-items.component.mjs +20 -0
- package/esm2022/lib/components/button/button.component.mjs +103 -0
- package/{esm2020 → esm2022}/lib/components/card/card-body.component.mjs +27 -26
- package/esm2022/lib/components/card/card-footer.component.mjs +31 -0
- package/esm2022/lib/components/card/card-header.component.mjs +31 -0
- package/esm2022/lib/components/card/card-header.directive.mjs +20 -0
- package/esm2022/lib/components/card/card-img-top.directive.mjs +20 -0
- package/esm2022/lib/components/card/card-subtitle.directive.mjs +20 -0
- package/esm2022/lib/components/card/card-title.directive.mjs +20 -0
- package/esm2022/lib/components/card/card.component.mjs +24 -0
- package/esm2022/lib/components/card/card.module.mjs +50 -0
- package/{esm2020 → esm2022}/lib/components/card/index.mjs +9 -9
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +89 -0
- package/esm2022/lib/components/confirmation/confirmation.component.mjs +46 -0
- package/esm2022/lib/components/form-input/form-input.component.mjs +95 -0
- package/esm2022/lib/components/http-error-wrapper/http-error-wrapper.component.mjs +60 -0
- package/{esm2020 → esm2022}/lib/components/index.mjs +16 -16
- package/esm2022/lib/components/loader-bar/loader-bar.component.mjs +122 -0
- package/esm2022/lib/components/loading/loading.component.mjs +20 -0
- package/esm2022/lib/components/modal/modal-close.directive.mjs +28 -0
- package/esm2022/lib/components/modal/modal-ref.service.mjs +27 -0
- package/esm2022/lib/components/modal/modal.component.mjs +190 -0
- package/esm2022/lib/components/password/password.component.mjs +39 -0
- package/esm2022/lib/components/toast/toast.component.mjs +56 -0
- package/esm2022/lib/components/toast-container/toast-container.component.mjs +59 -0
- package/{esm2020 → esm2022}/lib/constants/styles.mjs +1 -1
- package/{esm2020 → esm2022}/lib/constants/validation.mjs +19 -19
- package/esm2022/lib/directives/ellipsis.directive.mjs +65 -0
- package/{esm2020 → esm2022}/lib/directives/index.mjs +5 -5
- package/esm2022/lib/directives/loading.directive.mjs +90 -0
- package/esm2022/lib/directives/ngx-datatable-default.directive.mjs +76 -0
- package/esm2022/lib/directives/ngx-datatable-list.directive.mjs +95 -0
- package/esm2022/lib/directives/visible.directive.mjs +63 -0
- package/{esm2020 → esm2022}/lib/enums/form.mjs +5 -5
- package/{esm2020 → esm2022}/lib/enums/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/enums/route-names.mjs +1 -1
- package/esm2022/lib/handlers/document-dir.handler.mjs +32 -0
- package/esm2022/lib/handlers/error.handler.mjs +294 -0
- package/{esm2020 → esm2022}/lib/handlers/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/models/common.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/confirmation.mjs +9 -9
- package/{esm2020 → esm2022}/lib/models/index.mjs +7 -7
- package/{esm2020 → esm2022}/lib/models/nav-item.mjs +5 -5
- package/{esm2020 → esm2022}/lib/models/statistics.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/toaster.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/user-menu.mjs +3 -3
- package/{esm2020 → esm2022}/lib/models/validation.mjs +1 -1
- package/{esm2020 → esm2022}/lib/providers/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/providers/ng-bootstrap-config.provider.mjs +16 -16
- package/{esm2020 → esm2022}/lib/providers/route.provider.mjs +17 -17
- package/{esm2020 → esm2022}/lib/services/abstract-menu.service.mjs +49 -49
- package/esm2022/lib/services/confirmation.service.mjs +69 -0
- package/{esm2020 → esm2022}/lib/services/index.mjs +5 -5
- package/esm2022/lib/services/nav-items.service.mjs +18 -0
- package/esm2022/lib/services/page-alert.service.mjs +29 -0
- package/esm2022/lib/services/toaster.service.mjs +104 -0
- package/esm2022/lib/services/user-menu.service.mjs +18 -0
- package/esm2022/lib/theme-shared.module.mjs +202 -0
- package/{esm2020 → esm2022}/lib/tokens/append-content.token.mjs +10 -10
- package/{esm2020 → esm2022}/lib/tokens/confirmation-icons.token.mjs +10 -10
- package/{esm2020 → esm2022}/lib/tokens/http-error.token.mjs +13 -13
- package/{esm2020 → esm2022}/lib/tokens/index.mjs +4 -4
- package/{esm2020 → esm2022}/lib/tokens/ngx-datatable-messages.token.mjs +7 -7
- package/{esm2020 → esm2022}/lib/tokens/suppress-unsaved-changes-warning.token.mjs +2 -2
- package/esm2022/lib/utils/date-parser-formatter.mjs +59 -0
- package/{esm2020 → esm2022}/lib/utils/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/utils/validation-utils.mjs +61 -61
- package/{esm2020 → esm2022}/public-api.mjs +15 -15
- package/{esm2020 → esm2022}/testing/abp-ng.theme.shared-testing.mjs +4 -4
- package/{esm2020 → esm2022}/testing/lib/models/config.mjs +1 -1
- package/{esm2020 → esm2022}/testing/lib/models/index.mjs +1 -1
- package/esm2022/testing/lib/theme-shared-testing.module.mjs +47 -0
- package/{esm2020 → esm2022}/testing/public-api.mjs +3 -3
- package/extensions/index.d.ts +5 -5
- package/extensions/lib/adapters/date-time.adapter.d.ts +11 -11
- package/extensions/lib/adapters/date.adapter.d.ts +9 -9
- package/extensions/lib/adapters/time.adapter.d.ts +8 -8
- package/extensions/lib/components/abstract-actions/abstract-actions.component.d.ts +12 -12
- package/extensions/lib/components/date-time-picker/date-time-picker.component.d.ts +16 -16
- package/extensions/lib/components/extensible-form/extensible-form-prop.component.d.ts +43 -43
- package/extensions/lib/components/extensible-form/extensible-form.component.d.ts +25 -25
- package/extensions/lib/components/extensible-table/extensible-table.component.d.ts +38 -38
- package/extensions/lib/components/grid-actions/grid-actions.component.d.ts +13 -13
- package/extensions/lib/components/page-toolbar/page-toolbar.component.d.ts +20 -20
- package/extensions/lib/constants/extra-properties.d.ts +1 -1
- package/extensions/lib/directives/disabled.directive.d.ts +11 -11
- package/extensions/lib/directives/prop-data.directive.d.ts +19 -19
- package/extensions/lib/enums/components.d.ts +3 -3
- package/extensions/lib/enums/props.enum.d.ts +16 -16
- package/extensions/lib/models/actions.d.ts +36 -36
- package/extensions/lib/models/entity-actions.d.ts +22 -22
- package/extensions/lib/models/entity-props.d.ts +30 -29
- package/extensions/lib/models/form-props.d.ts +59 -58
- package/extensions/lib/models/internal/object-extensions.d.ts +86 -85
- package/extensions/lib/models/object-extensions.d.ts +2 -2
- package/extensions/lib/models/props.d.ts +45 -44
- package/extensions/lib/models/toolbar-actions.d.ts +38 -38
- package/extensions/lib/pipes/create-injector.pipe.d.ts +8 -8
- package/extensions/lib/services/extensions.service.d.ts +14 -14
- package/extensions/lib/tokens/extensible-form-view-provider.token.d.ts +5 -5
- package/extensions/lib/tokens/extensions.token.d.ts +20 -24
- package/extensions/lib/ui-extensions.module.d.ts +24 -24
- package/extensions/lib/utils/actions.util.d.ts +7 -7
- package/extensions/lib/utils/enum.util.d.ts +7 -7
- package/extensions/lib/utils/factory.util.d.ts +1 -1
- package/extensions/lib/utils/form-props.util.d.ts +3 -3
- package/extensions/lib/utils/localization.util.d.ts +3 -3
- package/extensions/lib/utils/props.util.d.ts +9 -9
- package/extensions/lib/utils/state.util.d.ts +5 -5
- package/extensions/lib/utils/typeahead.util.d.ts +11 -11
- package/extensions/lib/utils/validation.util.d.ts +3 -3
- package/extensions/public-api.d.ts +30 -30
- package/{fesm2020 → fesm2022}/abp-ng.theme.shared-extensions.mjs +1340 -1331
- package/fesm2022/abp-ng.theme.shared-extensions.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/abp-ng.theme.shared-testing.mjs +40 -40
- package/{fesm2015 → fesm2022}/abp-ng.theme.shared-testing.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/abp-ng.theme.shared.mjs +2292 -2290
- package/fesm2022/abp-ng.theme.shared.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/animations/bounce.animations.d.ts +1 -1
- package/lib/animations/collapse.animations.d.ts +9 -9
- package/lib/animations/fade.animations.d.ts +10 -10
- package/lib/animations/index.d.ts +6 -6
- package/lib/animations/modal.animations.d.ts +2 -2
- package/lib/animations/slide.animations.d.ts +1 -1
- package/lib/animations/toast.animations.d.ts +1 -1
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +16 -16
- package/lib/components/breadcrumb-items/breadcrumb-items.component.d.ts +7 -7
- package/lib/components/button/button.component.d.ts +26 -26
- package/lib/components/card/card-body.component.d.ts +8 -8
- package/lib/components/card/card-footer.component.d.ts +8 -8
- package/lib/components/card/card-header.component.d.ts +8 -8
- package/lib/components/card/card-header.directive.d.ts +6 -6
- package/lib/components/card/card-img-top.directive.d.ts +6 -6
- package/lib/components/card/card-subtitle.directive.d.ts +6 -6
- package/lib/components/card/card-title.directive.d.ts +6 -6
- package/lib/components/card/card.component.d.ts +7 -7
- package/lib/components/card/card.module.d.ts +15 -15
- package/lib/components/card/index.d.ts +9 -9
- package/lib/components/checkbox/checkbox.component.d.ts +18 -18
- package/lib/components/confirmation/confirmation.component.d.ts +19 -19
- package/lib/components/form-input/form-input.component.d.ts +19 -19
- package/lib/components/http-error-wrapper/http-error-wrapper.component.d.ts +27 -27
- package/lib/components/index.d.ts +16 -16
- package/lib/components/loader-bar/loader-bar.component.d.ts +33 -33
- package/lib/components/loading/loading.component.d.ts +5 -5
- package/lib/components/modal/modal-close.directive.d.ts +9 -9
- package/lib/components/modal/modal-ref.service.d.ts +13 -13
- package/lib/components/modal/modal.component.d.ts +50 -50
- package/lib/components/password/password.component.d.ts +12 -12
- package/lib/components/toast/toast.component.d.ts +14 -14
- package/lib/components/toast-container/toast-container.component.d.ts +22 -22
- package/lib/constants/styles.d.ts +2 -2
- package/lib/constants/validation.d.ts +19 -19
- package/lib/directives/ellipsis.directive.d.ts +21 -21
- package/lib/directives/index.d.ts +5 -5
- package/lib/directives/loading.directive.d.ts +25 -25
- package/lib/directives/ngx-datatable-default.directive.d.ts +30 -30
- package/lib/directives/ngx-datatable-list.directive.d.ts +24 -24
- package/lib/directives/visible.directive.d.ts +18 -18
- package/lib/enums/form.d.ts +4 -4
- package/lib/enums/index.d.ts +2 -2
- package/lib/enums/route-names.d.ts +3 -3
- package/lib/handlers/document-dir.handler.d.ts +13 -13
- package/lib/handlers/error.handler.d.ts +83 -83
- package/lib/handlers/index.d.ts +2 -2
- package/lib/models/common.d.ts +21 -21
- package/lib/models/confirmation.d.ts +27 -27
- package/lib/models/index.d.ts +7 -7
- package/lib/models/nav-item.d.ts +13 -13
- package/lib/models/statistics.d.ts +12 -12
- package/lib/models/toaster.d.ts +30 -30
- package/lib/models/user-menu.d.ts +8 -8
- package/lib/models/validation.d.ts +1 -1
- package/lib/providers/index.d.ts +2 -2
- package/lib/providers/ng-bootstrap-config.provider.d.ts +8 -8
- package/lib/providers/route.provider.d.ts +8 -8
- package/lib/services/abstract-menu.service.d.ts +13 -13
- package/lib/services/confirmation.service.d.ts +21 -21
- package/lib/services/index.d.ts +5 -5
- package/lib/services/nav-items.service.d.ts +8 -8
- package/lib/services/page-alert.service.d.ts +18 -18
- package/lib/services/toaster.service.d.ts +60 -60
- package/lib/services/user-menu.service.d.ts +8 -8
- package/lib/theme-shared.module.d.ts +38 -38
- package/lib/tokens/append-content.token.d.ts +2 -2
- package/lib/tokens/confirmation-icons.token.d.ts +11 -11
- package/lib/tokens/http-error.token.d.ts +5 -5
- package/lib/tokens/index.d.ts +4 -4
- package/lib/tokens/ngx-datatable-messages.token.d.ts +12 -12
- package/lib/tokens/suppress-unsaved-changes-warning.token.d.ts +2 -2
- package/lib/utils/date-parser-formatter.d.ts +12 -12
- package/lib/utils/index.d.ts +2 -2
- package/lib/utils/validation-utils.d.ts +5 -5
- package/package.json +28 -24
- package/public-api.d.ts +12 -12
- package/testing/index.d.ts +5 -5
- package/testing/lib/models/config.d.ts +4 -4
- package/testing/lib/models/index.d.ts +1 -1
- package/testing/lib/theme-shared-testing.module.d.ts +14 -14
- package/testing/public-api.d.ts +3 -3
- package/esm2020/extensions/lib/adapters/date-time.adapter.mjs +0 -44
- package/esm2020/extensions/lib/adapters/date.adapter.mjs +0 -41
- package/esm2020/extensions/lib/adapters/time.adapter.mjs +0 -36
- package/esm2020/extensions/lib/components/abstract-actions/abstract-actions.component.mjs +0 -25
- package/esm2020/extensions/lib/components/date-time-picker/date-time-picker.component.mjs +0 -109
- package/esm2020/extensions/lib/components/extensible-form/extensible-form-prop.component.mjs +0 -198
- package/esm2020/extensions/lib/components/extensible-form/extensible-form.component.mjs +0 -73
- package/esm2020/extensions/lib/components/extensible-table/extensible-table.component.mjs +0 -135
- package/esm2020/extensions/lib/components/grid-actions/grid-actions.component.mjs +0 -39
- package/esm2020/extensions/lib/components/page-toolbar/page-toolbar.component.mjs +0 -38
- package/esm2020/extensions/lib/directives/disabled.directive.mjs +0 -29
- package/esm2020/extensions/lib/directives/prop-data.directive.mjs +0 -41
- package/esm2020/extensions/lib/models/entity-props.mjs +0 -43
- package/esm2020/extensions/lib/models/form-props.mjs +0 -75
- package/esm2020/extensions/lib/models/props.mjs +0 -53
- package/esm2020/extensions/lib/pipes/create-injector.pipe.mjs +0 -36
- package/esm2020/extensions/lib/services/extensions.service.mjs +0 -24
- package/esm2020/extensions/lib/ui-extensions.module.mjs +0 -95
- package/esm2020/extensions/lib/utils/form-props.util.mjs +0 -51
- package/esm2020/extensions/lib/utils/state.util.mjs +0 -123
- package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +0 -43
- package/esm2020/lib/components/breadcrumb-items/breadcrumb-items.component.mjs +0 -19
- package/esm2020/lib/components/button/button.component.mjs +0 -102
- package/esm2020/lib/components/card/card-footer.component.mjs +0 -30
- package/esm2020/lib/components/card/card-header.component.mjs +0 -30
- package/esm2020/lib/components/card/card-header.directive.mjs +0 -19
- package/esm2020/lib/components/card/card-img-top.directive.mjs +0 -19
- package/esm2020/lib/components/card/card-subtitle.directive.mjs +0 -19
- package/esm2020/lib/components/card/card-title.directive.mjs +0 -19
- package/esm2020/lib/components/card/card.component.mjs +0 -23
- package/esm2020/lib/components/card/card.module.mjs +0 -49
- package/esm2020/lib/components/checkbox/checkbox.component.mjs +0 -88
- package/esm2020/lib/components/confirmation/confirmation.component.mjs +0 -45
- package/esm2020/lib/components/form-input/form-input.component.mjs +0 -94
- package/esm2020/lib/components/http-error-wrapper/http-error-wrapper.component.mjs +0 -59
- package/esm2020/lib/components/loader-bar/loader-bar.component.mjs +0 -121
- package/esm2020/lib/components/loading/loading.component.mjs +0 -19
- package/esm2020/lib/components/modal/modal-close.directive.mjs +0 -27
- package/esm2020/lib/components/modal/modal-ref.service.mjs +0 -26
- package/esm2020/lib/components/modal/modal.component.mjs +0 -189
- package/esm2020/lib/components/password/password.component.mjs +0 -38
- package/esm2020/lib/components/toast/toast.component.mjs +0 -55
- package/esm2020/lib/components/toast-container/toast-container.component.mjs +0 -58
- package/esm2020/lib/directives/ellipsis.directive.mjs +0 -63
- package/esm2020/lib/directives/loading.directive.mjs +0 -89
- package/esm2020/lib/directives/ngx-datatable-default.directive.mjs +0 -75
- package/esm2020/lib/directives/ngx-datatable-list.directive.mjs +0 -94
- package/esm2020/lib/directives/visible.directive.mjs +0 -62
- package/esm2020/lib/handlers/document-dir.handler.mjs +0 -31
- package/esm2020/lib/handlers/error.handler.mjs +0 -291
- package/esm2020/lib/services/confirmation.service.mjs +0 -68
- package/esm2020/lib/services/nav-items.service.mjs +0 -17
- package/esm2020/lib/services/page-alert.service.mjs +0 -28
- package/esm2020/lib/services/toaster.service.mjs +0 -103
- package/esm2020/lib/services/user-menu.service.mjs +0 -17
- package/esm2020/lib/theme-shared.module.mjs +0 -200
- package/esm2020/lib/utils/date-parser-formatter.mjs +0 -58
- package/esm2020/testing/lib/theme-shared-testing.module.mjs +0 -46
- package/fesm2015/abp-ng.theme.shared-extensions.mjs +0 -1460
- package/fesm2015/abp-ng.theme.shared-extensions.mjs.map +0 -1
- package/fesm2015/abp-ng.theme.shared-testing.mjs +0 -54
- package/fesm2015/abp-ng.theme.shared.mjs +0 -2767
- package/fesm2015/abp-ng.theme.shared.mjs.map +0 -1
- package/fesm2020/abp-ng.theme.shared-extensions.mjs.map +0 -1
- package/fesm2020/abp-ng.theme.shared-testing.mjs.map +0 -1
- package/fesm2020/abp-ng.theme.shared.mjs.map +0 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export
|
|
3
|
-
export interface DismissableModal {
|
|
4
|
-
dismiss(mode: ModalDismissMode): void;
|
|
5
|
-
}
|
|
6
|
-
export declare class ModalRefService {
|
|
7
|
-
modalRefs: DismissableModal[];
|
|
8
|
-
register(modal: DismissableModal): void;
|
|
9
|
-
unregister(modal: DismissableModal): void;
|
|
10
|
-
dismissAll(mode: ModalDismissMode): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ModalRefService, never>;
|
|
12
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ModalRefService>;
|
|
13
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export type ModalDismissMode = 'hard' | 'soft';
|
|
3
|
+
export interface DismissableModal {
|
|
4
|
+
dismiss(mode: ModalDismissMode): void;
|
|
5
|
+
}
|
|
6
|
+
export declare class ModalRefService {
|
|
7
|
+
modalRefs: DismissableModal[];
|
|
8
|
+
register(modal: DismissableModal): void;
|
|
9
|
+
unregister(modal: DismissableModal): void;
|
|
10
|
+
dismissAll(mode: ModalDismissMode): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalRefService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ModalRefService>;
|
|
13
|
+
}
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
import { SubscriptionService } from '@abp/ng.core';
|
|
2
|
-
import { EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
3
|
-
import { NgbModal, NgbModalOptions, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
-
import { Subject } from 'rxjs';
|
|
5
|
-
import { ConfirmationService } from '../../services/confirmation.service';
|
|
6
|
-
import { ButtonComponent } from '../button/button.component';
|
|
7
|
-
import { DismissableModal, ModalDismissMode, ModalRefService } from './modal-ref.service';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export
|
|
10
|
-
export declare class ModalComponent implements OnInit, OnDestroy, DismissableModal {
|
|
11
|
-
private confirmationService;
|
|
12
|
-
private subscription;
|
|
13
|
-
private suppressUnsavedChangesWarningToken;
|
|
14
|
-
private modal;
|
|
15
|
-
private modalRefService;
|
|
16
|
-
get visible(): boolean;
|
|
17
|
-
set visible(value: boolean);
|
|
18
|
-
get busy(): boolean;
|
|
19
|
-
set busy(value: boolean);
|
|
20
|
-
options: NgbModalOptions;
|
|
21
|
-
suppressUnsavedChangesWarning: boolean;
|
|
22
|
-
modalContent?: TemplateRef<any>;
|
|
23
|
-
abpHeader?: TemplateRef<any>;
|
|
24
|
-
abpBody?: TemplateRef<any>;
|
|
25
|
-
abpFooter?: TemplateRef<any>;
|
|
26
|
-
abpSubmit?: ButtonComponent;
|
|
27
|
-
readonly visibleChange: EventEmitter<boolean>;
|
|
28
|
-
readonly init: EventEmitter<void>;
|
|
29
|
-
readonly appear: EventEmitter<void>;
|
|
30
|
-
readonly disappear: EventEmitter<void>;
|
|
31
|
-
_visible: boolean;
|
|
32
|
-
_busy: boolean;
|
|
33
|
-
modalRef: NgbModalRef;
|
|
34
|
-
isConfirmationOpen: boolean;
|
|
35
|
-
destroy$: Subject<void>;
|
|
36
|
-
modalIdentifier: string;
|
|
37
|
-
private toggle$;
|
|
38
|
-
get modalWindowRef(): Element;
|
|
39
|
-
get isFormDirty(): boolean;
|
|
40
|
-
constructor(confirmationService: ConfirmationService, subscription: SubscriptionService, suppressUnsavedChangesWarningToken: boolean, modal: NgbModal, modalRefService: ModalRefService);
|
|
41
|
-
ngOnInit(): void;
|
|
42
|
-
dismiss(mode: ModalDismissMode): void;
|
|
43
|
-
private initToggleStream;
|
|
44
|
-
private toggle;
|
|
45
|
-
ngOnDestroy(): void;
|
|
46
|
-
close(): void;
|
|
47
|
-
listen(): void;
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, [null, null, { optional: true; }, null, null]>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "abp-modal", never, { "visible": "visible"; "busy": "busy"; "options": "options"; "suppressUnsavedChangesWarning": "suppressUnsavedChangesWarning"; }, { "visibleChange": "visibleChange"; "init": "init"; "appear": "appear"; "disappear": "disappear"; }, ["abpHeader", "abpBody", "abpFooter", "abpSubmit"], ["*"], false, never>;
|
|
50
|
-
}
|
|
1
|
+
import { SubscriptionService } from '@abp/ng.core';
|
|
2
|
+
import { EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
3
|
+
import { NgbModal, NgbModalOptions, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
+
import { Subject } from 'rxjs';
|
|
5
|
+
import { ConfirmationService } from '../../services/confirmation.service';
|
|
6
|
+
import { ButtonComponent } from '../button/button.component';
|
|
7
|
+
import { DismissableModal, ModalDismissMode, ModalRefService } from './modal-ref.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export type ModalSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
10
|
+
export declare class ModalComponent implements OnInit, OnDestroy, DismissableModal {
|
|
11
|
+
private confirmationService;
|
|
12
|
+
private subscription;
|
|
13
|
+
private suppressUnsavedChangesWarningToken;
|
|
14
|
+
private modal;
|
|
15
|
+
private modalRefService;
|
|
16
|
+
get visible(): boolean;
|
|
17
|
+
set visible(value: boolean);
|
|
18
|
+
get busy(): boolean;
|
|
19
|
+
set busy(value: boolean);
|
|
20
|
+
options: NgbModalOptions;
|
|
21
|
+
suppressUnsavedChangesWarning: boolean;
|
|
22
|
+
modalContent?: TemplateRef<any>;
|
|
23
|
+
abpHeader?: TemplateRef<any>;
|
|
24
|
+
abpBody?: TemplateRef<any>;
|
|
25
|
+
abpFooter?: TemplateRef<any>;
|
|
26
|
+
abpSubmit?: ButtonComponent;
|
|
27
|
+
readonly visibleChange: EventEmitter<boolean>;
|
|
28
|
+
readonly init: EventEmitter<void>;
|
|
29
|
+
readonly appear: EventEmitter<void>;
|
|
30
|
+
readonly disappear: EventEmitter<void>;
|
|
31
|
+
_visible: boolean;
|
|
32
|
+
_busy: boolean;
|
|
33
|
+
modalRef: NgbModalRef;
|
|
34
|
+
isConfirmationOpen: boolean;
|
|
35
|
+
destroy$: Subject<void>;
|
|
36
|
+
modalIdentifier: string;
|
|
37
|
+
private toggle$;
|
|
38
|
+
get modalWindowRef(): Element;
|
|
39
|
+
get isFormDirty(): boolean;
|
|
40
|
+
constructor(confirmationService: ConfirmationService, subscription: SubscriptionService, suppressUnsavedChangesWarningToken: boolean, modal: NgbModal, modalRefService: ModalRefService);
|
|
41
|
+
ngOnInit(): void;
|
|
42
|
+
dismiss(mode: ModalDismissMode): void;
|
|
43
|
+
private initToggleStream;
|
|
44
|
+
private toggle;
|
|
45
|
+
ngOnDestroy(): void;
|
|
46
|
+
close(): void;
|
|
47
|
+
listen(): void;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, [null, null, { optional: true; }, null, null]>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "abp-modal", never, { "visible": { "alias": "visible"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "options": { "alias": "options"; "required": false; }; "suppressUnsavedChangesWarning": { "alias": "suppressUnsavedChangesWarning"; "required": false; }; }, { "visibleChange": "visibleChange"; "init": "init"; "appear": "appear"; "disappear": "disappear"; }, ["abpHeader", "abpBody", "abpFooter", "abpSubmit"], ["*"], false, never>;
|
|
50
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Injector } from '@angular/core';
|
|
2
|
-
import { AbstractNgModelComponent } from '@abp/ng.core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class PasswordComponent extends AbstractNgModelComponent {
|
|
5
|
-
inputId: string;
|
|
6
|
-
formControlName: string;
|
|
7
|
-
fieldTextType?: boolean;
|
|
8
|
-
constructor(injector: Injector);
|
|
9
|
-
toggleFieldTextType(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordComponent, "abp-password", never, { "inputId": "inputId"; "formControlName": "formControlName"; }, {}, never, never, false, never>;
|
|
12
|
-
}
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { AbstractNgModelComponent } from '@abp/ng.core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PasswordComponent extends AbstractNgModelComponent {
|
|
5
|
+
inputId: string;
|
|
6
|
+
formControlName: string;
|
|
7
|
+
fieldTextType?: boolean;
|
|
8
|
+
constructor(injector: Injector);
|
|
9
|
+
toggleFieldTextType(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordComponent, "abp-password", never, { "inputId": { "alias": "inputId"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { Toaster } from '../../models/toaster';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ToastComponent implements OnInit {
|
|
5
|
-
toast: Toaster.Toast;
|
|
6
|
-
remove: EventEmitter<number>;
|
|
7
|
-
get severityClass(): string;
|
|
8
|
-
get iconClass(): string;
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
close(): void;
|
|
11
|
-
tap(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "abp-toast", never, { "toast": "toast"; }, { "remove": "remove"; }, never, never, false, never>;
|
|
14
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { Toaster } from '../../models/toaster';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ToastComponent implements OnInit {
|
|
5
|
+
toast: Toaster.Toast;
|
|
6
|
+
remove: EventEmitter<number>;
|
|
7
|
+
get severityClass(): string;
|
|
8
|
+
get iconClass(): string;
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
close(): void;
|
|
11
|
+
tap(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "abp-toast", never, { "toast": { "alias": "toast"; "required": false; }; }, { "remove": "remove"; }, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ReplaySubject } from 'rxjs';
|
|
3
|
-
import { Toaster } from '../../models/toaster';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ToastContainerComponent implements OnInit {
|
|
6
|
-
toasts$: ReplaySubject<Toaster.Toast[]>;
|
|
7
|
-
remove: (toastId: number) => void;
|
|
8
|
-
toasts: Toaster.Toast[];
|
|
9
|
-
top?: string;
|
|
10
|
-
right: string;
|
|
11
|
-
defaultRight: string;
|
|
12
|
-
defaultMobileRight: string;
|
|
13
|
-
bottom: string;
|
|
14
|
-
left?: string;
|
|
15
|
-
toastKey?: string;
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
onWindowResize(): void;
|
|
18
|
-
setDefaultRight(): void;
|
|
19
|
-
trackByFunc(index: number, toast: Toaster.Toast): any;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ToastContainerComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToastContainerComponent, "abp-toast-container", never, { "top": "top"; "right": "right"; "bottom": "bottom"; "left": "left"; "toastKey": "toastKey"; }, {}, never, never, false, never>;
|
|
22
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ReplaySubject } from 'rxjs';
|
|
3
|
+
import { Toaster } from '../../models/toaster';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ToastContainerComponent implements OnInit {
|
|
6
|
+
toasts$: ReplaySubject<Toaster.Toast[]>;
|
|
7
|
+
remove: (toastId: number) => void;
|
|
8
|
+
toasts: Toaster.Toast[];
|
|
9
|
+
top?: string;
|
|
10
|
+
right: string;
|
|
11
|
+
defaultRight: string;
|
|
12
|
+
defaultMobileRight: string;
|
|
13
|
+
bottom: string;
|
|
14
|
+
left?: string;
|
|
15
|
+
toastKey?: string;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
onWindowResize(): void;
|
|
18
|
+
setDefaultRight(): void;
|
|
19
|
+
trackByFunc(index: number, toast: Toaster.Toast): any;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastContainerComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToastContainerComponent, "abp-toast-container", never, { "top": { "alias": "top"; "required": false; }; "right": { "alias": "right"; "required": false; }; "bottom": { "alias": "bottom"; "required": false; }; "left": { "alias": "left"; "required": false; }; "toastKey": { "alias": "toastKey"; "required": false; }; }, {}, never, never, false, never>;
|
|
22
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "\n.is-invalid .form-control {\n border-color: #dc3545;\n border-style: solid !important;\n padding-right: calc(1.5em + .75rem);\n background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e);\n background-repeat: no-repeat;\n background-position: right calc(.375em + .1875rem) center;\n background-size: calc(.75em + .375rem) calc(.75em + .375rem);\n}\n\n.is-invalid .invalid-feedback,\n.is-invalid + * .invalid-feedback {\n display: block;\n}\n\n.data-tables-filter {\n text-align: right;\n}\n\n[dir=rtl] .data-tables-filter {\n text-align: left;\n}\n\n.pointer {\n cursor: pointer;\n}\n\n.navbar .dropdown-submenu a::after {\n transform: rotate(-90deg);\n position: absolute;\n right: 16px;\n top: 18px;\n}\n\n.navbar .dropdown-menu {\n min-width: 215px;\n}\n\n.datatable-scroll {\n margin-bottom: 5px !important;\n width: unset !important;\n}\n\n.ui-table-scrollable-body::-webkit-scrollbar {\n height: 5px !important;\n width: 5px !important;\n}\n\n.ui-table-scrollable-body::-webkit-scrollbar-track {\n background: #ddd;\n}\n\n.ui-table-scrollable-body::-webkit-scrollbar-thumb {\n background: #8a8686;\n}\n\n.abp-ellipsis-inline {\n display: inline-block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.abp-ellipsis {\n overflow: hidden !important;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.ui-widget-overlay {\n z-index: 1000;\n}\n\n.color-white {\n color: #FFF !important;\n}\n\n.custom-checkbox > label {\n cursor: pointer;\n}\n\n/* <animations */\n\n.fade-in-top {\n animation: fadeInTop 0.2s ease-in-out;\n}\n\n.fade-out-top {\n animation: fadeOutTop 0.2s ease-in-out;\n}\n\n.abp-collapsed-height {\n -moz-transition: max-height linear 0.35s;\n -ms-transition: max-height linear 0.35s;\n -o-transition: max-height linear 0.35s;\n -webkit-transition: max-height linear 0.35s;\n overflow:hidden;\n transition:max-height 0.35s linear;\n height:auto;\n max-height: 0;\n}\n\n.abp-mh-25 {\n max-height: 25vh;\n}\n\n.abp-mh-50 {\n transition:max-height 0.65s linear;\n max-height: 50vh;\n}\n\n.abp-mh-75 {\n transition:max-height 0.85s linear;\n max-height: 75vh;\n}\n\n.abp-mh-100 {\n transition:max-height 1s linear;\n max-height: 100vh;\n}\n\n[class^=\"sorting\"] {\n opacity: .3;\n cursor: pointer;\n}\n[class^=\"sorting\"]:before {\n right: 0.5rem;\n content: \"↑\";\n}\n[class^=\"sorting\"]:after {\n right: 0.5rem;\n content: \"↓\";\n}\n\n.sorting_desc {\n opacity: 1;\n}\n.sorting_desc:before {\n opacity: .3;\n}\n\n.sorting_asc {\n opacity: 1;\n}\n.sorting_asc:after {\n opacity: .3;\n}\n.ngx-datatable.material {\n box-shadow: none;\n}\nngb-typeahead-window, ngb-typeahead-window.dropdown-menu {\n max-height: 25em;\n overflow-y: scroll !important;\n z-index: 1050;\n}\n\n.abp-modal-header {\n word-break: break-word;\n}\n\n\n@keyframes fadeInTop {\n from {\n transform: translateY(-5px);\n opacity: 0;\n }\n\n to {\n transform: translateY(0px);\n opacity: 1;\n }\n}\n\n@keyframes fadeOutTop {\n to {\n transform: translateY(-5px);\n opacity: 0;\n }\n}\n\n/* </animations */\n.ngb-dp-body {\n z-index: 1055 !important;\n}\n";
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: "\n.is-invalid .form-control {\n border-color: #dc3545;\n border-style: solid !important;\n padding-right: calc(1.5em + .75rem);\n background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e);\n background-repeat: no-repeat;\n background-position: right calc(.375em + .1875rem) center;\n background-size: calc(.75em + .375rem) calc(.75em + .375rem);\n}\n\n.is-invalid .invalid-feedback,\n.is-invalid + * .invalid-feedback {\n display: block;\n}\n\n.data-tables-filter {\n text-align: right;\n}\n\n[dir=rtl] .data-tables-filter {\n text-align: left;\n}\n\n.pointer {\n cursor: pointer;\n}\n\n.navbar .dropdown-submenu a::after {\n transform: rotate(-90deg);\n position: absolute;\n right: 16px;\n top: 18px;\n}\n\n.navbar .dropdown-menu {\n min-width: 215px;\n}\n\n.datatable-scroll {\n margin-bottom: 5px !important;\n width: unset !important;\n}\n\n.ui-table-scrollable-body::-webkit-scrollbar {\n height: 5px !important;\n width: 5px !important;\n}\n\n.ui-table-scrollable-body::-webkit-scrollbar-track {\n background: #ddd;\n}\n\n.ui-table-scrollable-body::-webkit-scrollbar-thumb {\n background: #8a8686;\n}\n\n.abp-ellipsis-inline {\n display: inline-block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.abp-ellipsis {\n overflow: hidden !important;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.ui-widget-overlay {\n z-index: 1000;\n}\n\n.color-white {\n color: #FFF !important;\n}\n\n.custom-checkbox > label {\n cursor: pointer;\n}\n\n/* <animations */\n\n.fade-in-top {\n animation: fadeInTop 0.2s ease-in-out;\n}\n\n.fade-out-top {\n animation: fadeOutTop 0.2s ease-in-out;\n}\n\n.abp-collapsed-height {\n -moz-transition: max-height linear 0.35s;\n -ms-transition: max-height linear 0.35s;\n -o-transition: max-height linear 0.35s;\n -webkit-transition: max-height linear 0.35s;\n overflow:hidden;\n transition:max-height 0.35s linear;\n height:auto;\n max-height: 0;\n}\n\n.abp-mh-25 {\n max-height: 25vh;\n}\n\n.abp-mh-50 {\n transition:max-height 0.65s linear;\n max-height: 50vh;\n}\n\n.abp-mh-75 {\n transition:max-height 0.85s linear;\n max-height: 75vh;\n}\n\n.abp-mh-100 {\n transition:max-height 1s linear;\n max-height: 100vh;\n}\n\n[class^=\"sorting\"] {\n opacity: .3;\n cursor: pointer;\n}\n[class^=\"sorting\"]:before {\n right: 0.5rem;\n content: \"↑\";\n}\n[class^=\"sorting\"]:after {\n right: 0.5rem;\n content: \"↓\";\n}\n\n.sorting_desc {\n opacity: 1;\n}\n.sorting_desc:before {\n opacity: .3;\n}\n\n.sorting_asc {\n opacity: 1;\n}\n.sorting_asc:after {\n opacity: .3;\n}\n.ngx-datatable.material {\n box-shadow: none;\n}\nngb-typeahead-window, ngb-typeahead-window.dropdown-menu {\n max-height: 25em;\n overflow-y: scroll !important;\n z-index: 1050;\n}\n\n.abp-modal-header {\n word-break: break-word;\n}\n\n\n@keyframes fadeInTop {\n from {\n transform: translateY(-5px);\n opacity: 0;\n }\n\n to {\n transform: translateY(0px);\n opacity: 1;\n }\n}\n\n@keyframes fadeOutTop {\n to {\n transform: translateY(-5px);\n opacity: 0;\n }\n}\n\n/* </animations */\n.ngb-dp-body {\n z-index: 1055 !important;\n}\n";
|
|
2
|
+
export default _default;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export declare const DEFAULT_VALIDATION_BLUEPRINTS: {
|
|
2
|
-
creditCard: string;
|
|
3
|
-
email: string;
|
|
4
|
-
invalid: string;
|
|
5
|
-
max: string;
|
|
6
|
-
maxlength: string;
|
|
7
|
-
min: string;
|
|
8
|
-
minlength: string;
|
|
9
|
-
ngbDate: string;
|
|
10
|
-
passwordMismatch: string;
|
|
11
|
-
range: string;
|
|
12
|
-
required: string;
|
|
13
|
-
url: string;
|
|
14
|
-
passwordRequiresLower: string;
|
|
15
|
-
passwordRequiresUpper: string;
|
|
16
|
-
passwordRequiresDigit: string;
|
|
17
|
-
passwordRequiresNonAlphanumeric: string;
|
|
18
|
-
usernamePattern: string;
|
|
19
|
-
};
|
|
1
|
+
export declare const DEFAULT_VALIDATION_BLUEPRINTS: {
|
|
2
|
+
creditCard: string;
|
|
3
|
+
email: string;
|
|
4
|
+
invalid: string;
|
|
5
|
+
max: string;
|
|
6
|
+
maxlength: string;
|
|
7
|
+
min: string;
|
|
8
|
+
minlength: string;
|
|
9
|
+
ngbDate: string;
|
|
10
|
+
passwordMismatch: string;
|
|
11
|
+
range: string;
|
|
12
|
+
required: string;
|
|
13
|
+
url: string;
|
|
14
|
+
passwordRequiresLower: string;
|
|
15
|
+
passwordRequiresUpper: string;
|
|
16
|
+
passwordRequiresDigit: string;
|
|
17
|
+
passwordRequiresNonAlphanumeric: string;
|
|
18
|
+
usernamePattern: string;
|
|
19
|
+
};
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class EllipsisDirective implements AfterViewInit {
|
|
4
|
-
private cdRef;
|
|
5
|
-
private elRef;
|
|
6
|
-
width?: string;
|
|
7
|
-
title?: string;
|
|
8
|
-
enabled: boolean;
|
|
9
|
-
get inlineClass(): string;
|
|
10
|
-
get class(): boolean;
|
|
11
|
-
get maxWidth(): string;
|
|
12
|
-
constructor(cdRef: ChangeDetectorRef, elRef: ElementRef);
|
|
13
|
-
ngAfterViewInit(): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EllipsisDirective, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EllipsisDirective, "[abpEllipsis]", never, { "width": "abpEllipsis"; "title": "title"; "enabled": "abpEllipsisEnabled"; }, {}, never, never, false, never>;
|
|
16
|
-
}
|
|
17
|
-
export declare class EllipsisModule {
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EllipsisModule, never>;
|
|
19
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EllipsisModule, [typeof EllipsisDirective], never, [typeof EllipsisDirective]>;
|
|
20
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<EllipsisModule>;
|
|
21
|
-
}
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class EllipsisDirective implements AfterViewInit {
|
|
4
|
+
private cdRef;
|
|
5
|
+
private elRef;
|
|
6
|
+
width?: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
enabled: boolean;
|
|
9
|
+
get inlineClass(): string;
|
|
10
|
+
get class(): boolean;
|
|
11
|
+
get maxWidth(): string;
|
|
12
|
+
constructor(cdRef: ChangeDetectorRef, elRef: ElementRef);
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EllipsisDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EllipsisDirective, "[abpEllipsis]", never, { "width": { "alias": "abpEllipsis"; "required": false; }; "title": { "alias": "title"; "required": false; }; "enabled": { "alias": "abpEllipsisEnabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
17
|
+
export declare class EllipsisModule {
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EllipsisModule, never>;
|
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EllipsisModule, [typeof EllipsisDirective], never, [typeof EllipsisDirective]>;
|
|
20
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<EllipsisModule>;
|
|
21
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './ellipsis.directive';
|
|
2
|
-
export * from './loading.directive';
|
|
3
|
-
export * from './ngx-datatable-default.directive';
|
|
4
|
-
export * from './ngx-datatable-list.directive';
|
|
5
|
-
export * from './visible.directive';
|
|
1
|
+
export * from './ellipsis.directive';
|
|
2
|
+
export * from './loading.directive';
|
|
3
|
+
export * from './ngx-datatable-default.directive';
|
|
4
|
+
export * from './ngx-datatable-list.directive';
|
|
5
|
+
export * from './visible.directive';
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { ComponentFactoryResolver, ComponentRef, ElementRef, Injector, OnDestroy, OnInit, Renderer2, ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { Subscription } from 'rxjs';
|
|
3
|
-
import { LoadingComponent } from '../components/loading/loading.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class LoadingDirective implements OnInit, OnDestroy {
|
|
6
|
-
private elRef;
|
|
7
|
-
private vcRef;
|
|
8
|
-
private cdRes;
|
|
9
|
-
private injector;
|
|
10
|
-
private renderer;
|
|
11
|
-
private _loading;
|
|
12
|
-
position: string;
|
|
13
|
-
get loading(): boolean;
|
|
14
|
-
set loading(newValue: boolean);
|
|
15
|
-
targetElement: HTMLElement | undefined;
|
|
16
|
-
delay: number;
|
|
17
|
-
componentRef: ComponentRef<LoadingComponent>;
|
|
18
|
-
rootNode: HTMLDivElement | null;
|
|
19
|
-
timerSubscription: Subscription | null;
|
|
20
|
-
constructor(elRef: ElementRef<HTMLElement>, vcRef: ViewContainerRef, cdRes: ComponentFactoryResolver, injector: Injector, renderer: Renderer2);
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
ngOnDestroy(): void;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingDirective, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LoadingDirective, "[abpLoading]", never, { "loading": "abpLoading"; "targetElement": "abpLoadingTargetElement"; "delay": "abpLoadingDelay"; }, {}, never, never, false, never>;
|
|
25
|
-
}
|
|
1
|
+
import { ComponentFactoryResolver, ComponentRef, ElementRef, Injector, OnDestroy, OnInit, Renderer2, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { Subscription } from 'rxjs';
|
|
3
|
+
import { LoadingComponent } from '../components/loading/loading.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LoadingDirective implements OnInit, OnDestroy {
|
|
6
|
+
private elRef;
|
|
7
|
+
private vcRef;
|
|
8
|
+
private cdRes;
|
|
9
|
+
private injector;
|
|
10
|
+
private renderer;
|
|
11
|
+
private _loading;
|
|
12
|
+
position: string;
|
|
13
|
+
get loading(): boolean;
|
|
14
|
+
set loading(newValue: boolean);
|
|
15
|
+
targetElement: HTMLElement | undefined;
|
|
16
|
+
delay: number;
|
|
17
|
+
componentRef: ComponentRef<LoadingComponent>;
|
|
18
|
+
rootNode: HTMLDivElement | null;
|
|
19
|
+
timerSubscription: Subscription | null;
|
|
20
|
+
constructor(elRef: ElementRef<HTMLElement>, vcRef: ViewContainerRef, cdRes: ComponentFactoryResolver, injector: Injector, renderer: Renderer2);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingDirective, never>;
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LoadingDirective, "[abpLoading]", never, { "loading": { "alias": "abpLoading"; "required": false; }; "targetElement": { "alias": "abpLoadingTargetElement"; "required": false; }; "delay": { "alias": "abpLoadingDelay"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
|
+
}
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
2
|
-
import { DatatableComponent } from '@swimlane/ngx-datatable';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgxDatatableDefaultDirective implements AfterViewInit, OnDestroy {
|
|
5
|
-
private table;
|
|
6
|
-
private document;
|
|
7
|
-
private subscription;
|
|
8
|
-
private resizeDiff;
|
|
9
|
-
class: string;
|
|
10
|
-
get classes(): string;
|
|
11
|
-
constructor(table: DatatableComponent, document: MockDocument);
|
|
12
|
-
private fixHorizontalGap;
|
|
13
|
-
private fixStyleOnWindowResize;
|
|
14
|
-
ngAfterViewInit(): void;
|
|
15
|
-
ngOnDestroy(): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgxDatatableDefaultDirective, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxDatatableDefaultDirective, "ngx-datatable[default]", ["ngxDatatableDefault"], { "class": "class"; }, {}, never, never, false, never>;
|
|
18
|
-
}
|
|
19
|
-
interface MockDocument {
|
|
20
|
-
body: MockBody;
|
|
21
|
-
documentElement: MockDocumentElement;
|
|
22
|
-
}
|
|
23
|
-
interface MockBody {
|
|
24
|
-
offsetWidth: number;
|
|
25
|
-
}
|
|
26
|
-
interface MockDocumentElement {
|
|
27
|
-
clientHeight: number;
|
|
28
|
-
scrollHeight: number;
|
|
29
|
-
}
|
|
30
|
-
export {};
|
|
1
|
+
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { DatatableComponent } from '@swimlane/ngx-datatable';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NgxDatatableDefaultDirective implements AfterViewInit, OnDestroy {
|
|
5
|
+
private table;
|
|
6
|
+
private document;
|
|
7
|
+
private subscription;
|
|
8
|
+
private resizeDiff;
|
|
9
|
+
class: string;
|
|
10
|
+
get classes(): string;
|
|
11
|
+
constructor(table: DatatableComponent, document: MockDocument);
|
|
12
|
+
private fixHorizontalGap;
|
|
13
|
+
private fixStyleOnWindowResize;
|
|
14
|
+
ngAfterViewInit(): void;
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxDatatableDefaultDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxDatatableDefaultDirective, "ngx-datatable[default]", ["ngxDatatableDefault"], { "class": { "alias": "class"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
19
|
+
interface MockDocument {
|
|
20
|
+
body: MockBody;
|
|
21
|
+
documentElement: MockDocumentElement;
|
|
22
|
+
}
|
|
23
|
+
interface MockBody {
|
|
24
|
+
offsetWidth: number;
|
|
25
|
+
}
|
|
26
|
+
interface MockDocumentElement {
|
|
27
|
+
clientHeight: number;
|
|
28
|
+
scrollHeight: number;
|
|
29
|
+
}
|
|
30
|
+
export {};
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import { ListService, LocalizationService } from '@abp/ng.core';
|
|
2
|
-
import { ChangeDetectorRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
3
|
-
import { DatatableComponent } from '@swimlane/ngx-datatable';
|
|
4
|
-
import { NgxDatatableMessages } from '../tokens/ngx-datatable-messages.token';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class NgxDatatableListDirective implements OnChanges, OnDestroy, OnInit {
|
|
7
|
-
private table;
|
|
8
|
-
private cdRef;
|
|
9
|
-
private localizationService;
|
|
10
|
-
private ngxDatatableMessages;
|
|
11
|
-
private subscription;
|
|
12
|
-
private querySubscription;
|
|
13
|
-
list: ListService;
|
|
14
|
-
constructor(table: DatatableComponent, cdRef: ChangeDetectorRef, localizationService: LocalizationService, ngxDatatableMessages: NgxDatatableMessages);
|
|
15
|
-
private setInitialValues;
|
|
16
|
-
private subscribeToPage;
|
|
17
|
-
private subscribeToSort;
|
|
18
|
-
private subscribeToQuery;
|
|
19
|
-
ngOnChanges({ list }: SimpleChanges): void;
|
|
20
|
-
ngOnDestroy(): void;
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgxDatatableListDirective, [null, null, null, { optional: true; }]>;
|
|
23
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxDatatableListDirective, "ngx-datatable[list]", ["ngxDatatableList"], { "list": "list"; }, {}, never, never, false, never>;
|
|
24
|
-
}
|
|
1
|
+
import { ListService, LocalizationService } from '@abp/ng.core';
|
|
2
|
+
import { ChangeDetectorRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
3
|
+
import { DatatableComponent } from '@swimlane/ngx-datatable';
|
|
4
|
+
import { NgxDatatableMessages } from '../tokens/ngx-datatable-messages.token';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class NgxDatatableListDirective implements OnChanges, OnDestroy, OnInit {
|
|
7
|
+
private table;
|
|
8
|
+
private cdRef;
|
|
9
|
+
private localizationService;
|
|
10
|
+
private ngxDatatableMessages;
|
|
11
|
+
private subscription;
|
|
12
|
+
private querySubscription;
|
|
13
|
+
list: ListService;
|
|
14
|
+
constructor(table: DatatableComponent, cdRef: ChangeDetectorRef, localizationService: LocalizationService, ngxDatatableMessages: NgxDatatableMessages);
|
|
15
|
+
private setInitialValues;
|
|
16
|
+
private subscribeToPage;
|
|
17
|
+
private subscribeToSort;
|
|
18
|
+
private subscribeToQuery;
|
|
19
|
+
ngOnChanges({ list }: SimpleChanges): void;
|
|
20
|
+
ngOnDestroy(): void;
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxDatatableListDirective, [null, null, null, { optional: true; }]>;
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxDatatableListDirective, "ngx-datatable[list]", ["ngxDatatableList"], { "list": { "alias": "list"; "required": false; }; }, {}, never, never, false, never>;
|
|
24
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { OnInit, OnDestroy, ViewContainerRef, TemplateRef } from '@angular/core';
|
|
2
|
-
import { Observable, Subscription } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AbpVisibleDirective implements OnDestroy, OnInit {
|
|
5
|
-
private viewContainerRef;
|
|
6
|
-
private templateRef;
|
|
7
|
-
conditionSubscription: Subscription | undefined;
|
|
8
|
-
isVisible: boolean | undefined;
|
|
9
|
-
set abpVisible(value: boolean | Promise<boolean> | Observable<boolean> | undefined | null);
|
|
10
|
-
private condition$;
|
|
11
|
-
constructor(viewContainerRef: ViewContainerRef, templateRef: TemplateRef<unknown>);
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
ngOnDestroy(): void;
|
|
14
|
-
private subscribeToCondition;
|
|
15
|
-
private updateVisibility;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AbpVisibleDirective, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AbpVisibleDirective, "[abpVisible]", never, { "abpVisible": "abpVisible"; }, {}, never, never, false, never>;
|
|
18
|
-
}
|
|
1
|
+
import { OnInit, OnDestroy, ViewContainerRef, TemplateRef } from '@angular/core';
|
|
2
|
+
import { Observable, Subscription } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AbpVisibleDirective implements OnDestroy, OnInit {
|
|
5
|
+
private viewContainerRef;
|
|
6
|
+
private templateRef;
|
|
7
|
+
conditionSubscription: Subscription | undefined;
|
|
8
|
+
isVisible: boolean | undefined;
|
|
9
|
+
set abpVisible(value: boolean | Promise<boolean> | Observable<boolean> | undefined | null);
|
|
10
|
+
private condition$;
|
|
11
|
+
constructor(viewContainerRef: ViewContainerRef, templateRef: TemplateRef<unknown>);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
private subscribeToCondition;
|
|
15
|
+
private updateVisibility;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbpVisibleDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbpVisibleDirective, "[abpVisible]", never, { "abpVisible": { "alias": "abpVisible"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
package/lib/enums/form.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare enum eFormComponets {
|
|
2
|
-
FormInputComponent = "FormInputComponent",
|
|
3
|
-
FormCheckboxComponent = "FormCheckboxComponent"
|
|
4
|
-
}
|
|
1
|
+
export declare enum eFormComponets {
|
|
2
|
+
FormInputComponent = "FormInputComponent",
|
|
3
|
+
FormCheckboxComponent = "FormCheckboxComponent"
|
|
4
|
+
}
|
package/lib/enums/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './form';
|
|
2
|
-
export * from './route-names';
|
|
1
|
+
export * from './form';
|
|
2
|
+
export * from './route-names';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const enum eThemeSharedRouteNames {
|
|
2
|
-
Administration = "AbpUiNavigation::Menu:Administration"
|
|
3
|
-
}
|
|
1
|
+
export declare const enum eThemeSharedRouteNames {
|
|
2
|
+
Administration = "AbpUiNavigation::Menu:Administration"
|
|
3
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { Injector } from '@angular/core';
|
|
2
|
-
import { LocaleDirection } from '../models/common';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class DocumentDirHandlerService {
|
|
5
|
-
protected injector: Injector;
|
|
6
|
-
private dir;
|
|
7
|
-
dir$: import("rxjs").Observable<LocaleDirection>;
|
|
8
|
-
constructor(injector: Injector);
|
|
9
|
-
private listenToLanguageChanges;
|
|
10
|
-
private setBodyDir;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentDirHandlerService, never>;
|
|
12
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentDirHandlerService>;
|
|
13
|
-
}
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { LocaleDirection } from '../models/common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DocumentDirHandlerService {
|
|
5
|
+
protected injector: Injector;
|
|
6
|
+
private dir;
|
|
7
|
+
dir$: import("rxjs").Observable<LocaleDirection>;
|
|
8
|
+
constructor(injector: Injector);
|
|
9
|
+
private listenToLanguageChanges;
|
|
10
|
+
private setBodyDir;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentDirHandlerService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentDirHandlerService>;
|
|
13
|
+
}
|