@bnsights/bbsf-utilities 1.0.42 → 1.0.44
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 +87 -66
- package/bnsights-bbsf-utilities-1.0.44.tgz +0 -0
- package/{esm2020 → esm2022}/bnsights-bbsf-utilities.mjs +4 -4
- package/{esm2020 → esm2022}/lib/bbsf-utilities.module.mjs +59 -59
- package/esm2022/lib/shared/authentication/auth.service.mjs +211 -0
- package/{esm2020 → esm2022}/lib/shared/authentication/index.mjs +1 -1
- package/{esm2020 → esm2022}/lib/shared/config/environment.mjs +11 -11
- package/{esm2020 → esm2022}/lib/shared/config/word/constants.mjs +104 -104
- package/{esm2020 → esm2022}/lib/shared/config/word/docx-document.mjs +347 -347
- package/{esm2020 → esm2022}/lib/shared/config/word/helpers/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/config/word/helpers/render-document-file.mjs +153 -153
- package/{esm2020 → esm2022}/lib/shared/config/word/helpers/xml-builder.mjs +1835 -1835
- package/{esm2020 → esm2022}/lib/shared/config/word/html-to-docx.mjs +186 -186
- package/{esm2020 → esm2022}/lib/shared/config/word/index.mjs +49 -49
- package/{esm2020 → esm2022}/lib/shared/config/word/namespaces.mjs +36 -36
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/content-types.mjs +2 -2
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/core.mjs +6 -6
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/document-rels.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/document.template.mjs +17 -17
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/font-table.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/generic-rels.mjs +2 -2
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/index.mjs +12 -12
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/numbering.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/rels.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/settings.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/styles.mjs +4 -4
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/theme.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/config/word/schemas/web-settings.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/config/word/utils/color-conversion.mjs +59 -59
- package/{esm2020 → esm2022}/lib/shared/config/word/utils/list.mjs +50 -50
- package/{esm2020 → esm2022}/lib/shared/config/word/utils/unit-conversion.mjs +29 -29
- package/{esm2020 → esm2022}/lib/shared/config/word/utils/url.mjs +6 -6
- package/{esm2020 → esm2022}/lib/shared/config/word/utils/vnode.mjs +2 -2
- package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/documentTemplate.mjs +12 -12
- package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/mhtDocumentTemplate.mjs +4 -4
- package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/mhtPartTemplate.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/config/word/word-work/utils.mjs +25 -25
- package/{esm2020 → esm2022}/lib/shared/enums/authentication-modes-enums.mjs +7 -7
- package/{esm2020 → esm2022}/lib/shared/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/shared/models/UserModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/shared/models/area-model.mjs +2 -2
- package/{esm2020 → esm2022}/lib/shared/models/error-model.mjs +2 -2
- package/{esm2020 → esm2022}/lib/shared/models/index.mjs +4 -4
- package/{esm2020 → esm2022}/lib/shared/models/request-options-model.mjs +10 -10
- package/{esm2020 → esm2022}/lib/shared/models/word-document-model.mjs +7 -7
- package/{esm2020 → esm2022}/lib/shared/services/appearance-configuration.service.mjs +35 -35
- package/esm2022/lib/shared/services/configuration.service.mjs +24 -0
- package/{esm2020 → esm2022}/lib/shared/services/control-validation.service.mjs +173 -173
- package/esm2022/lib/shared/services/environment.service.mjs +75 -0
- package/{esm2020 → esm2022}/lib/shared/services/index.mjs +11 -11
- package/{esm2020 → esm2022}/lib/shared/services/master-layout.service.mjs +72 -72
- package/{esm2020 → esm2022}/lib/shared/services/request-handler.service.mjs +219 -199
- package/{esm2020 → esm2022}/lib/shared/services/styles-bundle.service.mjs +55 -55
- package/{esm2020 → esm2022}/lib/shared/services/translate.service.mjs +14 -14
- package/{esm2020 → esm2022}/lib/shared/services/translation-resolver.service.mjs +6 -6
- package/{esm2020 → esm2022}/lib/shared/services/utility.service.mjs +87 -87
- package/{esm2020 → esm2022}/lib/shared/services/word-document.service.mjs +38 -38
- package/{esm2020 → esm2022}/public-api.mjs +29 -29
- package/{fesm2020 → fesm2022}/bnsights-bbsf-utilities.mjs +3856 -3836
- package/fesm2022/bnsights-bbsf-utilities.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/bbsf-utilities.module.d.ts +10 -10
- package/lib/shared/authentication/auth.service.d.ts +52 -52
- package/lib/shared/authentication/index.d.ts +1 -1
- package/lib/shared/config/environment.d.ts +1 -1
- package/lib/shared/config/word/constants.d.ts +124 -124
- package/lib/shared/config/word/docx-document.d.ts +73 -73
- package/lib/shared/config/word/helpers/index.d.ts +1 -1
- package/lib/shared/config/word/helpers/render-document-file.d.ts +2 -2
- package/lib/shared/config/word/helpers/xml-builder.d.ts +16 -16
- package/lib/shared/config/word/html-to-docx.d.ts +1 -1
- package/lib/shared/config/word/index.d.ts +1 -1
- package/lib/shared/config/word/namespaces.d.ts +36 -36
- package/lib/shared/config/word/schemas/content-types.d.ts +1 -1
- package/lib/shared/config/word/schemas/core.d.ts +1 -1
- package/lib/shared/config/word/schemas/document-rels.d.ts +1 -1
- package/lib/shared/config/word/schemas/document.template.d.ts +4 -4
- package/lib/shared/config/word/schemas/font-table.d.ts +1 -1
- package/lib/shared/config/word/schemas/generic-rels.d.ts +1 -1
- package/lib/shared/config/word/schemas/index.d.ts +12 -12
- package/lib/shared/config/word/schemas/numbering.d.ts +1 -1
- package/lib/shared/config/word/schemas/rels.d.ts +1 -1
- package/lib/shared/config/word/schemas/settings.d.ts +1 -1
- package/lib/shared/config/word/schemas/styles.d.ts +1 -1
- package/lib/shared/config/word/schemas/theme.d.ts +1 -1
- package/lib/shared/config/word/schemas/web-settings.d.ts +1 -1
- package/lib/shared/config/word/utils/color-conversion.d.ts +7 -7
- package/lib/shared/config/word/utils/list.d.ts +6 -6
- package/lib/shared/config/word/utils/unit-conversion.d.ts +29 -29
- package/lib/shared/config/word/utils/url.d.ts +1 -1
- package/lib/shared/config/word/utils/vnode.d.ts +1 -1
- package/lib/shared/config/word/word-work/templates/documentTemplate.d.ts +12 -12
- package/lib/shared/config/word/word-work/templates/index.d.ts +3 -3
- package/lib/shared/config/word/word-work/templates/mhtDocumentTemplate.d.ts +1 -1
- package/lib/shared/config/word/word-work/templates/mhtPartTemplate.d.ts +1 -1
- package/lib/shared/config/word/word-work/utils.d.ts +1 -1
- package/lib/shared/enums/authentication-modes-enums.d.ts +6 -6
- package/lib/shared/index.d.ts +3 -3
- package/lib/shared/models/UserModel.d.ts +6 -6
- package/lib/shared/models/area-model.d.ts +4 -4
- package/lib/shared/models/error-model.d.ts +5 -5
- package/lib/shared/models/index.d.ts +4 -4
- package/lib/shared/models/request-options-model.d.ts +11 -11
- package/lib/shared/models/word-document-model.d.ts +16 -16
- package/lib/shared/services/appearance-configuration.service.d.ts +14 -14
- package/lib/shared/services/configuration.service.d.ts +10 -10
- package/lib/shared/services/control-validation.service.d.ts +23 -23
- package/lib/shared/services/environment.service.d.ts +25 -25
- package/lib/shared/services/index.d.ts +11 -11
- package/lib/shared/services/master-layout.service.d.ts +24 -24
- package/lib/shared/services/request-handler.service.d.ts +35 -33
- package/lib/shared/services/styles-bundle.service.d.ts +12 -12
- package/lib/shared/services/translate.service.d.ts +6 -6
- package/lib/shared/services/translation-resolver.service.d.ts +2 -2
- package/lib/shared/services/utility.service.d.ts +23 -23
- package/lib/shared/services/word-document.service.d.ts +8 -8
- package/package.json +28 -29
- package/public-api.d.ts +17 -17
- package/bnsights-bbsf-utilities-1.0.42.tgz +0 -0
- package/esm2020/lib/shared/authentication/auth.service.mjs +0 -211
- package/esm2020/lib/shared/services/configuration.service.mjs +0 -24
- package/esm2020/lib/shared/services/environment.service.mjs +0 -75
- package/fesm2015/bnsights-bbsf-utilities.mjs +0 -4555
- package/fesm2015/bnsights-bbsf-utilities.mjs.map +0 -1
- package/fesm2020/bnsights-bbsf-utilities.mjs.map +0 -1
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.