@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.
Files changed (126) hide show
  1. package/README.md +87 -66
  2. package/bnsights-bbsf-utilities-1.0.44.tgz +0 -0
  3. package/{esm2020 → esm2022}/bnsights-bbsf-utilities.mjs +4 -4
  4. package/{esm2020 → esm2022}/lib/bbsf-utilities.module.mjs +59 -59
  5. package/esm2022/lib/shared/authentication/auth.service.mjs +211 -0
  6. package/{esm2020 → esm2022}/lib/shared/authentication/index.mjs +1 -1
  7. package/{esm2020 → esm2022}/lib/shared/config/environment.mjs +11 -11
  8. package/{esm2020 → esm2022}/lib/shared/config/word/constants.mjs +104 -104
  9. package/{esm2020 → esm2022}/lib/shared/config/word/docx-document.mjs +347 -347
  10. package/{esm2020 → esm2022}/lib/shared/config/word/helpers/index.mjs +3 -3
  11. package/{esm2020 → esm2022}/lib/shared/config/word/helpers/render-document-file.mjs +153 -153
  12. package/{esm2020 → esm2022}/lib/shared/config/word/helpers/xml-builder.mjs +1835 -1835
  13. package/{esm2020 → esm2022}/lib/shared/config/word/html-to-docx.mjs +186 -186
  14. package/{esm2020 → esm2022}/lib/shared/config/word/index.mjs +49 -49
  15. package/{esm2020 → esm2022}/lib/shared/config/word/namespaces.mjs +36 -36
  16. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/content-types.mjs +2 -2
  17. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/core.mjs +6 -6
  18. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/document-rels.mjs +3 -3
  19. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/document.template.mjs +17 -17
  20. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/font-table.mjs +3 -3
  21. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/generic-rels.mjs +2 -2
  22. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/index.mjs +12 -12
  23. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/numbering.mjs +3 -3
  24. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/rels.mjs +3 -3
  25. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/settings.mjs +3 -3
  26. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/styles.mjs +4 -4
  27. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/theme.mjs +3 -3
  28. package/{esm2020 → esm2022}/lib/shared/config/word/schemas/web-settings.mjs +3 -3
  29. package/{esm2020 → esm2022}/lib/shared/config/word/utils/color-conversion.mjs +59 -59
  30. package/{esm2020 → esm2022}/lib/shared/config/word/utils/list.mjs +50 -50
  31. package/{esm2020 → esm2022}/lib/shared/config/word/utils/unit-conversion.mjs +29 -29
  32. package/{esm2020 → esm2022}/lib/shared/config/word/utils/url.mjs +6 -6
  33. package/{esm2020 → esm2022}/lib/shared/config/word/utils/vnode.mjs +2 -2
  34. package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/documentTemplate.mjs +12 -12
  35. package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/index.mjs +3 -3
  36. package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/mhtDocumentTemplate.mjs +4 -4
  37. package/{esm2020 → esm2022}/lib/shared/config/word/word-work/templates/mhtPartTemplate.mjs +3 -3
  38. package/{esm2020 → esm2022}/lib/shared/config/word/word-work/utils.mjs +25 -25
  39. package/{esm2020 → esm2022}/lib/shared/enums/authentication-modes-enums.mjs +7 -7
  40. package/{esm2020 → esm2022}/lib/shared/index.mjs +3 -3
  41. package/{esm2020 → esm2022}/lib/shared/models/UserModel.mjs +2 -2
  42. package/{esm2020 → esm2022}/lib/shared/models/area-model.mjs +2 -2
  43. package/{esm2020 → esm2022}/lib/shared/models/error-model.mjs +2 -2
  44. package/{esm2020 → esm2022}/lib/shared/models/index.mjs +4 -4
  45. package/{esm2020 → esm2022}/lib/shared/models/request-options-model.mjs +10 -10
  46. package/{esm2020 → esm2022}/lib/shared/models/word-document-model.mjs +7 -7
  47. package/{esm2020 → esm2022}/lib/shared/services/appearance-configuration.service.mjs +35 -35
  48. package/esm2022/lib/shared/services/configuration.service.mjs +24 -0
  49. package/{esm2020 → esm2022}/lib/shared/services/control-validation.service.mjs +173 -173
  50. package/esm2022/lib/shared/services/environment.service.mjs +75 -0
  51. package/{esm2020 → esm2022}/lib/shared/services/index.mjs +11 -11
  52. package/{esm2020 → esm2022}/lib/shared/services/master-layout.service.mjs +72 -72
  53. package/{esm2020 → esm2022}/lib/shared/services/request-handler.service.mjs +219 -199
  54. package/{esm2020 → esm2022}/lib/shared/services/styles-bundle.service.mjs +55 -55
  55. package/{esm2020 → esm2022}/lib/shared/services/translate.service.mjs +14 -14
  56. package/{esm2020 → esm2022}/lib/shared/services/translation-resolver.service.mjs +6 -6
  57. package/{esm2020 → esm2022}/lib/shared/services/utility.service.mjs +87 -87
  58. package/{esm2020 → esm2022}/lib/shared/services/word-document.service.mjs +38 -38
  59. package/{esm2020 → esm2022}/public-api.mjs +29 -29
  60. package/{fesm2020 → fesm2022}/bnsights-bbsf-utilities.mjs +3856 -3836
  61. package/fesm2022/bnsights-bbsf-utilities.mjs.map +1 -0
  62. package/index.d.ts +5 -5
  63. package/lib/bbsf-utilities.module.d.ts +10 -10
  64. package/lib/shared/authentication/auth.service.d.ts +52 -52
  65. package/lib/shared/authentication/index.d.ts +1 -1
  66. package/lib/shared/config/environment.d.ts +1 -1
  67. package/lib/shared/config/word/constants.d.ts +124 -124
  68. package/lib/shared/config/word/docx-document.d.ts +73 -73
  69. package/lib/shared/config/word/helpers/index.d.ts +1 -1
  70. package/lib/shared/config/word/helpers/render-document-file.d.ts +2 -2
  71. package/lib/shared/config/word/helpers/xml-builder.d.ts +16 -16
  72. package/lib/shared/config/word/html-to-docx.d.ts +1 -1
  73. package/lib/shared/config/word/index.d.ts +1 -1
  74. package/lib/shared/config/word/namespaces.d.ts +36 -36
  75. package/lib/shared/config/word/schemas/content-types.d.ts +1 -1
  76. package/lib/shared/config/word/schemas/core.d.ts +1 -1
  77. package/lib/shared/config/word/schemas/document-rels.d.ts +1 -1
  78. package/lib/shared/config/word/schemas/document.template.d.ts +4 -4
  79. package/lib/shared/config/word/schemas/font-table.d.ts +1 -1
  80. package/lib/shared/config/word/schemas/generic-rels.d.ts +1 -1
  81. package/lib/shared/config/word/schemas/index.d.ts +12 -12
  82. package/lib/shared/config/word/schemas/numbering.d.ts +1 -1
  83. package/lib/shared/config/word/schemas/rels.d.ts +1 -1
  84. package/lib/shared/config/word/schemas/settings.d.ts +1 -1
  85. package/lib/shared/config/word/schemas/styles.d.ts +1 -1
  86. package/lib/shared/config/word/schemas/theme.d.ts +1 -1
  87. package/lib/shared/config/word/schemas/web-settings.d.ts +1 -1
  88. package/lib/shared/config/word/utils/color-conversion.d.ts +7 -7
  89. package/lib/shared/config/word/utils/list.d.ts +6 -6
  90. package/lib/shared/config/word/utils/unit-conversion.d.ts +29 -29
  91. package/lib/shared/config/word/utils/url.d.ts +1 -1
  92. package/lib/shared/config/word/utils/vnode.d.ts +1 -1
  93. package/lib/shared/config/word/word-work/templates/documentTemplate.d.ts +12 -12
  94. package/lib/shared/config/word/word-work/templates/index.d.ts +3 -3
  95. package/lib/shared/config/word/word-work/templates/mhtDocumentTemplate.d.ts +1 -1
  96. package/lib/shared/config/word/word-work/templates/mhtPartTemplate.d.ts +1 -1
  97. package/lib/shared/config/word/word-work/utils.d.ts +1 -1
  98. package/lib/shared/enums/authentication-modes-enums.d.ts +6 -6
  99. package/lib/shared/index.d.ts +3 -3
  100. package/lib/shared/models/UserModel.d.ts +6 -6
  101. package/lib/shared/models/area-model.d.ts +4 -4
  102. package/lib/shared/models/error-model.d.ts +5 -5
  103. package/lib/shared/models/index.d.ts +4 -4
  104. package/lib/shared/models/request-options-model.d.ts +11 -11
  105. package/lib/shared/models/word-document-model.d.ts +16 -16
  106. package/lib/shared/services/appearance-configuration.service.d.ts +14 -14
  107. package/lib/shared/services/configuration.service.d.ts +10 -10
  108. package/lib/shared/services/control-validation.service.d.ts +23 -23
  109. package/lib/shared/services/environment.service.d.ts +25 -25
  110. package/lib/shared/services/index.d.ts +11 -11
  111. package/lib/shared/services/master-layout.service.d.ts +24 -24
  112. package/lib/shared/services/request-handler.service.d.ts +35 -33
  113. package/lib/shared/services/styles-bundle.service.d.ts +12 -12
  114. package/lib/shared/services/translate.service.d.ts +6 -6
  115. package/lib/shared/services/translation-resolver.service.d.ts +2 -2
  116. package/lib/shared/services/utility.service.d.ts +23 -23
  117. package/lib/shared/services/word-document.service.d.ts +8 -8
  118. package/package.json +28 -29
  119. package/public-api.d.ts +17 -17
  120. package/bnsights-bbsf-utilities-1.0.42.tgz +0 -0
  121. package/esm2020/lib/shared/authentication/auth.service.mjs +0 -211
  122. package/esm2020/lib/shared/services/configuration.service.mjs +0 -24
  123. package/esm2020/lib/shared/services/environment.service.mjs +0 -75
  124. package/fesm2015/bnsights-bbsf-utilities.mjs +0 -4555
  125. package/fesm2015/bnsights-bbsf-utilities.mjs.map +0 -1
  126. package/fesm2020/bnsights-bbsf-utilities.mjs.map +0 -1
