@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,16 +1,16 @@
|
|
|
1
|
-
import { ABP, RouterEvents, RoutesService, SubscriptionService } from '@abp/ng.core';
|
|
2
|
-
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class BreadcrumbComponent implements OnInit {
|
|
6
|
-
readonly cdRef: ChangeDetectorRef;
|
|
7
|
-
private router;
|
|
8
|
-
private routes;
|
|
9
|
-
private subscription;
|
|
10
|
-
private routerEvents;
|
|
11
|
-
segments: Partial<ABP.Route>[];
|
|
12
|
-
constructor(cdRef: ChangeDetectorRef, router: Router, routes: RoutesService, subscription: SubscriptionService, routerEvents: RouterEvents);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "abp-breadcrumb", never, {}, {}, never, never, false, never>;
|
|
16
|
-
}
|
|
1
|
+
import { ABP, RouterEvents, RoutesService, SubscriptionService } from '@abp/ng.core';
|
|
2
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BreadcrumbComponent implements OnInit {
|
|
6
|
+
readonly cdRef: ChangeDetectorRef;
|
|
7
|
+
private router;
|
|
8
|
+
private routes;
|
|
9
|
+
private subscription;
|
|
10
|
+
private routerEvents;
|
|
11
|
+
segments: Partial<ABP.Route>[];
|
|
12
|
+
constructor(cdRef: ChangeDetectorRef, router: Router, routes: RoutesService, subscription: SubscriptionService, routerEvents: RouterEvents);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "abp-breadcrumb", never, {}, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ABP } from '@abp/ng.core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class BreadcrumbItemsComponent {
|
|
4
|
-
items: Partial<ABP.Route>[];
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemsComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbItemsComponent, "abp-breadcrumb-items", never, { "items": "items"; }, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
1
|
+
import { ABP } from '@abp/ng.core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BreadcrumbItemsComponent {
|
|
4
|
+
items: Partial<ABP.Route>[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemsComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbItemsComponent, "abp-breadcrumb-items", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { ABP } from '@abp/ng.core';
|
|
2
|
-
import { ElementRef, EventEmitter, OnInit, Renderer2 } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ButtonComponent implements OnInit {
|
|
5
|
-
private renderer;
|
|
6
|
-
buttonId: string;
|
|
7
|
-
buttonClass: string;
|
|
8
|
-
buttonType: string;
|
|
9
|
-
formName?: string;
|
|
10
|
-
iconClass?: string;
|
|
11
|
-
loading: boolean;
|
|
12
|
-
disabled: boolean | undefined;
|
|
13
|
-
attributes?: ABP.Dictionary<string>;
|
|
14
|
-
readonly click: EventEmitter<MouseEvent>;
|
|
15
|
-
readonly focus: EventEmitter<FocusEvent>;
|
|
16
|
-
readonly blur: EventEmitter<FocusEvent>;
|
|
17
|
-
readonly abpClick: EventEmitter<MouseEvent>;
|
|
18
|
-
readonly abpFocus: EventEmitter<FocusEvent>;
|
|
19
|
-
readonly abpBlur: EventEmitter<FocusEvent>;
|
|
20
|
-
buttonRef: ElementRef<HTMLButtonElement>;
|
|
21
|
-
get icon(): string;
|
|
22
|
-
constructor(renderer: Renderer2);
|
|
23
|
-
ngOnInit(): void;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "abp-button", never, { "buttonId": "buttonId"; "buttonClass": "buttonClass"; "buttonType": "buttonType"; "formName": "formName"; "iconClass": "iconClass"; "loading": "loading"; "disabled": "disabled"; "attributes": "attributes"; }, { "click": "click"; "focus": "focus"; "blur": "blur"; "abpClick": "abpClick"; "abpFocus": "abpFocus"; "abpBlur": "abpBlur"; }, never, ["*"], false, never>;
|
|
26
|
-
}
|
|
1
|
+
import { ABP } from '@abp/ng.core';
|
|
2
|
+
import { ElementRef, EventEmitter, OnInit, Renderer2 } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ButtonComponent implements OnInit {
|
|
5
|
+
private renderer;
|
|
6
|
+
buttonId: string;
|
|
7
|
+
buttonClass: string;
|
|
8
|
+
buttonType: string;
|
|
9
|
+
formName?: string;
|
|
10
|
+
iconClass?: string;
|
|
11
|
+
loading: boolean;
|
|
12
|
+
disabled: boolean | undefined;
|
|
13
|
+
attributes?: ABP.Dictionary<string>;
|
|
14
|
+
readonly click: EventEmitter<MouseEvent>;
|
|
15
|
+
readonly focus: EventEmitter<FocusEvent>;
|
|
16
|
+
readonly blur: EventEmitter<FocusEvent>;
|
|
17
|
+
readonly abpClick: EventEmitter<MouseEvent>;
|
|
18
|
+
readonly abpFocus: EventEmitter<FocusEvent>;
|
|
19
|
+
readonly abpBlur: EventEmitter<FocusEvent>;
|
|
20
|
+
buttonRef: ElementRef<HTMLButtonElement>;
|
|
21
|
+
get icon(): string;
|
|
22
|
+
constructor(renderer: Renderer2);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "abp-button", never, { "buttonId": { "alias": "buttonId"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "buttonType": { "alias": "buttonType"; "required": false; }; "formName": { "alias": "formName"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "attributes": { "alias": "attributes"; "required": false; }; }, { "click": "click"; "focus": "focus"; "blur": "blur"; "abpClick": "abpClick"; "abpFocus": "abpFocus"; "abpBlur": "abpBlur"; }, never, ["*"], false, never>;
|
|
26
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CardBodyComponent {
|
|
3
|
-
componentClass: string;
|
|
4
|
-
cardBodyClass: string;
|
|
5
|
-
cardBodyStyle: string;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardBodyComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardBodyComponent, "abp-card-body", never, { "cardBodyClass": "cardBodyClass"; "cardBodyStyle": "cardBodyStyle"; }, {}, never, ["*"], false, never>;
|
|
8
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardBodyComponent {
|
|
3
|
+
componentClass: string;
|
|
4
|
+
cardBodyClass: string;
|
|
5
|
+
cardBodyStyle: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardBodyComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardBodyComponent, "abp-card-body", never, { "cardBodyClass": { "alias": "cardBodyClass"; "required": false; }; "cardBodyStyle": { "alias": "cardBodyStyle"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
8
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CardFooterComponent {
|
|
3
|
-
componentClass: string;
|
|
4
|
-
cardFooterStyle: string;
|
|
5
|
-
cardFooterClass: string;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "abp-card-footer", never, { "cardFooterStyle": "cardFooterStyle"; "cardFooterClass": "cardFooterClass"; }, {}, never, ["*"], false, never>;
|
|
8
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardFooterComponent {
|
|
3
|
+
componentClass: string;
|
|
4
|
+
cardFooterStyle: string;
|
|
5
|
+
cardFooterClass: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "abp-card-footer", never, { "cardFooterStyle": { "alias": "cardFooterStyle"; "required": false; }; "cardFooterClass": { "alias": "cardFooterClass"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
8
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CardHeaderComponent {
|
|
3
|
-
componentClass: string;
|
|
4
|
-
cardHeaderClass: string;
|
|
5
|
-
cardHeaderStyle: string;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "abp-card-header", never, { "cardHeaderClass": "cardHeaderClass"; "cardHeaderStyle": "cardHeaderStyle"; }, {}, never, ["*"], false, never>;
|
|
8
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardHeaderComponent {
|
|
3
|
+
componentClass: string;
|
|
4
|
+
cardHeaderClass: string;
|
|
5
|
+
cardHeaderStyle: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "abp-card-header", never, { "cardHeaderClass": { "alias": "cardHeaderClass"; "required": false; }; "cardHeaderStyle": { "alias": "cardHeaderStyle"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
8
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CardHeaderDirective {
|
|
3
|
-
directiveClass: string;
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderDirective, never>;
|
|
5
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardHeaderDirective, "abp-card-header, [abp-card-header], [abpCardHeader]", never, {}, {}, never, never, false, never>;
|
|
6
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardHeaderDirective {
|
|
3
|
+
directiveClass: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderDirective, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardHeaderDirective, "abp-card-header, [abp-card-header], [abpCardHeader]", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CardImgTopDirective {
|
|
3
|
-
directiveClass: string;
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardImgTopDirective, never>;
|
|
5
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardImgTopDirective, "abp-card-img-top, [abp-card-img-top], [abpCardImgTop]", never, {}, {}, never, never, false, never>;
|
|
6
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardImgTopDirective {
|
|
3
|
+
directiveClass: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardImgTopDirective, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardImgTopDirective, "abp-card-img-top, [abp-card-img-top], [abpCardImgTop]", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CardSubtitleDirective {
|
|
3
|
-
directiveClass: string;
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardSubtitleDirective, never>;
|
|
5
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardSubtitleDirective, "abp-card-subtitle, [abp-card-subtitle], [abpCardSubtitle]", never, {}, {}, never, never, false, never>;
|
|
6
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardSubtitleDirective {
|
|
3
|
+
directiveClass: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardSubtitleDirective, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardSubtitleDirective, "abp-card-subtitle, [abp-card-subtitle], [abpCardSubtitle]", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CardTitleDirective {
|
|
3
|
-
directiveClass: string;
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardTitleDirective, never>;
|
|
5
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardTitleDirective, "abp-card-title, [abp-card-title], [abpCardTitle]", never, {}, {}, never, never, false, never>;
|
|
6
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardTitleDirective {
|
|
3
|
+
directiveClass: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardTitleDirective, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardTitleDirective, "abp-card-title, [abp-card-title], [abpCardTitle]", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CardComponent {
|
|
3
|
-
cardClass: string;
|
|
4
|
-
cardStyle: string;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "abp-card", never, { "cardClass": "cardClass"; "cardStyle": "cardStyle"; }, {}, never, ["*"], false, never>;
|
|
7
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardComponent {
|
|
3
|
+
cardClass: string;
|
|
4
|
+
cardStyle: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "abp-card", never, { "cardClass": { "alias": "cardClass"; "required": false; }; "cardStyle": { "alias": "cardStyle"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
7
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./card.component";
|
|
3
|
-
import * as i2 from "./card-body.component";
|
|
4
|
-
import * as i3 from "./card-header.component";
|
|
5
|
-
import * as i4 from "./card-footer.component";
|
|
6
|
-
import * as i5 from "./card-title.directive";
|
|
7
|
-
import * as i6 from "./card-subtitle.directive";
|
|
8
|
-
import * as i7 from "./card-img-top.directive";
|
|
9
|
-
import * as i8 from "./card-header.directive";
|
|
10
|
-
import * as i9 from "@angular/common";
|
|
11
|
-
export declare class CardModule {
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CardModule, [typeof i1.CardComponent, typeof i2.CardBodyComponent, typeof i3.CardHeaderComponent, typeof i4.CardFooterComponent, typeof i5.CardTitleDirective, typeof i6.CardSubtitleDirective, typeof i7.CardImgTopDirective, typeof i8.CardHeaderDirective], [typeof i9.CommonModule], [typeof i1.CardComponent, typeof i2.CardBodyComponent, typeof i3.CardHeaderComponent, typeof i4.CardFooterComponent, typeof i5.CardTitleDirective, typeof i6.CardSubtitleDirective, typeof i7.CardImgTopDirective, typeof i8.CardHeaderDirective]>;
|
|
14
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CardModule>;
|
|
15
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./card.component";
|
|
3
|
+
import * as i2 from "./card-body.component";
|
|
4
|
+
import * as i3 from "./card-header.component";
|
|
5
|
+
import * as i4 from "./card-footer.component";
|
|
6
|
+
import * as i5 from "./card-title.directive";
|
|
7
|
+
import * as i6 from "./card-subtitle.directive";
|
|
8
|
+
import * as i7 from "./card-img-top.directive";
|
|
9
|
+
import * as i8 from "./card-header.directive";
|
|
10
|
+
import * as i9 from "@angular/common";
|
|
11
|
+
export declare class CardModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CardModule, [typeof i1.CardComponent, typeof i2.CardBodyComponent, typeof i3.CardHeaderComponent, typeof i4.CardFooterComponent, typeof i5.CardTitleDirective, typeof i6.CardSubtitleDirective, typeof i7.CardImgTopDirective, typeof i8.CardHeaderDirective], [typeof i9.CommonModule], [typeof i1.CardComponent, typeof i2.CardBodyComponent, typeof i3.CardHeaderComponent, typeof i4.CardFooterComponent, typeof i5.CardTitleDirective, typeof i6.CardSubtitleDirective, typeof i7.CardImgTopDirective, typeof i8.CardHeaderDirective]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CardModule>;
|
|
15
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from './card.module';
|
|
2
|
-
export * from './card.component';
|
|
3
|
-
export * from './card-body.component';
|
|
4
|
-
export * from './card-footer.component';
|
|
5
|
-
export * from './card-header.component';
|
|
6
|
-
export * from './card-title.directive';
|
|
7
|
-
export * from './card-subtitle.directive';
|
|
8
|
-
export * from './card-img-top.directive';
|
|
9
|
-
export * from './card-header.directive';
|
|
1
|
+
export * from './card.module';
|
|
2
|
+
export * from './card.component';
|
|
3
|
+
export * from './card-body.component';
|
|
4
|
+
export * from './card-footer.component';
|
|
5
|
+
export * from './card-header.component';
|
|
6
|
+
export * from './card-title.directive';
|
|
7
|
+
export * from './card-subtitle.directive';
|
|
8
|
+
export * from './card-img-top.directive';
|
|
9
|
+
export * from './card-header.directive';
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { AbstractNgModelComponent } from '@abp/ng.core';
|
|
2
|
-
import { EventEmitter, Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FormCheckboxComponent extends AbstractNgModelComponent {
|
|
5
|
-
label?: string;
|
|
6
|
-
labelClass: string;
|
|
7
|
-
checkboxId: string;
|
|
8
|
-
checkboxStyle: {
|
|
9
|
-
[klass: string]: any;
|
|
10
|
-
} | null | undefined;
|
|
11
|
-
checkboxClass: string;
|
|
12
|
-
checkboxReadonly: boolean;
|
|
13
|
-
checkboxBlur: EventEmitter<void>;
|
|
14
|
-
checkboxFocus: EventEmitter<void>;
|
|
15
|
-
constructor(injector: Injector);
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormCheckboxComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormCheckboxComponent, "abp-checkbox", never, { "label": "label"; "labelClass": "labelClass"; "checkboxId": "checkboxId"; "checkboxStyle": "checkboxStyle"; "checkboxClass": "checkboxClass"; "checkboxReadonly": "checkboxReadonly"; }, { "checkboxBlur": "checkboxBlur"; "checkboxFocus": "checkboxFocus"; }, never, never, false, never>;
|
|
18
|
-
}
|
|
1
|
+
import { AbstractNgModelComponent } from '@abp/ng.core';
|
|
2
|
+
import { EventEmitter, Injector } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FormCheckboxComponent extends AbstractNgModelComponent {
|
|
5
|
+
label?: string;
|
|
6
|
+
labelClass: string;
|
|
7
|
+
checkboxId: string;
|
|
8
|
+
checkboxStyle: {
|
|
9
|
+
[klass: string]: any;
|
|
10
|
+
} | null | undefined;
|
|
11
|
+
checkboxClass: string;
|
|
12
|
+
checkboxReadonly: boolean;
|
|
13
|
+
checkboxBlur: EventEmitter<void>;
|
|
14
|
+
checkboxFocus: EventEmitter<void>;
|
|
15
|
+
constructor(injector: Injector);
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormCheckboxComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormCheckboxComponent, "abp-checkbox", never, { "label": { "alias": "label"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "checkboxId": { "alias": "checkboxId"; "required": false; }; "checkboxStyle": { "alias": "checkboxStyle"; "required": false; }; "checkboxClass": { "alias": "checkboxClass"; "required": false; }; "checkboxReadonly": { "alias": "checkboxReadonly"; "required": false; }; }, { "checkboxBlur": "checkboxBlur"; "checkboxFocus": "checkboxFocus"; }, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { ReplaySubject } from 'rxjs';
|
|
2
|
-
import { Confirmation } from '../../models/confirmation';
|
|
3
|
-
import { ConfirmationIcons } from '../../tokens/confirmation-icons.token';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ConfirmationComponent {
|
|
6
|
-
private icons;
|
|
7
|
-
constructor(icons: ConfirmationIcons);
|
|
8
|
-
confirm: Confirmation.Status;
|
|
9
|
-
reject: Confirmation.Status;
|
|
10
|
-
dismiss: Confirmation.Status;
|
|
11
|
-
confirmation$: ReplaySubject<Confirmation.DialogData | null>;
|
|
12
|
-
clear: (status: Confirmation.Status) => void;
|
|
13
|
-
close(status: Confirmation.Status): void;
|
|
14
|
-
getIconClass({ severity, options }: Confirmation.DialogData): string;
|
|
15
|
-
isCustomIconExists({ options }: Confirmation.DialogData): boolean;
|
|
16
|
-
isIconTemplateExits({ options }: Confirmation.DialogData): boolean;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationComponent, "abp-confirmation", never, {}, {}, never, never, false, never>;
|
|
19
|
-
}
|
|
1
|
+
import { ReplaySubject } from 'rxjs';
|
|
2
|
+
import { Confirmation } from '../../models/confirmation';
|
|
3
|
+
import { ConfirmationIcons } from '../../tokens/confirmation-icons.token';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ConfirmationComponent {
|
|
6
|
+
private icons;
|
|
7
|
+
constructor(icons: ConfirmationIcons);
|
|
8
|
+
confirm: Confirmation.Status;
|
|
9
|
+
reject: Confirmation.Status;
|
|
10
|
+
dismiss: Confirmation.Status;
|
|
11
|
+
confirmation$: ReplaySubject<Confirmation.DialogData | null>;
|
|
12
|
+
clear: (status: Confirmation.Status) => void;
|
|
13
|
+
close(status: Confirmation.Status): void;
|
|
14
|
+
getIconClass({ severity, options }: Confirmation.DialogData): string;
|
|
15
|
+
isCustomIconExists({ options }: Confirmation.DialogData): boolean;
|
|
16
|
+
isIconTemplateExits({ options }: Confirmation.DialogData): boolean;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationComponent, "abp-confirmation", never, {}, {}, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { AbstractNgModelComponent } from '@abp/ng.core';
|
|
2
|
-
import { EventEmitter, Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FormInputComponent extends AbstractNgModelComponent {
|
|
5
|
-
inputId: string;
|
|
6
|
-
inputReadonly: boolean;
|
|
7
|
-
label: string;
|
|
8
|
-
labelClass: string;
|
|
9
|
-
inputPlaceholder: string;
|
|
10
|
-
inputStyle: {
|
|
11
|
-
[klass: string]: any;
|
|
12
|
-
} | null | undefined;
|
|
13
|
-
inputClass: string;
|
|
14
|
-
formBlur: EventEmitter<void>;
|
|
15
|
-
formFocus: EventEmitter<void>;
|
|
16
|
-
constructor(injector: Injector);
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputComponent, "abp-form-input", never, { "inputId": "inputId"; "inputReadonly": "inputReadonly"; "label": "label"; "labelClass": "labelClass"; "inputPlaceholder": "inputPlaceholder"; "inputStyle": "inputStyle"; "inputClass": "inputClass"; }, { "formBlur": "formBlur"; "formFocus": "formFocus"; }, never, never, false, never>;
|
|
19
|
-
}
|
|
1
|
+
import { AbstractNgModelComponent } from '@abp/ng.core';
|
|
2
|
+
import { EventEmitter, Injector } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FormInputComponent extends AbstractNgModelComponent {
|
|
5
|
+
inputId: string;
|
|
6
|
+
inputReadonly: boolean;
|
|
7
|
+
label: string;
|
|
8
|
+
labelClass: string;
|
|
9
|
+
inputPlaceholder: string;
|
|
10
|
+
inputStyle: {
|
|
11
|
+
[klass: string]: any;
|
|
12
|
+
} | null | undefined;
|
|
13
|
+
inputClass: string;
|
|
14
|
+
formBlur: EventEmitter<void>;
|
|
15
|
+
formFocus: EventEmitter<void>;
|
|
16
|
+
constructor(injector: Injector);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputComponent, "abp-form-input", never, { "inputId": { "alias": "inputId"; "required": false; }; "inputReadonly": { "alias": "inputReadonly"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "inputPlaceholder": { "alias": "inputPlaceholder"; "required": false; }; "inputStyle": { "alias": "inputStyle"; "required": false; }; "inputClass": { "alias": "inputClass"; "required": false; }; }, { "formBlur": "formBlur"; "formFocus": "formFocus"; }, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { LocalizationParam, SubscriptionService } from '@abp/ng.core';
|
|
2
|
-
import { AfterViewInit, ApplicationRef, ComponentFactoryResolver, ElementRef, Injector, OnDestroy, OnInit, Type } from '@angular/core';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class HttpErrorWrapperComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
6
|
-
private subscription;
|
|
7
|
-
appRef: ApplicationRef;
|
|
8
|
-
cfRes: ComponentFactoryResolver;
|
|
9
|
-
injector: Injector;
|
|
10
|
-
status: number;
|
|
11
|
-
title: LocalizationParam;
|
|
12
|
-
details: LocalizationParam;
|
|
13
|
-
customComponent: Type<any> | undefined;
|
|
14
|
-
destroy$: Subject<void>;
|
|
15
|
-
hideCloseIcon: boolean;
|
|
16
|
-
backgroundColor: string;
|
|
17
|
-
isHomeShow: boolean;
|
|
18
|
-
containerRef?: ElementRef<HTMLDivElement>;
|
|
19
|
-
get statusText(): string;
|
|
20
|
-
constructor(subscription: SubscriptionService);
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
ngAfterViewInit(): void;
|
|
23
|
-
ngOnDestroy(): void;
|
|
24
|
-
destroy(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HttpErrorWrapperComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HttpErrorWrapperComponent, "abp-http-error-wrapper", never, {}, {}, never, never, false, never>;
|
|
27
|
-
}
|
|
1
|
+
import { LocalizationParam, SubscriptionService } from '@abp/ng.core';
|
|
2
|
+
import { AfterViewInit, ApplicationRef, ComponentFactoryResolver, ElementRef, Injector, OnDestroy, OnInit, Type } from '@angular/core';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HttpErrorWrapperComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
6
|
+
private subscription;
|
|
7
|
+
appRef: ApplicationRef;
|
|
8
|
+
cfRes: ComponentFactoryResolver;
|
|
9
|
+
injector: Injector;
|
|
10
|
+
status: number;
|
|
11
|
+
title: LocalizationParam;
|
|
12
|
+
details: LocalizationParam;
|
|
13
|
+
customComponent: Type<any> | undefined;
|
|
14
|
+
destroy$: Subject<void>;
|
|
15
|
+
hideCloseIcon: boolean;
|
|
16
|
+
backgroundColor: string;
|
|
17
|
+
isHomeShow: boolean;
|
|
18
|
+
containerRef?: ElementRef<HTMLDivElement>;
|
|
19
|
+
get statusText(): string;
|
|
20
|
+
constructor(subscription: SubscriptionService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngAfterViewInit(): void;
|
|
23
|
+
ngOnDestroy(): void;
|
|
24
|
+
destroy(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HttpErrorWrapperComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HttpErrorWrapperComponent, "abp-http-error-wrapper", never, {}, {}, never, never, false, never>;
|
|
27
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export * from './breadcrumb-items/breadcrumb-items.component';
|
|
2
|
-
export * from './breadcrumb/breadcrumb.component';
|
|
3
|
-
export * from './button/button.component';
|
|
4
|
-
export * from './confirmation/confirmation.component';
|
|
5
|
-
export * from './http-error-wrapper/http-error-wrapper.component';
|
|
6
|
-
export * from './loader-bar/loader-bar.component';
|
|
7
|
-
export * from './loading/loading.component';
|
|
8
|
-
export * from './modal/modal-close.directive';
|
|
9
|
-
export * from './modal/modal-ref.service';
|
|
10
|
-
export * from './modal/modal.component';
|
|
11
|
-
export * from './toast-container/toast-container.component';
|
|
12
|
-
export * from './toast/toast.component';
|
|
13
|
-
export * from './password/password.component';
|
|
14
|
-
export * from './card/index';
|
|
15
|
-
export * from './checkbox/checkbox.component';
|
|
16
|
-
export * from './form-input/form-input.component';
|
|
1
|
+
export * from './breadcrumb-items/breadcrumb-items.component';
|
|
2
|
+
export * from './breadcrumb/breadcrumb.component';
|
|
3
|
+
export * from './button/button.component';
|
|
4
|
+
export * from './confirmation/confirmation.component';
|
|
5
|
+
export * from './http-error-wrapper/http-error-wrapper.component';
|
|
6
|
+
export * from './loader-bar/loader-bar.component';
|
|
7
|
+
export * from './loading/loading.component';
|
|
8
|
+
export * from './modal/modal-close.directive';
|
|
9
|
+
export * from './modal/modal-ref.service';
|
|
10
|
+
export * from './modal/modal.component';
|
|
11
|
+
export * from './toast-container/toast-container.component';
|
|
12
|
+
export * from './toast/toast.component';
|
|
13
|
+
export * from './password/password.component';
|
|
14
|
+
export * from './card/index';
|
|
15
|
+
export * from './checkbox/checkbox.component';
|
|
16
|
+
export * from './form-input/form-input.component';
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import { HttpWaitService, RouterWaitService, SubscriptionService } from '@abp/ng.core';
|
|
2
|
-
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
|
-
import { Subscription } from 'rxjs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class LoaderBarComponent implements OnDestroy, OnInit {
|
|
7
|
-
private router;
|
|
8
|
-
private cdRef;
|
|
9
|
-
private subscription;
|
|
10
|
-
private httpWaitService;
|
|
11
|
-
private routerWaitService;
|
|
12
|
-
protected _isLoading: boolean;
|
|
13
|
-
set isLoading(value: boolean);
|
|
14
|
-
get isLoading(): boolean;
|
|
15
|
-
containerClass: string;
|
|
16
|
-
color: string;
|
|
17
|
-
progressLevel: number;
|
|
18
|
-
interval: Subscription;
|
|
19
|
-
timer: Subscription;
|
|
20
|
-
intervalPeriod: number;
|
|
21
|
-
stopDelay: number;
|
|
22
|
-
private readonly clearProgress;
|
|
23
|
-
private readonly reportProgress;
|
|
24
|
-
get boxShadow(): string;
|
|
25
|
-
constructor(router: Router, cdRef: ChangeDetectorRef, subscription: SubscriptionService, httpWaitService: HttpWaitService, routerWaitService: RouterWaitService);
|
|
26
|
-
ngOnInit(): void;
|
|
27
|
-
subscribeLoading(): void;
|
|
28
|
-
ngOnDestroy(): void;
|
|
29
|
-
startLoading(): void;
|
|
30
|
-
stopLoading(): void;
|
|
31
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderBarComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderBarComponent, "abp-loader-bar", never, { "isLoading": "isLoading"; "containerClass": "containerClass"; "color": "color"; }, {}, never, never, false, never>;
|
|
33
|
-
}
|
|
1
|
+
import { HttpWaitService, RouterWaitService, SubscriptionService } from '@abp/ng.core';
|
|
2
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { Subscription } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class LoaderBarComponent implements OnDestroy, OnInit {
|
|
7
|
+
private router;
|
|
8
|
+
private cdRef;
|
|
9
|
+
private subscription;
|
|
10
|
+
private httpWaitService;
|
|
11
|
+
private routerWaitService;
|
|
12
|
+
protected _isLoading: boolean;
|
|
13
|
+
set isLoading(value: boolean);
|
|
14
|
+
get isLoading(): boolean;
|
|
15
|
+
containerClass: string;
|
|
16
|
+
color: string;
|
|
17
|
+
progressLevel: number;
|
|
18
|
+
interval: Subscription;
|
|
19
|
+
timer: Subscription;
|
|
20
|
+
intervalPeriod: number;
|
|
21
|
+
stopDelay: number;
|
|
22
|
+
private readonly clearProgress;
|
|
23
|
+
private readonly reportProgress;
|
|
24
|
+
get boxShadow(): string;
|
|
25
|
+
constructor(router: Router, cdRef: ChangeDetectorRef, subscription: SubscriptionService, httpWaitService: HttpWaitService, routerWaitService: RouterWaitService);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
subscribeLoading(): void;
|
|
28
|
+
ngOnDestroy(): void;
|
|
29
|
+
startLoading(): void;
|
|
30
|
+
stopLoading(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderBarComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderBarComponent, "abp-loader-bar", never, { "isLoading": { "alias": "isLoading"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
|
|
33
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class LoadingComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "abp-loading", never, {}, {}, never, never, false, never>;
|
|
5
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class LoadingComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "abp-loading", never, {}, {}, never, never, false, never>;
|
|
5
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ModalComponent } from './modal.component';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ModalCloseDirective {
|
|
4
|
-
private modal;
|
|
5
|
-
constructor(modal: ModalComponent);
|
|
6
|
-
onClick(): void;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ModalCloseDirective, [{ optional: true; }]>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalCloseDirective, "[abpClose]", never, {}, {}, never, never, false, never>;
|
|
9
|
-
}
|
|
1
|
+
import { ModalComponent } from './modal.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ModalCloseDirective {
|
|
4
|
+
private modal;
|
|
5
|
+
constructor(modal: ModalComponent);
|
|
6
|
+
onClick(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalCloseDirective, [{ optional: true; }]>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalCloseDirective, "[abpClose]", never, {}, {}, never, never, false, never>;
|
|
9
|
+
}
|