@seniorsistemas/angular-components 14.9.12 → 14.10.0

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 (286) hide show
  1. package/angular-components.module.d.ts +2 -1
  2. package/bundles/seniorsistemas-angular-components.umd.js +1840 -24
  3. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  4. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  5. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  6. package/components/code-editor/core/facades/core-facade.d.ts +30 -0
  7. package/components/code-editor/core/facades/linter-facade.d.ts +4 -0
  8. package/components/code-editor/core/models/enums/marker-severity.d.ts +5 -0
  9. package/components/code-editor/core/models/index.d.ts +2 -0
  10. package/components/code-editor/core/models/interfaces/marker.d.ts +7 -0
  11. package/components/code-editor/core/use-cases/core-linters.d.ts +6 -0
  12. package/components/code-editor/index.d.ts +3 -0
  13. package/components/code-editor/infra/cores/codemirror-6/codemirror-6-core.d.ts +25 -0
  14. package/components/code-editor/infra/cores/codemirror-6/languages/editor-languages.d.ts +6 -0
  15. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-empty-state.d.ts +10 -0
  16. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-loading-state.d.ts +10 -0
  17. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper-style.d.ts +6 -0
  18. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper.d.ts +15 -0
  19. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/index.d.ts +3 -0
  20. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-style.d.ts +6 -0
  21. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.d.ts +6 -0
  22. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.service.d.ts +8 -0
  23. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/base-configs.d.ts +2 -0
  24. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/grammar.d.ts +2 -0
  25. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/on-paste-completion-items-updater/models/index.d.ts +1 -0
  26. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/on-paste-completion-items-updater/models/interfaces/request-extra-info.d.ts +4 -0
  27. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/on-paste-completion-items-updater/on-paste-completion-items-updater.d.ts +6 -0
  28. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/completion-types.d.ts +8 -0
  29. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/enum-type-order.d.ts +4 -0
  30. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/keywords.d.ts +10 -0
  31. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/meta-type.d.ts +17 -0
  32. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/request-types.d.ts +6 -0
  33. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/index.d.ts +19 -0
  34. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/completion-Item.d.ts +6 -0
  35. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/facade-metadata-name.d.ts +5 -0
  36. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/fields-order-by.d.ts +5 -0
  37. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/get-facade-metadata-by-path.d.ts +9 -0
  38. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-context-metadata-by-id.d.ts +9 -0
  39. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-expression-metadata.d.ts +11 -0
  40. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-facade-metadata-names.d.ts +10 -0
  41. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-expression-metadata.d.ts +10 -0
  42. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-context-metadata.d.ts +4 -0
  43. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-facade-metadata.d.ts +8 -0
  44. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-field-metadata.d.ts +7 -0
  45. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-page-request.d.ts +6 -0
  46. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.d.ts +12 -0
  47. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/tax-calculation-configs.d.ts +4 -0
  48. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation-language-configs.d.ts +7 -0
  49. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation.language.d.ts +2 -0
  50. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-language-configs.d.ts +6 -0
  51. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.d.ts +8 -0
  52. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/index.d.ts +3 -0
  53. package/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/update-core-completion-items.d.ts +2 -0
  54. package/components/code-editor/infra/cores/codemirror-6/models/index.d.ts +2 -0
  55. package/components/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.d.ts +1 -0
  56. package/components/code-editor/infra/cores/codemirror-6/models/types/editor-theme.d.ts +3 -0
  57. package/components/code-editor/infra/cores/codemirror-6/themes/editor-themes.d.ts +6 -0
  58. package/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/autocomplete-tooltip.d.ts +6 -0
  59. package/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/font-style.d.ts +6 -0
  60. package/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/line-counter.d.ts +6 -0
  61. package/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/scrollbars.d.ts +6 -0
  62. package/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-highlight-style.d.ts +2 -0
  63. package/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-style.d.ts +6 -0
  64. package/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-theme.d.ts +2 -0
  65. package/components/code-editor/infra/cores/codemirror-6/utils/convert-markers-to-diagnostics.d.ts +3 -0
  66. package/components/code-editor/infra/cores/codemirror-6/utils/index.d.ts +2 -0
  67. package/components/code-editor/infra/cores/codemirror-6/utils/is-current-position-inside-string.d.ts +1 -0
  68. package/components/code-editor/infra/linters/tax-calculation/models/index.d.ts +1 -0
  69. package/components/code-editor/infra/linters/tax-calculation/models/interfaces/validation.d.ts +4 -0
  70. package/components/code-editor/infra/linters/tax-calculation/tax-calculation-linter.d.ts +11 -0
  71. package/components/code-editor/infra/linters/tax-calculation/validation-compositors/index.d.ts +2 -0
  72. package/components/code-editor/infra/linters/tax-calculation/validation-compositors/validation-composite.d.ts +6 -0
  73. package/components/code-editor/infra/linters/tax-calculation/validation-compositors/validation-workers-compositor/validations-workers-composite.d.ts +6 -0
  74. package/components/code-editor/infra/utils/custom-http-client/custom-http-client.d.ts +34 -0
  75. package/components/code-editor/infra/utils/custom-http-client/json-response-formatters/format-blob-response.d.ts +6 -0
  76. package/components/code-editor/infra/utils/custom-http-client/json-response-formatters/format-json-response.d.ts +6 -0
  77. package/components/code-editor/infra/utils/custom-http-client/json-response-formatters/index.d.ts +2 -0
  78. package/components/code-editor/infra/utils/custom-translations/custom-translations-service.d.ts +25 -0
  79. package/components/code-editor/infra/utils/custom-translations/custom-translations.module.d.ts +12 -0
  80. package/components/code-editor/infra/utils/custom-translations/index.d.ts +2 -0
  81. package/components/code-editor/infra/utils/custom-translations/models/index.d.ts +1 -0
  82. package/components/code-editor/infra/utils/custom-translations/models/interfaces/translations.d.ts +5 -0
  83. package/components/code-editor/infra/utils/index.d.ts +3 -0
  84. package/components/code-editor/infra/utils/regex-index-of.d.ts +8 -0
  85. package/components/code-editor/models/enums/languages.d.ts +3 -0
  86. package/components/code-editor/models/enums/themes.d.ts +3 -0
  87. package/components/code-editor/models/index.d.ts +3 -0
  88. package/components/code-editor/models/interfaces/editor-options.d.ts +5 -0
  89. package/components/code-editor/presentation/code-editor-component.d.ts +21 -0
  90. package/components/code-editor/presentation/code-editor-module.d.ts +2 -0
  91. package/components/dynamic-form/configurations/fields/chips-field.d.ts +2 -0
  92. package/components/dynamic-form/configurations/form-field.d.ts +1 -1
  93. package/esm2015/angular-components.module.js +4 -3
  94. package/esm2015/components/code-editor/core/facades/core-facade.js +80 -0
  95. package/esm2015/components/code-editor/core/facades/linter-facade.js +1 -0
  96. package/esm2015/components/code-editor/core/models/enums/marker-severity.js +7 -0
  97. package/esm2015/components/code-editor/core/models/index.js +3 -0
  98. package/esm2015/components/code-editor/core/models/interfaces/marker.js +1 -0
  99. package/esm2015/components/code-editor/core/use-cases/core-linters.js +12 -0
  100. package/esm2015/components/code-editor/index.js +5 -0
  101. package/esm2015/components/code-editor/infra/cores/codemirror-6/codemirror-6-core.js +94 -0
  102. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/editor-languages.js +12 -0
  103. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-empty-state.js +29 -0
  104. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-loading-state.js +29 -0
  105. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper-style.js +17 -0
  106. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper.js +75 -0
  107. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/index.js +4 -0
  108. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-style.js +35 -0
  109. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.js +342 -0
  110. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.service.js +34 -0
  111. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/base-configs.js +18 -0
  112. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/grammar.js +37 -0
  113. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/on-paste-completion-items-updater/models/index.js +1 -0
  114. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/on-paste-completion-items-updater/models/interfaces/request-extra-info.js +1 -0
  115. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/on-paste-completion-items-updater/on-paste-completion-items-updater.js +164 -0
  116. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/completion-types.js +10 -0
  117. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/enum-type-order.js +8 -0
  118. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/keywords.js +12 -0
  119. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/meta-type.js +34 -0
  120. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/request-types.js +8 -0
  121. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/index.js +7 -0
  122. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/completion-Item.js +1 -0
  123. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/facade-metadata-name.js +1 -0
  124. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/fields-order-by.js +1 -0
  125. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/get-facade-metadata-by-path.js +1 -0
  126. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-context-metadata-by-id.js +1 -0
  127. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-expression-metadata.js +1 -0
  128. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-facade-metadata-names.js +1 -0
  129. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-expression-metadata.js +1 -0
  130. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-context-metadata.js +1 -0
  131. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-facade-metadata.js +1 -0
  132. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-field-metadata.js +1 -0
  133. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-page-request.js +1 -0
  134. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.js +1 -0
  135. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/tax-calculation-configs.js +1 -0
  136. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation-language-configs.js +10 -0
  137. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation.language.js +11 -0
  138. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-language-configs.js +15 -0
  139. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.js +16 -0
  140. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/index.js +4 -0
  141. package/esm2015/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/update-core-completion-items.js +30 -0
  142. package/esm2015/components/code-editor/infra/cores/codemirror-6/models/index.js +1 -0
  143. package/esm2015/components/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.js +1 -0
  144. package/esm2015/components/code-editor/infra/cores/codemirror-6/models/types/editor-theme.js +1 -0
  145. package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/editor-themes.js +12 -0
  146. package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/autocomplete-tooltip.js +61 -0
  147. package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/font-style.js +29 -0
  148. package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/line-counter.js +25 -0
  149. package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/scrollbars.js +18 -0
  150. package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-highlight-style.js +16 -0
  151. package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-style.js +13 -0
  152. package/esm2015/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-theme.js +22 -0
  153. package/esm2015/components/code-editor/infra/cores/codemirror-6/utils/convert-markers-to-diagnostics.js +18 -0
  154. package/esm2015/components/code-editor/infra/cores/codemirror-6/utils/index.js +3 -0
  155. package/esm2015/components/code-editor/infra/cores/codemirror-6/utils/is-current-position-inside-string.js +6 -0
  156. package/esm2015/components/code-editor/infra/linters/tax-calculation/models/index.js +1 -0
  157. package/esm2015/components/code-editor/infra/linters/tax-calculation/models/interfaces/validation.js +1 -0
  158. package/esm2015/components/code-editor/infra/linters/tax-calculation/tax-calculation-linter.js +19 -0
  159. package/esm2015/components/code-editor/infra/linters/tax-calculation/validation-compositors/index.js +3 -0
  160. package/esm2015/components/code-editor/infra/linters/tax-calculation/validation-compositors/validation-composite.js +16 -0
  161. package/esm2015/components/code-editor/infra/linters/tax-calculation/validation-compositors/validation-workers-compositor/validations-workers-composite.js +25 -0
  162. package/esm2015/components/code-editor/infra/utils/custom-http-client/custom-http-client.js +80 -0
  163. package/esm2015/components/code-editor/infra/utils/custom-http-client/json-response-formatters/format-blob-response.js +13 -0
  164. package/esm2015/components/code-editor/infra/utils/custom-http-client/json-response-formatters/format-json-response.js +12 -0
  165. package/esm2015/components/code-editor/infra/utils/custom-http-client/json-response-formatters/index.js +3 -0
  166. package/esm2015/components/code-editor/infra/utils/custom-translations/custom-translations-service.js +37 -0
  167. package/esm2015/components/code-editor/infra/utils/custom-translations/custom-translations.module.js +30 -0
  168. package/esm2015/components/code-editor/infra/utils/custom-translations/index.js +3 -0
  169. package/esm2015/components/code-editor/infra/utils/custom-translations/models/index.js +1 -0
  170. package/esm2015/components/code-editor/infra/utils/custom-translations/models/interfaces/translations.js +1 -0
  171. package/esm2015/components/code-editor/infra/utils/index.js +4 -0
  172. package/esm2015/components/code-editor/infra/utils/regex-index-of.js +12 -0
  173. package/esm2015/components/code-editor/models/enums/languages.js +5 -0
  174. package/esm2015/components/code-editor/models/enums/themes.js +5 -0
  175. package/esm2015/components/code-editor/models/index.js +4 -0
  176. package/esm2015/components/code-editor/models/interfaces/editor-options.js +1 -0
  177. package/esm2015/components/code-editor/presentation/code-editor-component.js +90 -0
  178. package/esm2015/components/code-editor/presentation/code-editor-module.js +27 -0
  179. package/esm2015/components/dynamic-form/components/fields/chips/chips-field.component.js +2 -2
  180. package/esm2015/components/dynamic-form/components/fields/select/select-field.component.js +2 -2
  181. package/esm2015/components/dynamic-form/configurations/fields/chips-field.js +2 -1
  182. package/esm2015/components/dynamic-form/configurations/form-field.js +1 -1
  183. package/esm2015/components/table/table-column/table-columns.component.js +4 -3
  184. package/esm2015/public-api.js +2 -1
  185. package/esm2015/seniorsistemas-angular-components.js +5 -1
  186. package/esm5/angular-components.module.js +4 -3
  187. package/esm5/components/code-editor/core/facades/core-facade.js +91 -0
  188. package/esm5/components/code-editor/core/facades/linter-facade.js +1 -0
  189. package/esm5/components/code-editor/core/models/enums/marker-severity.js +7 -0
  190. package/esm5/components/code-editor/core/models/index.js +3 -0
  191. package/esm5/components/code-editor/core/models/interfaces/marker.js +1 -0
  192. package/esm5/components/code-editor/core/use-cases/core-linters.js +16 -0
  193. package/esm5/components/code-editor/index.js +5 -0
  194. package/esm5/components/code-editor/infra/cores/codemirror-6/codemirror-6-core.js +106 -0
  195. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/editor-languages.js +16 -0
  196. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-empty-state.js +29 -0
  197. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-loading-state.js +29 -0
  198. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper-style.js +17 -0
  199. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper.js +68 -0
  200. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/index.js +4 -0
  201. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-style.js +35 -0
  202. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.js +356 -0
  203. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.service.js +46 -0
  204. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/base-configs.js +19 -0
  205. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/grammar.js +2 -0
  206. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/on-paste-completion-items-updater/models/index.js +1 -0
  207. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/on-paste-completion-items-updater/models/interfaces/request-extra-info.js +1 -0
  208. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/on-paste-completion-items-updater/on-paste-completion-items-updater.js +191 -0
  209. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/completion-types.js +10 -0
  210. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/enum-type-order.js +8 -0
  211. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/keywords.js +12 -0
  212. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/meta-type.js +34 -0
  213. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/request-types.js +8 -0
  214. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/index.js +7 -0
  215. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/completion-Item.js +1 -0
  216. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/facade-metadata-name.js +1 -0
  217. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/fields-order-by.js +1 -0
  218. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/get-facade-metadata-by-path.js +1 -0
  219. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-context-metadata-by-id.js +1 -0
  220. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-expression-metadata.js +1 -0
  221. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-facade-metadata-names.js +1 -0
  222. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-expression-metadata.js +1 -0
  223. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-context-metadata.js +1 -0
  224. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-facade-metadata.js +1 -0
  225. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-field-metadata.js +1 -0
  226. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-page-request.js +1 -0
  227. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.js +1 -0
  228. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/tax-calculation-configs.js +1 -0
  229. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation-language-configs.js +14 -0
  230. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation.language.js +11 -0
  231. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-language-configs.js +15 -0
  232. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.js +27 -0
  233. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/index.js +4 -0
  234. package/esm5/components/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/update-core-completion-items.js +34 -0
  235. package/esm5/components/code-editor/infra/cores/codemirror-6/models/index.js +1 -0
  236. package/esm5/components/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.js +1 -0
  237. package/esm5/components/code-editor/infra/cores/codemirror-6/models/types/editor-theme.js +1 -0
  238. package/esm5/components/code-editor/infra/cores/codemirror-6/themes/editor-themes.js +16 -0
  239. package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/autocomplete-tooltip.js +61 -0
  240. package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/font-style.js +30 -0
  241. package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/line-counter.js +25 -0
  242. package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/scrollbars.js +18 -0
  243. package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-highlight-style.js +16 -0
  244. package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-style.js +13 -0
  245. package/esm5/components/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-theme.js +22 -0
  246. package/esm5/components/code-editor/infra/cores/codemirror-6/utils/convert-markers-to-diagnostics.js +18 -0
  247. package/esm5/components/code-editor/infra/cores/codemirror-6/utils/index.js +3 -0
  248. package/esm5/components/code-editor/infra/cores/codemirror-6/utils/is-current-position-inside-string.js +6 -0
  249. package/esm5/components/code-editor/infra/linters/tax-calculation/models/index.js +1 -0
  250. package/esm5/components/code-editor/infra/linters/tax-calculation/models/interfaces/validation.js +1 -0
  251. package/esm5/components/code-editor/infra/linters/tax-calculation/tax-calculation-linter.js +21 -0
  252. package/esm5/components/code-editor/infra/linters/tax-calculation/validation-compositors/index.js +3 -0
  253. package/esm5/components/code-editor/infra/linters/tax-calculation/validation-compositors/validation-composite.js +49 -0
  254. package/esm5/components/code-editor/infra/linters/tax-calculation/validation-compositors/validation-workers-compositor/validations-workers-composite.js +42 -0
  255. package/esm5/components/code-editor/infra/utils/custom-http-client/custom-http-client.js +126 -0
  256. package/esm5/components/code-editor/infra/utils/custom-http-client/json-response-formatters/format-blob-response.js +21 -0
  257. package/esm5/components/code-editor/infra/utils/custom-http-client/json-response-formatters/format-json-response.js +14 -0
  258. package/esm5/components/code-editor/infra/utils/custom-http-client/json-response-formatters/index.js +3 -0
  259. package/esm5/components/code-editor/infra/utils/custom-translations/custom-translations-service.js +41 -0
  260. package/esm5/components/code-editor/infra/utils/custom-translations/custom-translations.module.js +31 -0
  261. package/esm5/components/code-editor/infra/utils/custom-translations/index.js +3 -0
  262. package/esm5/components/code-editor/infra/utils/custom-translations/models/index.js +1 -0
  263. package/esm5/components/code-editor/infra/utils/custom-translations/models/interfaces/translations.js +1 -0
  264. package/esm5/components/code-editor/infra/utils/index.js +4 -0
  265. package/esm5/components/code-editor/infra/utils/regex-index-of.js +12 -0
  266. package/esm5/components/code-editor/models/enums/languages.js +5 -0
  267. package/esm5/components/code-editor/models/enums/themes.js +5 -0
  268. package/esm5/components/code-editor/models/index.js +4 -0
  269. package/esm5/components/code-editor/models/interfaces/editor-options.js +1 -0
  270. package/esm5/components/code-editor/presentation/code-editor-component.js +100 -0
  271. package/esm5/components/code-editor/presentation/code-editor-module.js +30 -0
  272. package/esm5/components/dynamic-form/components/fields/chips/chips-field.component.js +2 -2
  273. package/esm5/components/dynamic-form/components/fields/select/select-field.component.js +2 -2
  274. package/esm5/components/dynamic-form/configurations/fields/chips-field.js +2 -1
  275. package/esm5/components/dynamic-form/configurations/form-field.js +1 -1
  276. package/esm5/components/table/table-column/table-columns.component.js +4 -3
  277. package/esm5/public-api.js +2 -1
  278. package/esm5/seniorsistemas-angular-components.js +5 -1
  279. package/fesm2015/seniorsistemas-angular-components.js +1682 -42
  280. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  281. package/fesm5/seniorsistemas-angular-components.js +1861 -43
  282. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  283. package/package.json +11 -2
  284. package/public-api.d.ts +1 -0
  285. package/seniorsistemas-angular-components.d.ts +4 -0
  286. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -2,6 +2,10 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public-api';