@@ -1,36 +1,36 @@
1
- export default namespaces;
2
- declare namespace namespaces {
3
- const a: string;
4
- const b: string;
5
- const cdr: string;
6
- const dc: string;
7
- const dcmitype: string;
8
- const dcterms: string;
9
- const o: string;
10
- const pic: string;
11
- const r: string;
12
- const v: string;
13
- const ve: string;
14
- const vt: string;
15
- const w: string;
16
- const w10: string;
17
- const wp: string;
18
- const wne: string;
19
- const xsd: string;
20
- const xsi: string;
21
- const numbering: string;
22
- const hyperlinks: string;
23
- const images: string;
24
- const styles: string;
25
- const headers: string;
26
- const footers: string;
27
- const themes: string;
28
- const coreProperties: string;
29
- const officeDocumentRelation: string;
30
- const corePropertiesRelation: string;
31
- const settingsRelation: string;
32
- const webSettingsRelation: string;
33
- const sl: string;
34
- const contentTypes: string;
35
- const relationship: string;
36
- }
1
+ export default namespaces;
2
+ declare namespace namespaces {
3
+ let a: string;
4
+ let b: string;
5
+ let cdr: string;
6
+ let dc: string;
7
+ let dcmitype: string;
8
+ let dcterms: string;
9
+ let o: string;
10
+ let pic: string;
11
+ let r: string;
12
+ let v: string;
13
+ let ve: string;
14
+ let vt: string;
15
+ let w: string;
16
+ let w10: string;
17
+ let wp: string;
18
+ let wne: string;
19
+ let xsd: string;
20
+ let xsi: string;
21
+ let numbering: string;
22
+ let hyperlinks: string;
23
+ let images: string;
24
+ let styles: string;
25
+ let headers: string;
26
+ let footers: string;
27
+ let themes: string;
28
+ let coreProperties: string;
29
+ let officeDocumentRelation: string;
30
+ let corePropertiesRelation: string;
31
+ let settingsRelation: string;
32
+ let webSettingsRelation: string;
33
+ let sl: string;
34
+ let contentTypes: string;
35
+ let relationship: string;
36
+ }
@@ -1 +1 @@
1
- export const contentTypesXML: "\n <?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n\n <Types xmlns=\"http://schemas.openxmlformats.org/package/2006/content-types\">\n <Default Extension=\"rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\" />\n <Default Extension=\"jpeg\" ContentType=\"image/jpeg\"/>\n <Default Extension=\"png\" ContentType=\"image/png\"/>\n <Default Extension=\"xml\" ContentType=\"application/xml\"/>\n <Override PartName=\"/_rels/.rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>\n <Override PartName=\"/word/_rels/document.xml.rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>\n <Override PartName=\"/word/_rels/footer1.xml.rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>\n <Override PartName=\"/word/document.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\"/>\n <Override PartName=\"/word/styles.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"/>\n <Override PartName=\"/word/numbering.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\"/>\n <Override PartName=\"/word/theme/theme1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.theme+xml\"/>\n <Override PartName=\"/word/fontTable.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\"/>\n <Override PartName=\"/docProps/core.xml\" ContentType=\"application/vnd.openxmlformats-package.core-properties+xml\"/>\n <Override PartName=\"/word/settings.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\"/>\n <Override PartName=\"/word/webSettings.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml\"/>\n <Override PartName=\"/word/afchunk.mht\" ContentType=\"message/rfc822\"/>\n <Override PartName=\"/word/afchunkheader.mht\" ContentType=\"message/rfc822\"/>\n <Override PartName=\"/word/afchunkfooter.mht\" ContentType=\"message/rfc822\"/>\n </Types>\n";
1
+ export const contentTypesXML: "\n <?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n\n <Types xmlns=\"http://schemas.openxmlformats.org/package/2006/content-types\">\n <Default Extension=\"rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\" />\n <Default Extension=\"jpeg\" ContentType=\"image/jpeg\"/>\n <Default Extension=\"png\" ContentType=\"image/png\"/>\n <Default Extension=\"xml\" ContentType=\"application/xml\"/>\n <Override PartName=\"/_rels/.rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>\n <Override PartName=\"/word/_rels/document.xml.rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>\n <Override PartName=\"/word/_rels/footer1.xml.rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>\n <Override PartName=\"/word/document.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\"/>\n <Override PartName=\"/word/styles.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"/>\n <Override PartName=\"/word/numbering.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\"/>\n <Override PartName=\"/word/theme/theme1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.theme+xml\"/>\n <Override PartName=\"/word/fontTable.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\"/>\n <Override PartName=\"/docProps/core.xml\" ContentType=\"application/vnd.openxmlformats-package.core-properties+xml\"/>\n <Override PartName=\"/word/settings.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\"/>\n <Override PartName=\"/word/webSettings.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml\"/>\n <Override PartName=\"/word/afchunk.mht\" ContentType=\"message/rfc822\"/>\n <Override PartName=\"/word/afchunkheader.mht\" ContentType=\"message/rfc822\"/>\n <Override PartName=\"/word/afchunkfooter.mht\" ContentType=\"message/rfc822\"/>\n </Types>\n";
@@ -1 +1 @@
1
- export function generateCoreXML(title?: string, subject?: string, creator?: string, keywords?: string[], description?: string, lastModifiedBy?: string, revision?: number, createdAt?: Date, modifiedAt?: Date): string;
1
+ export function generateCoreXML(title?: string, subject?: string, creator?: string, keywords?: string[], description?: string, lastModifiedBy?: string, revision?: number, createdAt?: Date, modifiedAt?: Date): string;
@@ -1 +1 @@
1
- export const documentRelsXML: string;
1
+ export const documentRelsXML: string;
@@ -1,4 +1,4 @@
1
- export function generateDocumentTemplate(width: any, height: any, orientation: any, margins: any): string;
2
- export const generateDocumentTemplateHeader: string;
3
- export const generateDocumentTemplateFooter: string;
4
- export const generateDocumentTemplateFooterWithoutPaging: string;
1
+ export function generateDocumentTemplate(width: any, height: any, orientation: any, margins: any): string;
2
+ export const generateDocumentTemplateHeader: string;
3
+ export const generateDocumentTemplateFooter: string;
4
+ export const generateDocumentTemplateFooterWithoutPaging: string;
@@ -1 +1 @@
1
- export const fontTableXML: string;
1
+ export const fontTableXML: string;
@@ -1 +1 @@
1
- export const genericRelsXML: "\n <?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n\n <Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n <Relationship Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/aFChunk\" Target=\"/word/afchunk.mht\" Id=\"htmlChunk\" />\n <Relationship Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/aFChunk\" Target=\"/word/afchunkheader.mht\" Id=\"htmlChunkHeader\" />\n <Relationship Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/aFChunk\" Target=\"/word/afchunkfooter.mht\" Id=\"htmlChunkFooter\" />\n </Relationships>\n";
1
+ export const genericRelsXML: "\n <?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n\n <Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n <Relationship Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/aFChunk\" Target=\"/word/afchunk.mht\" Id=\"htmlChunk\" />\n <Relationship Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/aFChunk\" Target=\"/word/afchunkheader.mht\" Id=\"htmlChunkHeader\" />\n <Relationship Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/aFChunk\" Target=\"/word/afchunkfooter.mht\" Id=\"htmlChunkFooter\" />\n </Relationships>\n";
@@ -1,12 +1,12 @@
1
- export { contentTypesXML } from "./content-types";
2
- export { generateCoreXML } from "./core";
3
- export { documentRelsXML } from "./document-rels";
4
- export { relsXML } from "./rels";
5
- export { generateNumberingXMLTemplate } from "./numbering";
6
- export { generateStylesXML } from "./styles";
7
- export { fontTableXML } from "./font-table";
8
- export { generateThemeXML } from "./theme";
9
- export { settingsXML } from "./settings";
10
- export { webSettingsXML } from "./web-settings";
11
- export { genericRelsXML } from "./generic-rels";
12
- export { generateDocumentTemplate } from "./document.template";
1
+ export { contentTypesXML } from "./content-types";
2
+ export { generateCoreXML } from "./core";
3
+ export { documentRelsXML } from "./document-rels";
4
+ export { relsXML } from "./rels";
5
+ export { generateNumberingXMLTemplate } from "./numbering";
6
+ export { generateStylesXML } from "./styles";
7
+ export { fontTableXML } from "./font-table";
8
+ export { generateThemeXML } from "./theme";
9
+ export { settingsXML } from "./settings";
10
+ export { webSettingsXML } from "./web-settings";
11
+ export { genericRelsXML } from "./generic-rels";
12
+ export { generateDocumentTemplate } from "./document.template";
@@ -1 +1 @@
1
- export function generateNumberingXMLTemplate(): string;
1
+ export function generateNumberingXMLTemplate(): string;
@@ -1 +1 @@
1
- export const relsXML: string;
1
+ export const relsXML: string;
@@ -1 +1 @@
1
- export const settingsXML: string;
1
+ export const settingsXML: string;
@@ -1 +1 @@
1
- export function generateStylesXML(font?: string, fontSize?: number, complexScriptFontSize?: number): string;
1
+ export function generateStylesXML(font?: string, fontSize?: number, complexScriptFontSize?: number): string;
@@ -1 +1 @@
1
- export function generateThemeXML(font?: string): string;
1
+ export function generateThemeXML(font?: string): string;
@@ -1 +1 @@
1
- export const webSettingsXML: string;
1
+ export const webSettingsXML: string;
@@ -1,7 +1,7 @@
1
- export const rgbRegex: RegExp;
2
- export const hslRegex: RegExp;
3
- export const hexRegex: RegExp;
4
- export const hex3Regex: RegExp;
5
- export function rgbToHex(red: any, green: any, blue: any): string;
6
- export function hslToHex(hue: any, saturation: any, luminosity: any): string;
7
- export function hex3ToHex(red: any, green: any, blue: any): string;
1
+ export const rgbRegex: RegExp;
2
+ export const hslRegex: RegExp;
3
+ export const hexRegex: RegExp;
4
+ export const hex3Regex: RegExp;
5
+ export function rgbToHex(red: any, green: any, blue: any): string;
6
+ export function hslToHex(hue: any, saturation: any, luminosity: any): string;
7
+ export function hex3ToHex(red: any, green: any, blue: any): string;
@@ -1,6 +1,6 @@
1
- export class ListStyleBuilder {
2
- constructor(defaults: any);
3
- defaults: any;
4
- getListStyleType(listType: any): any;
5
- getListPrefixSuffix(style: any, lvl: any): string;
6
- }
1
+ export class ListStyleBuilder {
2
+ constructor(defaults: any);
3
+ defaults: any;
4
+ getListStyleType(listType: any): any;
5
+ getListPrefixSuffix(style: any, lvl: any): string;
6
+ }
@@ -1,29 +1,29 @@
1
- export const pixelRegex: RegExp;
2
- export const percentageRegex: RegExp;
3
- export const pointRegex: RegExp;
4
- export const cmRegex: RegExp;
5
- export const inchRegex: RegExp;
6
- export function pixelToEMU(pixelValue: any): number;
7
- export function EMUToPixel(EMUValue: any): number;
8
- export function TWIPToEMU(TWIPValue: any): number;
9
- export function EMUToTWIP(EMUValue: any): number;
10
- export function pointToTWIP(pointValue: any): number;
11
- export function TWIPToPoint(TWIPValue: any): number;
12
- export function pointToHIP(pointValue: any): number;
13
- export function HIPToPoint(HIPValue: any): number;
14
- export function HIPToTWIP(HIPValue: any): number;
15
- export function TWIPToHIP(TWIPValue: any): number;
16
- export function pixelToTWIP(pixelValue: any): number;
17
- export function TWIPToPixel(TWIPValue: any): number;
18
- export function pixelToHIP(pixelValue: any): number;
19
- export function HIPToPixel(HIPValue: any): number;
20
- export function inchToPoint(inchValue: any): number;
21
- export function inchToTWIP(inchValue: any): number;
22
- export function cmToInch(cmValue: any): number;
23
- export function cmToTWIP(cmValue: any): number;
24
- export function pixelToPoint(pixelValue: any): number;
25
- export function pointToPixel(pointValue: any): number;
26
- export function EIPToPoint(EIPValue: any): number;
27
- export function pointToEIP(PointValue: any): number;
28
- export function pixelToEIP(pixelValue: any): number;
29
- export function EIPToPixel(EIPValue: any): number;
1
+ export const pixelRegex: RegExp;
2
+ export const percentageRegex: RegExp;
3
+ export const pointRegex: RegExp;
4
+ export const cmRegex: RegExp;
5
+ export const inchRegex: RegExp;
6
+ export function pixelToEMU(pixelValue: any): number;
7
+ export function EMUToPixel(EMUValue: any): number;
8
+ export function TWIPToEMU(TWIPValue: any): number;
9
+ export function EMUToTWIP(EMUValue: any): number;
10
+ export function pointToTWIP(pointValue: any): number;
11
+ export function TWIPToPoint(TWIPValue: any): number;
12
+ export function pointToHIP(pointValue: any): number;
13
+ export function HIPToPoint(HIPValue: any): number;
14
+ export function HIPToTWIP(HIPValue: any): number;
15
+ export function TWIPToHIP(TWIPValue: any): number;
16
+ export function pixelToTWIP(pixelValue: any): number;
17
+ export function TWIPToPixel(TWIPValue: any): number;
18
+ export function pixelToHIP(pixelValue: any): number;
19
+ export function HIPToPixel(HIPValue: any): number;
20
+ export function inchToPoint(inchValue: any): number;
21
+ export function inchToTWIP(inchValue: any): number;
22
+ export function cmToInch(cmValue: any): number;
23
+ export function cmToTWIP(cmValue: any): number;
24
+ export function pixelToPoint(pixelValue: any): number;
25
+ export function pointToPixel(pointValue: any): number;
26
+ export function EIPToPoint(EIPValue: any): number;
27
+ export function pointToEIP(PointValue: any): number;
28
+ export function pixelToEIP(pixelValue: any): number;
29
+ export function EIPToPixel(EIPValue: any): number;
@@ -1 +1 @@
1
- export function isValidUrl(urlString: any): boolean;
1
+ export function isValidUrl(urlString: any): boolean;
@@ -1 +1 @@
1
- export function vNodeHasChildren(vNode: any): any;
1
+ export function vNodeHasChildren(vNode: any): any;
@@ -1,12 +1,12 @@
1
- export declare const defaultMargins: {
2
- top: number;
3
- right: number;
4
- bottom: number;
5
- left: number;
6
- header: number;
7
- footer: number;
8
- gutter: number;
9
- };
10
- export type Margins = typeof defaultMargins;
11
- export type Orient = 'landscape' | 'portrait';
12
- export declare const documentTemplate: (width: number, height: number, orient: string, margins: Margins) => string;
1
+ export declare const defaultMargins: {
2
+ top: number;
3
+ right: number;
4
+ bottom: number;
5
+ left: number;
6
+ header: number;
7
+ footer: number;
8
+ gutter: number;
9
+ };
10
+ export type Margins = typeof defaultMargins;
11
+ export type Orient = 'landscape' | 'portrait';
12
+ export declare const documentTemplate: (width: number, height: number, orient: string, margins: Margins) => string;
@@ -1,3 +1,3 @@
1
- export * from './documentTemplate';
2
- export * from './mhtDocumentTemplate';
3
- export * from './mhtPartTemplate';
1
+ export * from './documentTemplate';
2
+ export * from './mhtDocumentTemplate';
3
+ export * from './mhtPartTemplate';
@@ -1 +1 @@
1
- export declare const mhtDocumentTemplate: (htmlSource: string, contentParts: string) => string;
1
+ export declare const mhtDocumentTemplate: (htmlSource: string, contentParts: string) => string;
@@ -1 +1 @@
1
- export declare const mhtPartTemplate: (contentType: string, contentEncoding: string, contentLocation: string, encodedContent: string) => string;
1
+ export declare const mhtPartTemplate: (contentType: string, contentEncoding: string, contentLocation: string, encodedContent: string) => string;
@@ -1 +1 @@
1
- export declare function getMHTdocument(htmlSource: string): string;
1
+ export declare function getMHTdocument(htmlSource: string): string;
@@ -1,6 +1,6 @@
1
- export declare enum AuthenticationModes {
2
- Forms = "Forms",
3
- UAEPass = "UAEPass",
4
- WindowsAD = "WindowsAD",
5
- AzureAD = "AzureAD"
6
- }
1
+ export declare enum AuthenticationModes {
2
+ Forms = "Forms",
3
+ UAEPass = "UAEPass",
4
+ WindowsAD = "WindowsAD",
5
+ AzureAD = "AzureAD"
6
+ }
@@ -1,3 +1,3 @@
1
- export * from './authentication';
2
- export * from './models';
3
- export * from './services';
1
+ export * from './authentication';
2
+ export * from './models';
3
+ export * from './services';
@@ -1,6 +1,6 @@
1
- export declare class User {
2
- token_type: string;
3
- access_token: string;
4
- profile: any;
5
- expires_at: any;
6
- }
1
+ export declare class User {
2
+ token_type: string;
3
+ access_token: string;
4
+ profile: any;
5
+ expires_at: any;
6
+ }
@@ -1,4 +1,4 @@
1
- export declare class AreaModel {
2
- permissionSetID: number;
3
- areaUrl: string;
4
- }
1
+ export declare class AreaModel {
2
+ permissionSetID: number;
3
+ areaUrl: string;
4
+ }
@@ -1,5 +1,5 @@
1
- export declare class ErrorModel {
2
- field: string;
3
- controlName: string;
4
- message: string;
5
- }
1
+ export declare class ErrorModel {
2
+ field: string;
3
+ controlName: string;
4
+ message: string;
5
+ }
@@ -1,4 +1,4 @@
1
- export * from './area-model';
2
- export * from './error-model';
3
- export * from './request-options-model';
4
- export * from './word-document-model';
1
+ export * from './area-model';
2
+ export * from './error-model';
3
+ export * from './request-options-model';
4
+ export * from './word-document-model';
@@ -1,11 +1,11 @@
1
- import { FormGroup } from "@angular/forms";
2
- export declare class RequestOptionsModel {
3
- disableSuccessNotification: boolean;
4
- disableBlockUI: boolean;
5
- disableErrorHandler: boolean;
6
- customSuccessMessage: string;
7
- customErrorMessage: string;
8
- responseType: any;
9
- formGroup: FormGroup;
10
- castResponsetoClass: boolean;
11
- }
1
+ import { FormGroup } from "@angular/forms";
2
+ export declare class RequestOptionsModel {
3
+ disableSuccessNotification: boolean;
4
+ disableBlockUI: boolean;
5
+ disableErrorHandler: boolean;
6
+ customSuccessMessage: string;
7
+ customErrorMessage: string;
8
+ responseType: any;
9
+ formGroup: FormGroup;
10
+ castResponsetoClass: boolean;
11
+ }
@@ -1,16 +1,16 @@
1
- export declare class WordDocumentModel {
2
- header: string;
3
- footer: string;
4
- body: string;
5
- options: DocumentOptionsModel;
6
- }
7
- export declare class DocumentOptionsModel {
8
- pageHeight: number;
9
- pageWidth: number;
10
- top: number;
11
- bottom: number;
12
- left: number;
13
- right: number;
14
- isLandscape: boolean;
15
- showPaging: boolean;
16
- }
1
+ export declare class WordDocumentModel {
2
+ header: string;
3
+ footer: string;
4
+ body: string;
5
+ options: DocumentOptionsModel;
6
+ }
7
+ export declare class DocumentOptionsModel {
8
+ pageHeight: number;
9
+ pageWidth: number;
10
+ top: number;
11
+ bottom: number;
12
+ left: number;
13
+ right: number;
14
+ isLandscape: boolean;
15
+ showPaging: boolean;
16
+ }
@@ -1,14 +1,14 @@
1
- import { ConfigurationService } from ".";
2
- import * as i0 from "@angular/core";
3
- export declare class AppearanceConfigurationService {
4
- private configService;
5
- constructor(configService: ConfigurationService);
6
- getLayoutTheme(): any;
7
- getFooterText(): any;
8
- getPageTitle(): any;
9
- getFavIcon(): any;
10
- getCustomStyles(): any;
11
- getLogo(): any;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<AppearanceConfigurationService, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<AppearanceConfigurationService>;
14
- }
1
+ import { ConfigurationService } from ".";
2
+ import * as i0 from "@angular/core";
3
+ export declare class AppearanceConfigurationService {
4
+ private configService;
5
+ constructor(configService: ConfigurationService);
6
+ getLayoutTheme(): any;
7
+ getFooterText(): any;
8
+ getPageTitle(): any;
9
+ getFavIcon(): any;
10
+ getCustomStyles(): any;
11
+ getLogo(): any;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppearanceConfigurationService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppearanceConfigurationService>;
14
+ }
@@ -1,10 +1,10 @@
1
- import { HttpClient } from "@angular/common/http";
2
- import * as i0 from "@angular/core";
3
- export declare class ConfigurationService {
4
- private httpClient;
5
- static JsonData: any[];
6
- constructor(httpClient: HttpClient);
7
- getConfigurationValue(key: string): any;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationService, never>;
9
- static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationService>;
10
- }
1
+ import { HttpClient } from "@angular/common/http";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ConfigurationService {
4
+ private httpClient;
5
+ static JsonData: any[];
6
+ constructor(httpClient: HttpClient);
7
+ getConfigurationValue(key: string): any;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationService>;
10
+ }
@@ -1,23 +1,23 @@
1
- import { HttpErrorResponse } from '@angular/common/http';
2
- import { FormGroup } from '@angular/forms';
3
- import { NgBlockUI } from 'ng-block-ui';
4
- import { RequestOptionsModel } from '../models';
5
- import { UtilityService } from '.';
6
- import * as i0 from "@angular/core";
7
- export declare class ControlValidationService {
8
- private utilityService;
9
- private requestOptions;
10
- constructor(utilityService: UtilityService);
11
- isCreatedBefor: boolean;
12
- blockUI: NgBlockUI;
13
- showGlobalError(errorMessage?: string | string[], formId?: string, deleteOld?: boolean): void;
14
- removeGlobalError(): void;
15
- showInputErro(errors: any): void;
16
- removeElementsByClass(className: any): void;
17
- renderServerErrors(form: FormGroup, err: HttpErrorResponse, requestOptions: RequestOptionsModel, formId?: string): void;
18
- private hasControlName;
19
- private setFieldError;
20
- private getControlFormNameByFieldName;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<ControlValidationService, never>;
22
- static ɵprov: i0.ɵɵInjectableDeclaration<ControlValidationService>;
23
- }
1
+ import { HttpErrorResponse } from '@angular/common/http';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { NgBlockUI } from 'ng-block-ui';
4
+ import { RequestOptionsModel } from '../models';
5
+ import { UtilityService } from '.';
6
+ import * as i0 from "@angular/core";
7
+ export declare class ControlValidationService {
8
+ private utilityService;
9
+ private requestOptions;
10
+ constructor(utilityService: UtilityService);
11
+ isCreatedBefor: boolean;
12
+ blockUI: NgBlockUI;
13
+ showGlobalError(errorMessage?: string | string[], formId?: string, deleteOld?: boolean): void;
14
+ removeGlobalError(): void;
15
+ showInputErro(errors: any): void;
16
+ removeElementsByClass(className: any): void;
17
+ renderServerErrors(form: FormGroup, err: HttpErrorResponse, requestOptions: RequestOptionsModel, formId?: string): void;
18
+ private hasControlName;
19
+ private setFieldError;
20
+ private getControlFormNameByFieldName;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<ControlValidationService, never>;
22
+ static ɵprov: i0.ɵɵInjectableDeclaration<ControlValidationService>;
23
+ }
@@ -1,25 +1,25 @@
1
- import { AreaModel } from '../models';
2
- import * as i0 from "@angular/core";
3
- export declare class EnvironmentService {
4
- static areaList: AreaModel[];
5
- static AreaList: AreaModel[];
6
- getEnvironmentObject(): any;
7
- getBaseUrl(): any;
8
- getApiUrl(): any;
9
- getProductionMode(): boolean;
10
- getDefaultLanguage(): string;
11
- getIdentityServerUrl(): any;
12
- getIsIdentityServerExternal(): string;
13
- getIsIdentityServerClientId(): string;
14
- getIsIdentityServerClientSecret(): string;
15
- getBBSFAuthenticationMode(): string;
16
- getUAEPassBaseUrl(): string;
17
- getUAEPassClientID(): string;
18
- getUAEPassRedirectUrl(): string;
19
- getUAEPassAuthorizationEndPoint(): string;
20
- getUAEPassRedirectLogoutUrl(): string;
21
- getUAEPassLogoutEndPoint(): string;
22
- getIsEnableWindowsAuthentication(): boolean;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<EnvironmentService, never>;
24
- static ɵprov: i0.ɵɵInjectableDeclaration<EnvironmentService>;
25
- }
1
+ import { AreaModel } from '../models';
2
+ import * as i0 from "@angular/core";
3
+ export declare class EnvironmentService {
4
+ static areaList: AreaModel[];
5
+ static AreaList: AreaModel[];
6
+ getEnvironmentObject(): any;
7
+ getBaseUrl(): any;
8
+ getApiUrl(): any;
9
+ getProductionMode(): boolean;
10
+ getDefaultLanguage(): string;
11
+ getIdentityServerUrl(): any;
12
+ getIsIdentityServerExternal(): string;
13
+ getIsIdentityServerClientId(): string;
14
+ getIsIdentityServerClientSecret(): string;
15
+ getBBSFAuthenticationMode(): string;
16
+ getUAEPassBaseUrl(): string;
17
+ getUAEPassClientID(): string;
18
+ getUAEPassRedirectUrl(): string;
19
+ getUAEPassAuthorizationEndPoint(): string;
20
+ getUAEPassRedirectLogoutUrl(): string;
21
+ getUAEPassLogoutEndPoint(): string;
22
+ getIsEnableWindowsAuthentication(): boolean;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<EnvironmentService, never>;
24
+ static ɵprov: i0.ɵɵInjectableDeclaration<EnvironmentService>;
25
+ }
@@ -1,11 +1,11 @@
1
- export * from './appearance-configuration.service';
2
- export * from './configuration.service';
3
- export * from './control-validation.service';
4
- export * from './environment.service';
5
- export * from './master-layout.service';
6
- export * from './request-handler.service';
7
- export * from './styles-bundle.service';
8
- export * from './translate.service';
9
- export * from './translation-resolver.service';
10
- export * from './utility.service';
11
- export * from './word-document.service';
1
+ export * from './appearance-configuration.service';
2
+ export * from './configuration.service';
3
+ export * from './control-validation.service';
4
+ export * from './environment.service';
5
+ export * from './master-layout.service';
6
+ export * from './request-handler.service';
7
+ export * from './styles-bundle.service';
8
+ export * from './translate.service';
9
+ export * from './translation-resolver.service';
10
+ export * from './utility.service';
11
+ export * from './word-document.service';