@abp/ng.theme.shared 7.2.1 → 7.3.0-rc.1
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/{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 +136 -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/{esm2020 → esm2022}/extensions/lib/models/entity-props.mjs +42 -42
- 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 +97 -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 +29 -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 +1335 -1330
- 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 -2293
- 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 -20
- 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 +14 -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/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 -97
- 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 -2770
- 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,24 +1,24 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./components/date-time-picker/date-time-picker.component";
|
|
3
|
-
import * as i2 from "./components/page-toolbar/page-toolbar.component";
|
|
4
|
-
import * as i3 from "./components/grid-actions/grid-actions.component";
|
|
5
|
-
import * as i4 from "./components/extensible-form/extensible-form-prop.component";
|
|
6
|
-
import * as i5 from "./components/extensible-form/extensible-form.component";
|
|
7
|
-
import * as i6 from "./components/extensible-table/extensible-table.component";
|
|
8
|
-
import * as i7 from "./directives/prop-data.directive";
|
|
9
|
-
import * as i8 from "./directives/disabled.directive";
|
|
10
|
-
import * as i9 from "./pipes/create-injector.pipe";
|
|
11
|
-
import * as i10 from "@abp/ng.core";
|
|
12
|
-
import * as i11 from "@abp/ng.theme.shared";
|
|
13
|
-
import * as i12 from "@ngx-validate/core";
|
|
14
|
-
import * as i13 from "@ng-bootstrap/ng-bootstrap";
|
|
15
|
-
export declare class BaseUiExtensionsModule {
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseUiExtensionsModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BaseUiExtensionsModule, [typeof i1.DateTimePickerComponent, typeof i2.PageToolbarComponent, typeof i3.GridActionsComponent, typeof i4.ExtensibleFormPropComponent, typeof i5.ExtensibleFormComponent, typeof i6.ExtensibleTableComponent, typeof i7.PropDataDirective, typeof i8.DisabledDirective, typeof i9.CreateInjectorPipe], [typeof i10.CoreModule, typeof i11.ThemeSharedModule, typeof i12.NgxValidateCoreModule, typeof i13.NgbDatepickerModule, typeof i13.NgbDropdownModule, typeof i13.NgbTimepickerModule, typeof i13.NgbTypeaheadModule], [typeof i1.DateTimePickerComponent, typeof i2.PageToolbarComponent, typeof i3.GridActionsComponent, typeof i5.ExtensibleFormComponent, typeof i6.ExtensibleTableComponent, typeof i7.PropDataDirective, typeof i8.DisabledDirective, typeof i9.CreateInjectorPipe]>;
|
|
18
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<BaseUiExtensionsModule>;
|
|
19
|
-
}
|
|
20
|
-
export declare class UiExtensionsModule {
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiExtensionsModule, never>;
|
|
22
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiExtensionsModule, never, [typeof BaseUiExtensionsModule], [typeof BaseUiExtensionsModule]>;
|
|
23
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<UiExtensionsModule>;
|
|
24
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/date-time-picker/date-time-picker.component";
|
|
3
|
+
import * as i2 from "./components/page-toolbar/page-toolbar.component";
|
|
4
|
+
import * as i3 from "./components/grid-actions/grid-actions.component";
|
|
5
|
+
import * as i4 from "./components/extensible-form/extensible-form-prop.component";
|
|
6
|
+
import * as i5 from "./components/extensible-form/extensible-form.component";
|
|
7
|
+
import * as i6 from "./components/extensible-table/extensible-table.component";
|
|
8
|
+
import * as i7 from "./directives/prop-data.directive";
|
|
9
|
+
import * as i8 from "./directives/disabled.directive";
|
|
10
|
+
import * as i9 from "./pipes/create-injector.pipe";
|
|
11
|
+
import * as i10 from "@abp/ng.core";
|
|
12
|
+
import * as i11 from "@abp/ng.theme.shared";
|
|
13
|
+
import * as i12 from "@ngx-validate/core";
|
|
14
|
+
import * as i13 from "@ng-bootstrap/ng-bootstrap";
|
|
15
|
+
export declare class BaseUiExtensionsModule {
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseUiExtensionsModule, never>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BaseUiExtensionsModule, [typeof i1.DateTimePickerComponent, typeof i2.PageToolbarComponent, typeof i3.GridActionsComponent, typeof i4.ExtensibleFormPropComponent, typeof i5.ExtensibleFormComponent, typeof i6.ExtensibleTableComponent, typeof i7.PropDataDirective, typeof i8.DisabledDirective, typeof i9.CreateInjectorPipe], [typeof i10.CoreModule, typeof i11.ThemeSharedModule, typeof i12.NgxValidateCoreModule, typeof i13.NgbDatepickerModule, typeof i13.NgbDropdownModule, typeof i13.NgbTimepickerModule, typeof i13.NgbTypeaheadModule], [typeof i1.DateTimePickerComponent, typeof i2.PageToolbarComponent, typeof i3.GridActionsComponent, typeof i5.ExtensibleFormComponent, typeof i6.ExtensibleTableComponent, typeof i7.PropDataDirective, typeof i8.DisabledDirective, typeof i9.CreateInjectorPipe]>;
|
|
18
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BaseUiExtensionsModule>;
|
|
19
|
+
}
|
|
20
|
+
export declare class UiExtensionsModule {
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UiExtensionsModule, never>;
|
|
22
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UiExtensionsModule, never, [typeof BaseUiExtensionsModule], [typeof BaseUiExtensionsModule]>;
|
|
23
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<UiExtensionsModule>;
|
|
24
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ActionsFactory } from "../models/actions";
|
|
2
|
-
import { EntityActionContributorCallbacks, EntityActionDefaults, EntityActionsFactory } from '../models/entity-actions';
|
|
3
|
-
import { ToolbarActionContributorCallbacks, ToolbarActionDefaults, ToolbarActionsFactory } from '../models/toolbar-actions';
|
|
4
|
-
export declare function mergeWithDefaultActions<F extends ActionsFactory<any>>(extension: F, defaultActions: InferredActionDefaults<F>, ...contributors: InferredActionContributorCallbacks<F>[]): void;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export {};
|
|
1
|
+
import { ActionsFactory } from "../models/actions";
|
|
2
|
+
import { EntityActionContributorCallbacks, EntityActionDefaults, EntityActionsFactory } from '../models/entity-actions';
|
|
3
|
+
import { ToolbarActionContributorCallbacks, ToolbarActionDefaults, ToolbarActionsFactory } from '../models/toolbar-actions';
|
|
4
|
+
export declare function mergeWithDefaultActions<F extends ActionsFactory<any>>(extension: F, defaultActions: InferredActionDefaults<F>, ...contributors: InferredActionContributorCallbacks<F>[]): void;
|
|
5
|
+
type InferredActionDefaults<F> = F extends EntityActionsFactory<infer RE> ? EntityActionDefaults<RE> : F extends ToolbarActionsFactory<infer RT> ? ToolbarActionDefaults<RT> : never;
|
|
6
|
+
type InferredActionContributorCallbacks<F> = F extends EntityActionsFactory<infer RE> ? EntityActionContributorCallbacks<RE> : F extends ToolbarActionsFactory<infer RT> ? ToolbarActionContributorCallbacks<RT> : never;
|
|
7
|
+
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ABP, ExtensionEnumFieldDto } from '@abp/ng.core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { ObjectExtensions } from '../models/object-extensions';
|
|
4
|
-
import { PropCallback } from '../models/props';
|
|
5
|
-
export declare function createEnum(members: ExtensionEnumFieldDto[]): any;
|
|
6
|
-
export declare function createEnumValueResolver<T = any>(enumType: string, lookupEnum: ObjectExtensions.ExtensionEnumDto, propName: string): PropCallback<T, Observable<string>>;
|
|
7
|
-
export declare function createEnumOptions<T = any>(enumType: string, lookupEnum: ObjectExtensions.ExtensionEnumDto): PropCallback<T, Observable<ABP.Option<any>[]>>;
|
|
1
|
+
import { ABP, ExtensionEnumFieldDto } from '@abp/ng.core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ObjectExtensions } from '../models/object-extensions';
|
|
4
|
+
import { PropCallback } from '../models/props';
|
|
5
|
+
export declare function createEnum(members: ExtensionEnumFieldDto[]): any;
|
|
6
|
+
export declare function createEnumValueResolver<T = any>(enumType: string, lookupEnum: ObjectExtensions.ExtensionEnumDto, propName: string): PropCallback<T, Observable<string>>;
|
|
7
|
+
export declare function createEnumOptions<T = any>(enumType: string, lookupEnum: ObjectExtensions.ExtensionEnumDto): PropCallback<T, Observable<ABP.Option<any>[]>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function selfFactory(dependency?: any): any;
|
|
1
|
+
export declare function selfFactory(dependency?: any): any;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
2
|
-
import { PropData } from "../models/props";
|
|
3
|
-
export declare function generateFormFromProps<R = any>(data: PropData<R>): UntypedFormGroup;
|
|
1
|
+
import { UntypedFormGroup } from '@angular/forms';
|
|
2
|
+
import { PropData } from "../models/props";
|
|
3
|
+
export declare function generateFormFromProps<R = any>(data: PropData<R>): UntypedFormGroup;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ApplicationLocalizationConfigurationDto } from '@abp/ng.core';
|
|
2
|
-
import { ObjectExtensions } from '../models/object-extensions';
|
|
3
|
-
export declare function createDisplayNameLocalizationPipeKeyGenerator(localization: ApplicationLocalizationConfigurationDto): (displayName: ObjectExtensions.LocalizableStringDto, fallback: ObjectExtensions.LocalizableStringDto) => string;
|
|
1
|
+
import { ApplicationLocalizationConfigurationDto } from '@abp/ng.core';
|
|
2
|
+
import { ObjectExtensions } from '../models/object-extensions';
|
|
3
|
+
export declare function createDisplayNameLocalizationPipeKeyGenerator(localization: ApplicationLocalizationConfigurationDto): (displayName: ObjectExtensions.LocalizableStringDto, fallback: ObjectExtensions.LocalizableStringDto) => string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
|
-
import { EntityPropContributorCallbacks, EntityPropDefaults, EntityPropsFactory } from '../models/entity-props';
|
|
3
|
-
import { CreateFormPropContributorCallbacks, CreateFormPropDefaults, CreateFormPropsFactory, EditFormPropContributorCallbacks, EditFormPropDefaults, EditFormPropsFactory } from '../models/form-props';
|
|
4
|
-
import { PropCallback, PropsFactory } from '../models/props';
|
|
5
|
-
export declare function createExtraPropertyValueResolver<T>(name: string): PropCallback<T, Observable<any>>;
|
|
6
|
-
export declare function mergeWithDefaultProps<F extends PropsFactory<any>>(extension: F, defaultProps: InferredPropDefaults<F>, ...contributors: InferredPropContributorCallbacks<F>[]): void;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export {};
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { EntityPropContributorCallbacks, EntityPropDefaults, EntityPropsFactory } from '../models/entity-props';
|
|
3
|
+
import { CreateFormPropContributorCallbacks, CreateFormPropDefaults, CreateFormPropsFactory, EditFormPropContributorCallbacks, EditFormPropDefaults, EditFormPropsFactory } from '../models/form-props';
|
|
4
|
+
import { PropCallback, PropsFactory } from '../models/props';
|
|
5
|
+
export declare function createExtraPropertyValueResolver<T>(name: string): PropCallback<T, Observable<any>>;
|
|
6
|
+
export declare function mergeWithDefaultProps<F extends PropsFactory<any>>(extension: F, defaultProps: InferredPropDefaults<F>, ...contributors: InferredPropContributorCallbacks<F>[]): void;
|
|
7
|
+
type InferredPropDefaults<F> = F extends EntityPropsFactory<infer RE> ? EntityPropDefaults<RE> : F extends CreateFormPropsFactory<infer RCF> ? CreateFormPropDefaults<RCF> : F extends EditFormPropsFactory<infer REF> ? EditFormPropDefaults<REF> : never;
|
|
8
|
+
type InferredPropContributorCallbacks<F> = F extends EntityPropsFactory<infer RE> ? EntityPropContributorCallbacks<RE> : F extends CreateFormPropsFactory<infer RCF> ? CreateFormPropContributorCallbacks<RCF> : F extends EditFormPropsFactory<infer REF> ? EditFormPropContributorCallbacks<REF> : never;
|
|
9
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ConfigStateService } from
|
|
2
|
-
import { Observable } from
|
|
3
|
-
import { ObjectExtensions } from
|
|
4
|
-
export declare function getObjectExtensionEntitiesFromStore(configState: ConfigStateService, moduleKey: string): Observable<ObjectExtensions.EntityExtensions>;
|
|
5
|
-
export declare function mapEntitiesToContributors<T = any>(configState: ConfigStateService, resource: string): import("rxjs").UnaryFunction<Observable<any>, Observable<ObjectExtensions.PropContributors<any>>>;
|
|
1
|
+
import { ConfigStateService } from '@abp/ng.core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ObjectExtensions } from '../models/object-extensions';
|
|
4
|
+
export declare function getObjectExtensionEntitiesFromStore(configState: ConfigStateService, moduleKey: string): Observable<ObjectExtensions.EntityExtensions>;
|
|
5
|
+
export declare function mapEntitiesToContributors<T = any>(configState: ConfigStateService, resource: string): import("rxjs").UnaryFunction<Observable<any>, Observable<ObjectExtensions.PropContributors<any>>>;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ABP, ExtensionPropertyUiLookupDto } from '@abp/ng.core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { ePropType } from '../enums/props.enum';
|
|
4
|
-
import { ObjectExtensions } from '../models/object-extensions';
|
|
5
|
-
import { PropCallback } from '../models/props';
|
|
6
|
-
export declare function createTypeaheadOptions(lookup: ExtensionPropertyUiLookupDto): PropCallback<any, Observable<ABP.Option<any>[]>>;
|
|
7
|
-
export declare function getTypeaheadType(lookup: ExtensionPropertyUiLookupDto, name: string): ePropType.Hidden | ePropType.Typeahead;
|
|
8
|
-
export declare function createTypeaheadDisplayNameGenerator(displayNameGeneratorFn: ObjectExtensions.DisplayNameGeneratorFn, properties: ObjectExtensions.EntityExtensionProperties): ObjectExtensions.DisplayNameGeneratorFn;
|
|
9
|
-
export declare function addTypeaheadTextSuffix(name: string): string;
|
|
10
|
-
export declare function hasTypeaheadTextSuffix(name: string): boolean;
|
|
11
|
-
export declare function removeTypeaheadTextSuffix(name: string): string;
|
|
1
|
+
import { ABP, ExtensionPropertyUiLookupDto } from '@abp/ng.core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ePropType } from '../enums/props.enum';
|
|
4
|
+
import { ObjectExtensions } from '../models/object-extensions';
|
|
5
|
+
import { PropCallback } from '../models/props';
|
|
6
|
+
export declare function createTypeaheadOptions(lookup: ExtensionPropertyUiLookupDto): PropCallback<any, Observable<ABP.Option<any>[]>>;
|
|
7
|
+
export declare function getTypeaheadType(lookup: ExtensionPropertyUiLookupDto, name: string): ePropType.Hidden | ePropType.Typeahead;
|
|
8
|
+
export declare function createTypeaheadDisplayNameGenerator(displayNameGeneratorFn: ObjectExtensions.DisplayNameGeneratorFn, properties: ObjectExtensions.EntityExtensionProperties): ObjectExtensions.DisplayNameGeneratorFn;
|
|
9
|
+
export declare function addTypeaheadTextSuffix(name: string): string;
|
|
10
|
+
export declare function hasTypeaheadTextSuffix(name: string): boolean;
|
|
11
|
+
export declare function removeTypeaheadTextSuffix(name: string): string;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ValidatorFn } from '@angular/forms';
|
|
2
|
-
import { ObjectExtensions } from '../models/object-extensions';
|
|
3
|
-
export declare function getValidatorsFromProperty(property: ObjectExtensions.ExtensionPropertyDto): ValidatorFn[];
|
|
1
|
+
import { ValidatorFn } from '@angular/forms';
|
|
2
|
+
import { ObjectExtensions } from '../models/object-extensions';
|
|
3
|
+
export declare function getValidatorsFromProperty(property: ObjectExtensions.ExtensionPropertyDto): ValidatorFn[];
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
export * from './lib/adapters/date-time.adapter';
|
|
2
|
-
export * from './lib/adapters/date.adapter';
|
|
3
|
-
export * from './lib/adapters/time.adapter';
|
|
4
|
-
export * from './lib/components/date-time-picker/date-time-picker.component';
|
|
5
|
-
export * from './lib/components/extensible-form/extensible-form-prop.component';
|
|
6
|
-
export * from './lib/components/extensible-form/extensible-form.component';
|
|
7
|
-
export * from './lib/components/extensible-table/extensible-table.component';
|
|
8
|
-
export * from './lib/components/grid-actions/grid-actions.component';
|
|
9
|
-
export * from './lib/components/page-toolbar/page-toolbar.component';
|
|
10
|
-
export * from './lib/constants/extra-properties';
|
|
11
|
-
export * from './lib/directives/disabled.directive';
|
|
12
|
-
export * from './lib/directives/prop-data.directive';
|
|
13
|
-
export * from './lib/enums/props.enum';
|
|
14
|
-
export * from './lib/enums/components';
|
|
15
|
-
export { ActionCallback, ActionList, ActionPredicate, ReadonlyActionData as ActionData, } from './lib/models/actions';
|
|
16
|
-
export { EntityAction, EntityActionContributorCallback, EntityActionList, EntityActionOptions, EntityActions, EntityActionsFactory, } from './lib/models/entity-actions';
|
|
17
|
-
export { EntityProp, EntityPropContributorCallback, EntityPropList, EntityPropOptions, EntityProps, EntityPropsFactory, } from './lib/models/entity-props';
|
|
18
|
-
export { CreateFormPropContributorCallback, CreateFormPropsFactory, EditFormPropContributorCallback, EditFormPropsFactory, FormProp, FormPropData, FormPropList, FormPropOptions, FormProps, } from './lib/models/form-props';
|
|
19
|
-
export * from './lib/models/object-extensions';
|
|
20
|
-
export { PropCallback, PropList, PropPredicate, ReadonlyPropData as PropData, } from './lib/models/props';
|
|
21
|
-
export { ToolbarAction, ToolbarActionContributorCallback, ToolbarActionList, ToolbarActionOptions, ToolbarActions, ToolbarActionsFactory, ToolbarComponent, ToolbarComponentOptions, } from './lib/models/toolbar-actions';
|
|
22
|
-
export * from './lib/pipes/create-injector.pipe';
|
|
23
|
-
export * from './lib/services/extensions.service';
|
|
24
|
-
export * from './lib/tokens/extensions.token';
|
|
25
|
-
export * from './lib/tokens/extensible-form-view-provider.token';
|
|
26
|
-
export * from './lib/ui-extensions.module';
|
|
27
|
-
export * from './lib/utils/actions.util';
|
|
28
|
-
export * from './lib/utils/form-props.util';
|
|
29
|
-
export * from './lib/utils/props.util';
|
|
30
|
-
export * from './lib/utils/state.util';
|
|
1
|
+
export * from './lib/adapters/date-time.adapter';
|
|
2
|
+
export * from './lib/adapters/date.adapter';
|
|
3
|
+
export * from './lib/adapters/time.adapter';
|
|
4
|
+
export * from './lib/components/date-time-picker/date-time-picker.component';
|
|
5
|
+
export * from './lib/components/extensible-form/extensible-form-prop.component';
|
|
6
|
+
export * from './lib/components/extensible-form/extensible-form.component';
|
|
7
|
+
export * from './lib/components/extensible-table/extensible-table.component';
|
|
8
|
+
export * from './lib/components/grid-actions/grid-actions.component';
|
|
9
|
+
export * from './lib/components/page-toolbar/page-toolbar.component';
|
|
10
|
+
export * from './lib/constants/extra-properties';
|
|
11
|
+
export * from './lib/directives/disabled.directive';
|
|
12
|
+
export * from './lib/directives/prop-data.directive';
|
|
13
|
+
export * from './lib/enums/props.enum';
|
|
14
|
+
export * from './lib/enums/components';
|
|
15
|
+
export { ActionCallback, ActionList, ActionPredicate, ReadonlyActionData as ActionData, } from './lib/models/actions';
|
|
16
|
+
export { EntityAction, EntityActionContributorCallback, EntityActionList, EntityActionOptions, EntityActions, EntityActionsFactory, } from './lib/models/entity-actions';
|
|
17
|
+
export { EntityProp, EntityPropContributorCallback, EntityPropList, EntityPropOptions, EntityProps, EntityPropsFactory, } from './lib/models/entity-props';
|
|
18
|
+
export { CreateFormPropContributorCallback, CreateFormPropsFactory, EditFormPropContributorCallback, EditFormPropsFactory, FormProp, FormPropData, FormPropList, FormPropOptions, FormProps, } from './lib/models/form-props';
|
|
19
|
+
export * from './lib/models/object-extensions';
|
|
20
|
+
export { PropCallback, PropList, PropPredicate, ReadonlyPropData as PropData, } from './lib/models/props';
|
|
21
|
+
export { ToolbarAction, ToolbarActionContributorCallback, ToolbarActionList, ToolbarActionOptions, ToolbarActions, ToolbarActionsFactory, ToolbarComponent, ToolbarComponentOptions, } from './lib/models/toolbar-actions';
|
|
22
|
+
export * from './lib/pipes/create-injector.pipe';
|
|
23
|
+
export * from './lib/services/extensions.service';
|
|
24
|
+
export * from './lib/tokens/extensions.token';
|
|
25
|
+
export * from './lib/tokens/extensible-form-view-provider.token';
|
|
26
|
+
export * from './lib/ui-extensions.module';
|
|
27
|
+
export * from './lib/utils/actions.util';
|
|
28
|
+
export * from './lib/utils/form-props.util';
|
|
29
|
+
export * from './lib/utils/props.util';
|
|
30
|
+
export * from './lib/utils/state.util';
|