@bnsights/bbsf-utilities 1.0.42 → 1.0.43

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.
Files changed (124) hide show
  1. package/README.md +4 -0
  2. package/{esm2020 → esm2022}/bnsights-bbsf-utilities.mjs +4 -4
  3. package/{esm2020 → esm2022}/lib/bbsf-utilities.module.mjs +59 -59
  4. package/esm2022/lib/shared/authentication/auth.service.mjs +211 -0
  5. package/{esm2020 → esm2022}/lib/shared/authentication/index.mjs +1 -1
  6. package/{esm2020 → esm2022}/lib/shared/config/environment.mjs +11 -11
  7. package/{esm2020 → esm2022}/lib/shared/config/word/constants.mjs +104 -104
  8. package/{esm2020 → esm2022}/lib/shared/config/word/docx-document.mjs +347 -347
  9. package/{esm2020 → esm2022}/lib/shared/config/word/helpers/index.mjs +3 -3
  10. package/{esm2020 → esm2022}/lib/shared/config/word/helpers/render-document-file.mjs +153 -153
  11. package/{esm2020 → esm2022}/lib/shared/config/word/helpers/xml-builder.mjs +1835 -1835
  12. package/{esm2020 → esm2022}/lib/shared/config/word/html-to-docx.mjs +186 -186
  13. package/{esm2020 → esm2022}/lib/shared/config/word/index.mjs +49 -49
  14. package/{esm2020 → esm2022}/lib/shared/config/word/namespaces.mjs +36 -36
  15. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/content-types.mjs +2 -2
  16. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/core.mjs +6 -6
  17. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/document-rels.mjs +3 -3
  18. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/document.template.mjs +17 -17
  19. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/font-table.mjs +3 -3
  20. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/generic-rels.mjs +2 -2
  21. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/index.mjs +12 -12
  22. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/numbering.mjs +3 -3
  23. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/rels.mjs +3 -3
  24. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/settings.mjs +3 -3
  25. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/styles.mjs +4 -4
  26. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/theme.mjs +3 -3
  27. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/web-settings.mjs +3 -3
  28. package/{esm2020 → esm2022}/lib/shared/config/word/utils/color-conversion.mjs +59 -59
  29. package/{esm2020 → esm2022}/lib/shared/config/word/utils/list.mjs +50 -50
  30. package/{esm2020 → esm2022}/lib/shared/config/word/utils/unit-conversion.mjs +29 -29
  31. package/{esm2020 → esm2022}/lib/shared/config/word/utils/url.mjs +6 -6
  32. package/{esm2020 → esm2022}/lib/shared/config/word/utils/vnode.mjs +2 -2
  33. package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/documentTemplate.mjs +12 -12
  34. package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/index.mjs +3 -3
  35. package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/mhtDocumentTemplate.mjs +4 -4
  36. package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/mhtPartTemplate.mjs +3 -3
  37. package/{esm2020 → esm2022}/lib/shared/config/word/word-work/utils.mjs +25 -25
  38. package/{esm2020 → esm2022}/lib/shared/enums/authentication-modes-enums.mjs +7 -7
  39. package/{esm2020 → esm2022}/lib/shared/index.mjs +3 -3
  40. package/{esm2020 → esm2022}/lib/shared/models/UserModel.mjs +2 -2
  41. package/{esm2020 → esm2022}/lib/shared/models/area-model.mjs +2 -2
  42. package/{esm2020 → esm2022}/lib/shared/models/error-model.mjs +2 -2
  43. package/{esm2020 → esm2022}/lib/shared/models/index.mjs +4 -4
  44. package/{esm2020 → esm2022}/lib/shared/models/request-options-model.mjs +10 -10
  45. package/{esm2020 → esm2022}/lib/shared/models/word-document-model.mjs +7 -7
  46. package/{esm2020 → esm2022}/lib/shared/services/appearance-configuration.service.mjs +35 -35
  47. package/esm2022/lib/shared/services/configuration.service.mjs +24 -0
  48. package/{esm2020 → esm2022}/lib/shared/services/control-validation.service.mjs +173 -173
  49. package/esm2022/lib/shared/services/environment.service.mjs +75 -0
  50. package/{esm2020 → esm2022}/lib/shared/services/index.mjs +11 -11
  51. package/{esm2020 → esm2022}/lib/shared/services/master-layout.service.mjs +72 -72
  52. package/{esm2020 → esm2022}/lib/shared/services/request-handler.service.mjs +199 -199
  53. package/{esm2020 → esm2022}/lib/shared/services/styles-bundle.service.mjs +55 -55
  54. package/{esm2020 → esm2022}/lib/shared/services/translate.service.mjs +14 -14
  55. package/{esm2020 → esm2022}/lib/shared/services/translation-resolver.service.mjs +6 -6
  56. package/{esm2020 → esm2022}/lib/shared/services/utility.service.mjs +87 -87
  57. package/{esm2020 → esm2022}/lib/shared/services/word-document.service.mjs +38 -38
  58. package/{esm2020 → esm2022}/public-api.mjs +29 -29
  59. package/{fesm2020 → fesm2022}/bnsights-bbsf-utilities.mjs +3836 -3836
  60. package/{fesm2020 → fesm2022}/bnsights-bbsf-utilities.mjs.map +1 -1
  61. package/index.d.ts +5 -5
  62. package/lib/bbsf-utilities.module.d.ts +10 -10
  63. package/lib/shared/authentication/auth.service.d.ts +52 -52
  64. package/lib/shared/authentication/index.d.ts +1 -1
  65. package/lib/shared/config/environment.d.ts +1 -1
  66. package/lib/shared/config/word/constants.d.ts +124 -124
  67. package/lib/shared/config/word/docx-document.d.ts +73 -73
  68. package/lib/shared/config/word/helpers/index.d.ts +1 -1
  69. package/lib/shared/config/word/helpers/render-document-file.d.ts +2 -2
  70. package/lib/shared/config/word/helpers/xml-builder.d.ts +16 -16
  71. package/lib/shared/config/word/html-to-docx.d.ts +1 -1
  72. package/lib/shared/config/word/index.d.ts +1 -1
  73. package/lib/shared/config/word/namespaces.d.ts +36 -36
  74. package/lib/shared/config/word/schemas/content-types.d.ts +1 -1
  75. package/lib/shared/config/word/schemas/core.d.ts +1 -1
  76. package/lib/shared/config/word/schemas/document-rels.d.ts +1 -1
  77. package/lib/shared/config/word/schemas/document.template.d.ts +4 -4
  78. package/lib/shared/config/word/schemas/font-table.d.ts +1 -1
  79. package/lib/shared/config/word/schemas/generic-rels.d.ts +1 -1
  80. package/lib/shared/config/word/schemas/index.d.ts +12 -12
  81. package/lib/shared/config/word/schemas/numbering.d.ts +1 -1
  82. package/lib/shared/config/word/schemas/rels.d.ts +1 -1
  83. package/lib/shared/config/word/schemas/settings.d.ts +1 -1
  84. package/lib/shared/config/word/schemas/styles.d.ts +1 -1
  85. package/lib/shared/config/word/schemas/theme.d.ts +1 -1
  86. package/lib/shared/config/word/schemas/web-settings.d.ts +1 -1
  87. package/lib/shared/config/word/utils/color-conversion.d.ts +7 -7
  88. package/lib/shared/config/word/utils/list.d.ts +6 -6
  89. package/lib/shared/config/word/utils/unit-conversion.d.ts +29 -29
  90. package/lib/shared/config/word/utils/url.d.ts +1 -1
  91. package/lib/shared/config/word/utils/vnode.d.ts +1 -1
  92. package/lib/shared/config/word/word-work/templates/documentTemplate.d.ts +12 -12
  93. package/lib/shared/config/word/word-work/templates/index.d.ts +3 -3
  94. package/lib/shared/config/word/word-work/templates/mhtDocumentTemplate.d.ts +1 -1
  95. package/lib/shared/config/word/word-work/templates/mhtPartTemplate.d.ts +1 -1
  96. package/lib/shared/config/word/word-work/utils.d.ts +1 -1
  97. package/lib/shared/enums/authentication-modes-enums.d.ts +6 -6
  98. package/lib/shared/index.d.ts +3 -3
  99. package/lib/shared/models/UserModel.d.ts +6 -6
  100. package/lib/shared/models/area-model.d.ts +4 -4
  101. package/lib/shared/models/error-model.d.ts +5 -5
  102. package/lib/shared/models/index.d.ts +4 -4
  103. package/lib/shared/models/request-options-model.d.ts +11 -11
  104. package/lib/shared/models/word-document-model.d.ts +16 -16
  105. package/lib/shared/services/appearance-configuration.service.d.ts +14 -14
  106. package/lib/shared/services/configuration.service.d.ts +10 -10
  107. package/lib/shared/services/control-validation.service.d.ts +23 -23
  108. package/lib/shared/services/environment.service.d.ts +25 -25
  109. package/lib/shared/services/index.d.ts +11 -11
  110. package/lib/shared/services/master-layout.service.d.ts +24 -24
  111. package/lib/shared/services/request-handler.service.d.ts +33 -33
  112. package/lib/shared/services/styles-bundle.service.d.ts +12 -12
  113. package/lib/shared/services/translate.service.d.ts +6 -6
  114. package/lib/shared/services/translation-resolver.service.d.ts +2 -2
  115. package/lib/shared/services/utility.service.d.ts +23 -23
  116. package/lib/shared/services/word-document.service.d.ts +8 -8
  117. package/package.json +28 -29
  118. package/public-api.d.ts +17 -17
  119. package/bnsights-bbsf-utilities-1.0.42.tgz +0 -0
  120. package/esm2020/lib/shared/authentication/auth.service.mjs +0 -211
  121. package/esm2020/lib/shared/services/configuration.service.mjs +0 -24
  122. package/esm2020/lib/shared/services/environment.service.mjs +0 -75
  123. package/fesm2015/bnsights-bbsf-utilities.mjs +0 -4555
  124. package/fesm2015/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.