5
+ export { CoreFacade as ɵbl } from './components/code-editor/core/facades/core-facade';
6
+ export { CodeMirror6Core as ɵbm } from './components/code-editor/infra/cores/codemirror-6/codemirror-6-core';
7
+ export { CustomTranslationsModule as ɵbj } from './components/code-editor/infra/utils';
8
+ export { CodeEditorComponent as ɵbk } from './components/code-editor/presentation/code-editor-component';
5
9
  export { AutocompleteFieldComponent as ɵg } from './components/dynamic-form/components/fields/autocomplete/autocomplete-field.component';
6
10
  export { BaseFieldComponent as ɵl } from './components/dynamic-form/components/fields/base-field-component';
7
11
  export { BignumberFieldComponent as ɵs } from './components/dynamic-form/components/fields/bignumber/number-field.component';
@@ -36,4 +40,4 @@ export { StructureModule as ɵbb } from './components/structure/structure.module
36
40
  export { TableColumnsComponent as ɵe } from './components/table/table-column/table-columns.component';
37
41
  export { ThumbnailService as ɵbg } from './components/thumbnail/thumbnail.service';
38
42
  export { TokenListModule as ɵd } from './components/token-list';
39
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VuaW9yc2lzdGVtYXMtYW5ndWxhci1jb21wb25lbnRzLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbInNlbmlvcnNpc3RlbWFzLWFuZ3VsYXItY29tcG9uZW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDO0FBRTdCLE9BQU8sRUFBQywwQkFBMEIsSUFBSSxFQUFFLEVBQUMsTUFBTSx1RkFBdUYsQ0FBQztBQUN2SSxPQUFPLEVBQUMsa0JBQWtCLElBQUksRUFBRSxFQUFDLE1BQU0sa0VBQWtFLENBQUM7QUFDMUcsT0FBTyxFQUFDLHVCQUF1QixJQUFJLEVBQUUsRUFBQyxNQUFNLDhFQUE4RSxDQUFDO0FBQzNILE9BQU8sRUFBQyxxQkFBcUIsSUFBSSxFQUFFLEVBQUMsTUFBTSw2RUFBNkUsQ0FBQztBQUN4SCxPQUFPLEVBQUMsc0JBQXNCLElBQUksRUFBRSxFQUFDLE1BQU0sK0VBQStFLENBQUM7QUFDM0gsT0FBTyxFQUFDLG1CQUFtQixJQUFJLEVBQUUsRUFBQyxNQUFNLHlFQUF5RSxDQUFDO0FBQ2xILE9BQU8sRUFBQyxzQkFBc0IsSUFBSSxFQUFFLEVBQUMsTUFBTSwrRUFBK0UsQ0FBQztBQUMzSCxPQUFPLEVBQUMsbUJBQW1CLElBQUksRUFBRSxFQUFDLE1BQU0sK0VBQStFLENBQUM7QUFDeEgsT0FBTyxFQUFDLG9CQUFvQixJQUFJLEVBQUUsRUFBQyxNQUFNLDJFQUEyRSxDQUFDO0FBQ3JILE9BQU8sRUFBQyxvQkFBb0IsSUFBSSxFQUFFLEVBQUMsTUFBTSwyRUFBMkUsQ0FBQztBQUNySCxPQUFPLEVBQUMsb0JBQW9CLElBQUksRUFBRSxFQUFDLE1BQU0sdUZBQXVGLENBQUM7QUFDakksT0FBTyxFQUFDLG9CQUFvQixJQUFJLEVBQUUsRUFBQyxNQUFNLDJFQUEyRSxDQUFDO0FBQ3JILE9BQU8sRUFBQyxzQkFBc0IsSUFBSSxFQUFFLEVBQUMsTUFBTSxpRkFBaUYsQ0FBQztBQUM3SCxPQUFPLEVBQUMsa0JBQWtCLElBQUksRUFBRSxFQUFDLE1BQU0sdUVBQXVFLENBQUM7QUFDL0csT0FBTyxFQUFDLFlBQVksSUFBSSxFQUFFLEVBQUMsTUFBTSw2REFBNkQsQ0FBQztBQUMvRixPQUFPLEVBQUMsaUJBQWlCLElBQUksRUFBRSxFQUFDLE1BQU0sNEVBQTRFLENBQUM7QUFDbkgsT0FBTyxFQUFDLGdCQUFnQixJQUFJLEVBQUUsRUFBQyxNQUFNLDBFQUEwRSxDQUFDO0FBQ2hILE9BQU8sRUFBQyxZQUFZLElBQUksR0FBRyxFQUEwQixNQUFNLCtEQUErRCxDQUFDO0FBQzNILE9BQU8sRUFBQyxxQkFBcUIsSUFBSSxFQUFFLEVBQUMsTUFBTSxtREFBbUQsQ0FBQztBQUM5RixPQUFPLEVBQUMsb0JBQW9CLElBQUksRUFBRSxFQUFDLE1BQU0sa0RBQWtELENBQUM7QUFDNUYsT0FBTyxFQUFDLHVCQUF1QixJQUFJLEdBQUcsRUFBQyxNQUFNLHdEQUF3RCxDQUFDO0FBQ3RHLE9BQU8sRUFBQyxvQkFBb0IsSUFBSSxHQUFHLEVBQUMsTUFBTSxxREFBcUQsQ0FBQztBQUNoRyxPQUFPLEVBQUMsY0FBYyxJQUFJLEVBQUUsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBQzVELE9BQU8sRUFBQyxpQkFBaUIsSUFBSSxHQUFHLEVBQUMsTUFBTSw0Q0FBNEMsQ0FBQztBQUNwRixPQUFPLEVBQUMsbUJBQW1CLElBQUksR0FBRyxFQUFDLE1BQU0sNkJBQTZCLENBQUM7QUFDdkUsT0FBTyxFQUFDLDRCQUE0QixJQUFJLEVBQUUsRUFBQyxNQUFNLDJEQUEyRCxDQUFDO0FBQzdHLE9BQU8sRUFBQyxzQkFBc0IsSUFBSSxFQUFFLEVBQUMsTUFBTSxvREFBb0QsQ0FBQztBQUNoRyxPQUFPLEVBQUMsMkJBQTJCLElBQUksRUFBRSxFQUFDLE1BQU0sMERBQTBELENBQUM7QUFDM0csT0FBTyxFQUFDLGVBQWUsSUFBSSxHQUFHLEVBQUMsTUFBTSx5Q0FBeUMsQ0FBQztBQUMvRSxPQUFPLEVBQUMsZUFBZSxJQUFJLEdBQUcsRUFBQyxNQUFNLHlDQUF5QyxDQUFDO0FBQy9FLE9BQU8sRUFBQyxlQUFlLElBQUksR0FBRyxFQUFDLE1BQU0seUNBQXlDLENBQUM7QUFDL0UsT0FBTyxFQUFDLHFCQUFxQixJQUFJLEVBQUUsRUFBQyxNQUFNLHlEQUF5RCxDQUFDO0FBQ3BHLE9BQU8sRUFBQyxnQkFBZ0IsSUFBSSxHQUFHLEVBQUMsTUFBTSwwQ0FBMEMsQ0FBQztBQUNqRixPQUFPLEVBQUMsZUFBZSxJQUFJLEVBQUUsRUFBQyxNQUFNLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuXG5leHBvcnQge0F1dG9jb21wbGV0ZUZpZWxkQ29tcG9uZW50IGFzIMm1Z30gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9jb21wb25lbnRzL2ZpZWxkcy9hdXRvY29tcGxldGUvYXV0b2NvbXBsZXRlLWZpZWxkLmNvbXBvbmVudCc7XG5leHBvcnQge0Jhc2VGaWVsZENvbXBvbmVudCBhcyDJtWx9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvYmFzZS1maWVsZC1jb21wb25lbnQnO1xuZXhwb3J0IHtCaWdudW1iZXJGaWVsZENvbXBvbmVudCBhcyDJtXN9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvYmlnbnVtYmVyL251bWJlci1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtCb29sZWFuRmllbGRDb21wb25lbnQgYXMgybVofSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvZmllbGRzL2Jvb2xlYW4vYm9vbGVhbi1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtDYWxlbmRhckZpZWxkQ29tcG9uZW50IGFzIMm1aX0gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9jb21wb25lbnRzL2ZpZWxkcy9jYWxlbmRhci9jYWxlbmRhci1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtDaGlwc0ZpZWxkQ29tcG9uZW50IGFzIMm1an0gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9jb21wb25lbnRzL2ZpZWxkcy9jaGlwcy9jaGlwcy1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtDdXJyZW5jeUZpZWxkQ29tcG9uZW50IGFzIMm1a30gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9jb21wb25lbnRzL2ZpZWxkcy9jdXJyZW5jeS9jdXJyZW5jeS1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtGaWxlVXBsb2FkQ29tcG9uZW50IGFzIMm1cH0gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9jb21wb25lbnRzL2ZpZWxkcy9maWxlLXVwbG9hZC9maWxlLXVwbG9hZC5jb21wb25lbnQnO1xuZXhwb3J0IHtMb29rdXBGaWVsZENvbXBvbmVudCBhcyDJtXF9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvbG9va3VwL2xvb2t1cC1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtOdW1iZXJGaWVsZENvbXBvbmVudCBhcyDJtXJ9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvbnVtYmVyL251bWJlci1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtSYWRpb0J1dHRvbkNvbXBvbmVudCBhcyDJtXR9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvcmFkaW8tYnV0dG9uL3JhZGlvLWJ1dHRvbi1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtTZWxlY3RGaWVsZENvbXBvbmVudCBhcyDJtXd9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvc2VsZWN0L3NlbGVjdC1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtUZXh0QXJlYUZpZWxkQ29tcG9uZW50IGFzIMm1eH0gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9jb21wb25lbnRzL2ZpZWxkcy90ZXh0LWFyZWEvdGV4dC1hcmVhLWZpZWxkLmNvbXBvbmVudCc7XG5leHBvcnQge1RleHRGaWVsZENvbXBvbmVudCBhcyDJtXl9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvdGV4dC90ZXh0LWZpZWxkLmNvbXBvbmVudCc7XG5leHBvcnQge1Jvd0NvbXBvbmVudCBhcyDJtXV9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9ncmlkL3Jvdy9yb3cuY29tcG9uZW50JztcbmV4cG9ydCB7RmllbGRzZXRDb21wb25lbnQgYXMgybVvfSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvc3RydWN0dXJlL2ZpZWxkc2V0L2ZpZWxkc2V0LmNvbXBvbmVudCc7XG5leHBvcnQge1NlY3Rpb25Db21wb25lbnQgYXMgybV2fSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvc3RydWN0dXJlL3NlY3Rpb24vc2VjdGlvbi5jb21wb25lbnQnO1xuZXhwb3J0IHtEZWNpbWFsRmllbGQgYXMgybViYSxEZWNpbWFsRmllbGRDb25maWcgYXMgybV6fSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbmZpZ3VyYXRpb25zL2ZpZWxkcy9kZWNpbWFsLWZpZWxkJztcbmV4cG9ydCB7RHluYW1pY0ZpZWxkQ29tcG9uZW50IGFzIMm1bX0gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9keW5hbWljLWZpZWxkLmNvbXBvbmVudCc7XG5leHBvcnQge0R5bmFtaWNGb3JtRGlyZWN0aXZlIGFzIMm1bn0gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9keW5hbWljLWZvcm0uZGlyZWN0aXZlJztcbmV4cG9ydCB7SW5maW5pdGVTY3JvbGxEaXJlY3RpdmUgYXMgybViaX0gZnJvbSAnLi9jb21wb25lbnRzL2luZmluaXRlLXNjcm9sbC9pbmZpbml0ZS1zY3JvbGwuZGlyZWN0aXZlJztcbmV4cG9ydCB7SW5maW5pdGVTY3JvbGxNb2R1bGUgYXMgybViaH0gZnJvbSAnLi9jb21wb25lbnRzL2luZmluaXRlLXNjcm9sbC9pbmZpbml0ZS1zY3JvbGwubW9kdWxlJztcbmV4cG9ydCB7SW5mb1NpZ25Nb2R1bGUgYXMgybVmfSBmcm9tICcuL2NvbXBvbmVudHMvaW5mby1zaWduJztcbmV4cG9ydCB7SW5mb1NpZ25Db21wb25lbnQgYXMgybViZX0gZnJvbSAnLi9jb21wb25lbnRzL2luZm8tc2lnbi9pbmZvLXNpZ24uY29tcG9uZW50JztcbmV4cG9ydCB7TnVtYmVyTG9jYWxlT3B0aW9ucyBhcyDJtWJmfSBmcm9tICcuL2NvbXBvbmVudHMvbG9jYWxlL29wdGlvbnMnO1xuZXhwb3J0IHtMb2NhbGl6ZWRCaWdudW1iZXJJbXB1cmVQaXBlIGFzIMm1Y30gZnJvbSAnLi9jb21wb25lbnRzL2xvY2FsZS9waXBlcy9sb2NhbGl6ZWQtYmlnbnVtYmVyLWltcHVyZS5waXBlJztcbmV4cG9ydCB7TG9jYWxpemVkQmlnbnVtYmVyUGlwZSBhcyDJtWJ9IGZyb20gJy4vY29tcG9uZW50cy9sb2NhbGUvcGlwZXMvbG9jYWxpemVkLWJpZ251bWJlci5waXBlJztcbmV4cG9ydCB7TG9jYWxpemVkQ3VycmVuY3lJbXB1cmVQaXBlIGFzIMm1YX0gZnJvbSAnLi9jb21wb25lbnRzL2xvY2FsZS9waXBlcy9sb2NhbGl6ZWQtY3VycmVuY3ktaW1wdXJlLnBpcGUnO1xuZXhwb3J0IHtGb290ZXJDb21wb25lbnQgYXMgybViZH0gZnJvbSAnLi9jb21wb25lbnRzL3N0cnVjdHVyZS9mb290ZXIuY29tcG9uZW50JztcbmV4cG9ydCB7SGVhZGVyQ29tcG9uZW50IGFzIMm1YmN9IGZyb20gJy4vY29tcG9uZW50cy9zdHJ1Y3R1cmUvaGVhZGVyLmNvbXBvbmVudCc7XG5leHBvcnQge1N0cnVjdHVyZU1vZHVsZSBhcyDJtWJifSBmcm9tICcuL2NvbXBvbmVudHMvc3RydWN0dXJlL3N0cnVjdHVyZS5tb2R1bGUnO1xuZXhwb3J0IHtUYWJsZUNvbHVtbnNDb21wb25lbnQgYXMgybVlfSBmcm9tICcuL2NvbXBvbmVudHMvdGFibGUvdGFibGUtY29sdW1uL3RhYmxlLWNvbHVtbnMuY29tcG9uZW50JztcbmV4cG9ydCB7VGh1bWJuYWlsU2VydmljZSBhcyDJtWJnfSBmcm9tICcuL2NvbXBvbmVudHMvdGh1bWJuYWlsL3RodW1ibmFpbC5zZXJ2aWNlJztcbmV4cG9ydCB7VG9rZW5MaXN0TW9kdWxlIGFzIMm1ZH0gZnJvbSAnLi9jb21wb25lbnRzL3Rva2VuLWxpc3QnOyJdfQ==
43
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VuaW9yc2lzdGVtYXMtYW5ndWxhci1jb21wb25lbnRzLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbInNlbmlvcnNpc3RlbWFzLWFuZ3VsYXItY29tcG9uZW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDO0FBRTdCLE9BQU8sRUFBQyxVQUFVLElBQUksR0FBRyxFQUFDLE1BQU0sbURBQW1ELENBQUM7QUFDcEYsT0FBTyxFQUFDLGVBQWUsSUFBSSxHQUFHLEVBQUMsTUFBTSxxRUFBcUUsQ0FBQztBQUMzRyxPQUFPLEVBQUMsd0JBQXdCLElBQUksR0FBRyxFQUFDLE1BQU0sc0NBQXNDLENBQUM7QUFDckYsT0FBTyxFQUFDLG1CQUFtQixJQUFJLEdBQUcsRUFBQyxNQUFNLDZEQUE2RCxDQUFDO0FBQ3ZHLE9BQU8sRUFBQywwQkFBMEIsSUFBSSxFQUFFLEVBQUMsTUFBTSx1RkFBdUYsQ0FBQztBQUN2SSxPQUFPLEVBQUMsa0JBQWtCLElBQUksRUFBRSxFQUFDLE1BQU0sa0VBQWtFLENBQUM7QUFDMUcsT0FBTyxFQUFDLHVCQUF1QixJQUFJLEVBQUUsRUFBQyxNQUFNLDhFQUE4RSxDQUFDO0FBQzNILE9BQU8sRUFBQyxxQkFBcUIsSUFBSSxFQUFFLEVBQUMsTUFBTSw2RUFBNkUsQ0FBQztBQUN4SCxPQUFPLEVBQUMsc0JBQXNCLElBQUksRUFBRSxFQUFDLE1BQU0sK0VBQStFLENBQUM7QUFDM0gsT0FBTyxFQUFDLG1CQUFtQixJQUFJLEVBQUUsRUFBQyxNQUFNLHlFQUF5RSxDQUFDO0FBQ2xILE9BQU8sRUFBQyxzQkFBc0IsSUFBSSxFQUFFLEVBQUMsTUFBTSwrRUFBK0UsQ0FBQztBQUMzSCxPQUFPLEVBQUMsbUJBQW1CLElBQUksRUFBRSxFQUFDLE1BQU0sK0VBQStFLENBQUM7QUFDeEgsT0FBTyxFQUFDLG9CQUFvQixJQUFJLEVBQUUsRUFBQyxNQUFNLDJFQUEyRSxDQUFDO0FBQ3JILE9BQU8sRUFBQyxvQkFBb0IsSUFBSSxFQUFFLEVBQUMsTUFBTSwyRUFBMkUsQ0FBQztBQUNySCxPQUFPLEVBQUMsb0JBQW9CLElBQUksRUFBRSxFQUFDLE1BQU0sdUZBQXVGLENBQUM7QUFDakksT0FBTyxFQUFDLG9CQUFvQixJQUFJLEVBQUUsRUFBQyxNQUFNLDJFQUEyRSxDQUFDO0FBQ3JILE9BQU8sRUFBQyxzQkFBc0IsSUFBSSxFQUFFLEVBQUMsTUFBTSxpRkFBaUYsQ0FBQztBQUM3SCxPQUFPLEVBQUMsa0JBQWtCLElBQUksRUFBRSxFQUFDLE1BQU0sdUVBQXVFLENBQUM7QUFDL0csT0FBTyxFQUFDLFlBQVksSUFBSSxFQUFFLEVBQUMsTUFBTSw2REFBNkQsQ0FBQztBQUMvRixPQUFPLEVBQUMsaUJBQWlCLElBQUksRUFBRSxFQUFDLE1BQU0sNEVBQTRFLENBQUM7QUFDbkgsT0FBTyxFQUFDLGdCQUFnQixJQUFJLEVBQUUsRUFBQyxNQUFNLDBFQUEwRSxDQUFDO0FBQ2hILE9BQU8sRUFBQyxZQUFZLElBQUksR0FBRyxFQUEwQixNQUFNLCtEQUErRCxDQUFDO0FBQzNILE9BQU8sRUFBQyxxQkFBcUIsSUFBSSxFQUFFLEVBQUMsTUFBTSxtREFBbUQsQ0FBQztBQUM5RixPQUFPLEVBQUMsb0JBQW9CLElBQUksRUFBRSxFQUFDLE1BQU0sa0RBQWtELENBQUM7QUFDNUYsT0FBTyxFQUFDLHVCQUF1QixJQUFJLEdBQUcsRUFBQyxNQUFNLHdEQUF3RCxDQUFDO0FBQ3RHLE9BQU8sRUFBQyxvQkFBb0IsSUFBSSxHQUFHLEVBQUMsTUFBTSxxREFBcUQsQ0FBQztBQUNoRyxPQUFPLEVBQUMsY0FBYyxJQUFJLEVBQUUsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBQzVELE9BQU8sRUFBQyxpQkFBaUIsSUFBSSxHQUFHLEVBQUMsTUFBTSw0Q0FBNEMsQ0FBQztBQUNwRixPQUFPLEVBQUMsbUJBQW1CLElBQUksR0FBRyxFQUFDLE1BQU0sNkJBQTZCLENBQUM7QUFDdkUsT0FBTyxFQUFDLDRCQUE0QixJQUFJLEVBQUUsRUFBQyxNQUFNLDJEQUEyRCxDQUFDO0FBQzdHLE9BQU8sRUFBQyxzQkFBc0IsSUFBSSxFQUFFLEVBQUMsTUFBTSxvREFBb0QsQ0FBQztBQUNoRyxPQUFPLEVBQUMsMkJBQTJCLElBQUksRUFBRSxFQUFDLE1BQU0sMERBQTBELENBQUM7QUFDM0csT0FBTyxFQUFDLGVBQWUsSUFBSSxHQUFHLEVBQUMsTUFBTSx5Q0FBeUMsQ0FBQztBQUMvRSxPQUFPLEVBQUMsZUFBZSxJQUFJLEdBQUcsRUFBQyxNQUFNLHlDQUF5QyxDQUFDO0FBQy9FLE9BQU8sRUFBQyxlQUFlLElBQUksR0FBRyxFQUFDLE1BQU0seUNBQXlDLENBQUM7QUFDL0UsT0FBTyxFQUFDLHFCQUFxQixJQUFJLEVBQUUsRUFBQyxNQUFNLHlEQUF5RCxDQUFDO0FBQ3BHLE9BQU8sRUFBQyxnQkFBZ0IsSUFBSSxHQUFHLEVBQUMsTUFBTSwwQ0FBMEMsQ0FBQztBQUNqRixPQUFPLEVBQUMsZUFBZSxJQUFJLEVBQUUsRUFBQyxNQUFNLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuXG5leHBvcnQge0NvcmVGYWNhZGUgYXMgybVibH0gZnJvbSAnLi9jb21wb25lbnRzL2NvZGUtZWRpdG9yL2NvcmUvZmFjYWRlcy9jb3JlLWZhY2FkZSc7XG5leHBvcnQge0NvZGVNaXJyb3I2Q29yZSBhcyDJtWJtfSBmcm9tICcuL2NvbXBvbmVudHMvY29kZS1lZGl0b3IvaW5mcmEvY29yZXMvY29kZW1pcnJvci02L2NvZGVtaXJyb3ItNi1jb3JlJztcbmV4cG9ydCB7Q3VzdG9tVHJhbnNsYXRpb25zTW9kdWxlIGFzIMm1Ymp9IGZyb20gJy4vY29tcG9uZW50cy9jb2RlLWVkaXRvci9pbmZyYS91dGlscyc7XG5leHBvcnQge0NvZGVFZGl0b3JDb21wb25lbnQgYXMgybVia30gZnJvbSAnLi9jb21wb25lbnRzL2NvZGUtZWRpdG9yL3ByZXNlbnRhdGlvbi9jb2RlLWVkaXRvci1jb21wb25lbnQnO1xuZXhwb3J0IHtBdXRvY29tcGxldGVGaWVsZENvbXBvbmVudCBhcyDJtWd9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvYXV0b2NvbXBsZXRlL2F1dG9jb21wbGV0ZS1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtCYXNlRmllbGRDb21wb25lbnQgYXMgybVsfSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvZmllbGRzL2Jhc2UtZmllbGQtY29tcG9uZW50JztcbmV4cG9ydCB7QmlnbnVtYmVyRmllbGRDb21wb25lbnQgYXMgybVzfSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvZmllbGRzL2JpZ251bWJlci9udW1iZXItZmllbGQuY29tcG9uZW50JztcbmV4cG9ydCB7Qm9vbGVhbkZpZWxkQ29tcG9uZW50IGFzIMm1aH0gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9jb21wb25lbnRzL2ZpZWxkcy9ib29sZWFuL2Jvb2xlYW4tZmllbGQuY29tcG9uZW50JztcbmV4cG9ydCB7Q2FsZW5kYXJGaWVsZENvbXBvbmVudCBhcyDJtWl9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvY2FsZW5kYXIvY2FsZW5kYXItZmllbGQuY29tcG9uZW50JztcbmV4cG9ydCB7Q2hpcHNGaWVsZENvbXBvbmVudCBhcyDJtWp9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvY2hpcHMvY2hpcHMtZmllbGQuY29tcG9uZW50JztcbmV4cG9ydCB7Q3VycmVuY3lGaWVsZENvbXBvbmVudCBhcyDJtWt9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvY3VycmVuY3kvY3VycmVuY3ktZmllbGQuY29tcG9uZW50JztcbmV4cG9ydCB7RmlsZVVwbG9hZENvbXBvbmVudCBhcyDJtXB9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvZmlsZS11cGxvYWQvZmlsZS11cGxvYWQuY29tcG9uZW50JztcbmV4cG9ydCB7TG9va3VwRmllbGRDb21wb25lbnQgYXMgybVxfSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvZmllbGRzL2xvb2t1cC9sb29rdXAtZmllbGQuY29tcG9uZW50JztcbmV4cG9ydCB7TnVtYmVyRmllbGRDb21wb25lbnQgYXMgybVyfSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvZmllbGRzL251bWJlci9udW1iZXItZmllbGQuY29tcG9uZW50JztcbmV4cG9ydCB7UmFkaW9CdXR0b25Db21wb25lbnQgYXMgybV0fSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvZmllbGRzL3JhZGlvLWJ1dHRvbi9yYWRpby1idXR0b24tZmllbGQuY29tcG9uZW50JztcbmV4cG9ydCB7U2VsZWN0RmllbGRDb21wb25lbnQgYXMgybV3fSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvZmllbGRzL3NlbGVjdC9zZWxlY3QtZmllbGQuY29tcG9uZW50JztcbmV4cG9ydCB7VGV4dEFyZWFGaWVsZENvbXBvbmVudCBhcyDJtXh9IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vY29tcG9uZW50cy9maWVsZHMvdGV4dC1hcmVhL3RleHQtYXJlYS1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtUZXh0RmllbGRDb21wb25lbnQgYXMgybV5fSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvZmllbGRzL3RleHQvdGV4dC1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtSb3dDb21wb25lbnQgYXMgybV1fSBmcm9tICcuL2NvbXBvbmVudHMvZHluYW1pYy1mb3JtL2NvbXBvbmVudHMvZ3JpZC9yb3cvcm93LmNvbXBvbmVudCc7XG5leHBvcnQge0ZpZWxkc2V0Q29tcG9uZW50IGFzIMm1b30gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9jb21wb25lbnRzL3N0cnVjdHVyZS9maWVsZHNldC9maWVsZHNldC5jb21wb25lbnQnO1xuZXhwb3J0IHtTZWN0aW9uQ29tcG9uZW50IGFzIMm1dn0gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9jb21wb25lbnRzL3N0cnVjdHVyZS9zZWN0aW9uL3NlY3Rpb24uY29tcG9uZW50JztcbmV4cG9ydCB7RGVjaW1hbEZpZWxkIGFzIMm1YmEsRGVjaW1hbEZpZWxkQ29uZmlnIGFzIMm1en0gZnJvbSAnLi9jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9jb25maWd1cmF0aW9ucy9maWVsZHMvZGVjaW1hbC1maWVsZCc7XG5leHBvcnQge0R5bmFtaWNGaWVsZENvbXBvbmVudCBhcyDJtW19IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vZHluYW1pYy1maWVsZC5jb21wb25lbnQnO1xuZXhwb3J0IHtEeW5hbWljRm9ybURpcmVjdGl2ZSBhcyDJtW59IGZyb20gJy4vY29tcG9uZW50cy9keW5hbWljLWZvcm0vZHluYW1pYy1mb3JtLmRpcmVjdGl2ZSc7XG5leHBvcnQge0luZmluaXRlU2Nyb2xsRGlyZWN0aXZlIGFzIMm1Yml9IGZyb20gJy4vY29tcG9uZW50cy9pbmZpbml0ZS1zY3JvbGwvaW5maW5pdGUtc2Nyb2xsLmRpcmVjdGl2ZSc7XG5leHBvcnQge0luZmluaXRlU2Nyb2xsTW9kdWxlIGFzIMm1Ymh9IGZyb20gJy4vY29tcG9uZW50cy9pbmZpbml0ZS1zY3JvbGwvaW5maW5pdGUtc2Nyb2xsLm1vZHVsZSc7XG5leHBvcnQge0luZm9TaWduTW9kdWxlIGFzIMm1Zn0gZnJvbSAnLi9jb21wb25lbnRzL2luZm8tc2lnbic7XG5leHBvcnQge0luZm9TaWduQ29tcG9uZW50IGFzIMm1YmV9IGZyb20gJy4vY29tcG9uZW50cy9pbmZvLXNpZ24vaW5mby1zaWduLmNvbXBvbmVudCc7XG5leHBvcnQge051bWJlckxvY2FsZU9wdGlvbnMgYXMgybViZn0gZnJvbSAnLi9jb21wb25lbnRzL2xvY2FsZS9vcHRpb25zJztcbmV4cG9ydCB7TG9jYWxpemVkQmlnbnVtYmVySW1wdXJlUGlwZSBhcyDJtWN9IGZyb20gJy4vY29tcG9uZW50cy9sb2NhbGUvcGlwZXMvbG9jYWxpemVkLWJpZ251bWJlci1pbXB1cmUucGlwZSc7XG5leHBvcnQge0xvY2FsaXplZEJpZ251bWJlclBpcGUgYXMgybVifSBmcm9tICcuL2NvbXBvbmVudHMvbG9jYWxlL3BpcGVzL2xvY2FsaXplZC1iaWdudW1iZXIucGlwZSc7XG5leHBvcnQge0xvY2FsaXplZEN1cnJlbmN5SW1wdXJlUGlwZSBhcyDJtWF9IGZyb20gJy4vY29tcG9uZW50cy9sb2NhbGUvcGlwZXMvbG9jYWxpemVkLWN1cnJlbmN5LWltcHVyZS5waXBlJztcbmV4cG9ydCB7Rm9vdGVyQ29tcG9uZW50IGFzIMm1YmR9IGZyb20gJy4vY29tcG9uZW50cy9zdHJ1Y3R1cmUvZm9vdGVyLmNvbXBvbmVudCc7XG5leHBvcnQge0hlYWRlckNvbXBvbmVudCBhcyDJtWJjfSBmcm9tICcuL2NvbXBvbmVudHMvc3RydWN0dXJlL2hlYWRlci5jb21wb25lbnQnO1xuZXhwb3J0IHtTdHJ1Y3R1cmVNb2R1bGUgYXMgybViYn0gZnJvbSAnLi9jb21wb25lbnRzL3N0cnVjdHVyZS9zdHJ1Y3R1cmUubW9kdWxlJztcbmV4cG9ydCB7VGFibGVDb2x1bW5zQ29tcG9uZW50IGFzIMm1ZX0gZnJvbSAnLi9jb21wb25lbnRzL3RhYmxlL3RhYmxlLWNvbHVtbi90YWJsZS1jb2x1bW5zLmNvbXBvbmVudCc7XG5leHBvcnQge1RodW1ibmFpbFNlcnZpY2UgYXMgybViZ30gZnJvbSAnLi9jb21wb25lbnRzL3RodW1ibmFpbC90aHVtYm5haWwuc2VydmljZSc7XG5leHBvcnQge1Rva2VuTGlzdE1vZHVsZSBhcyDJtWR9IGZyb20gJy4vY29tcG9uZW50cy90b2tlbi1saXN0JzsiXX0=