@seniorsistemas/angular-components 17.27.1-feature-sds-110-660dd566 → 17.27.1-feature-sds-110-d6af3a99

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 (907) hide show
  1. package/dynamic-form/lib/dynamic-form/components/lookup/lookup.component.d.ts +2 -1
  2. package/dynamic-form/lib/dynamic-form/dynamic-form.module.d.ts +23 -23
  3. package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/lookup-field.d.ts +2 -0
  4. package/dynamic-form/lib/dynamic-form/form-field/fields/radio-button/radio-button-field.component.d.ts +3 -3
  5. package/esm2022/accordion/lib/accordion/accordion.component.mjs +84 -0
  6. package/esm2022/accordion/lib/accordion/accordion.module.mjs +36 -0
  7. package/esm2022/accordion/lib/accordion/components/accordion-panel/accordion-panel.component.mjs +124 -0
  8. package/esm2022/accordion/lib/accordion/models/accordion-button-settings.mjs +2 -0
  9. package/esm2022/accordion/public-api.mjs +4 -0
  10. package/esm2022/accordion/seniorsistemas-angular-components-accordion.mjs +5 -0
  11. package/esm2022/alert/lib/alert/alert.component.mjs +44 -0
  12. package/esm2022/alert/lib/alert/alert.module.mjs +18 -0
  13. package/esm2022/alert/public-api.mjs +3 -0
  14. package/esm2022/alert/seniorsistemas-angular-components-alert.mjs +5 -0
  15. package/esm2022/badge/lib/badge/badge.component.mjs +46 -0
  16. package/esm2022/badge/lib/badge/badge.module.mjs +20 -0
  17. package/esm2022/badge/lib/badge/types/badge-colors.mjs +4 -0
  18. package/esm2022/badge/lib/badge/types/badge-types.mjs +2 -0
  19. package/esm2022/badge/public-api.mjs +3 -0
  20. package/esm2022/badge/seniorsistemas-angular-components-badge.mjs +5 -0
  21. package/esm2022/bignumber-input/lib/bignumber-input/bignumber-input.directive.mjs +156 -0
  22. package/esm2022/bignumber-input/lib/bignumber-input/bignumber-input.module.mjs +21 -0
  23. package/esm2022/bignumber-input/public-api.mjs +3 -0
  24. package/esm2022/bignumber-input/seniorsistemas-angular-components-bignumber-input.mjs +5 -0
  25. package/esm2022/breadcrumb/lib/breadcrumb/breadcrumb.component.mjs +105 -0
  26. package/esm2022/breadcrumb/lib/breadcrumb/breadcrumb.module.mjs +20 -0
  27. package/esm2022/breadcrumb/public-api.mjs +3 -0
  28. package/esm2022/breadcrumb/seniorsistemas-angular-components-breadcrumb.mjs +5 -0
  29. package/esm2022/button/lib/button/button.component.mjs +106 -0
  30. package/esm2022/button/lib/button/button.module.mjs +18 -0
  31. package/esm2022/button/lib/button/models/button-animations.mjs +2 -0
  32. package/esm2022/button/lib/button/models/button-badge-config.mjs +2 -0
  33. package/esm2022/button/lib/button/models/button-priority.mjs +2 -0
  34. package/esm2022/button/lib/button/models/button-size.mjs +2 -0
  35. package/esm2022/button/lib/button/models/index.mjs +2 -0
  36. package/esm2022/button/public-api.mjs +4 -0
  37. package/esm2022/button/seniorsistemas-angular-components-button.mjs +5 -0
  38. package/esm2022/calendar-mask/lib/calendar-mask/calendar-mask.directive.mjs +611 -0
  39. package/esm2022/calendar-mask/lib/calendar-mask/calendar-mask.module.mjs +18 -0
  40. package/esm2022/calendar-mask/public-api.mjs +3 -0
  41. package/esm2022/calendar-mask/seniorsistemas-angular-components-calendar-mask.mjs +5 -0
  42. package/esm2022/card/lib/card/card.component.mjs +85 -0
  43. package/esm2022/card/lib/card/card.module.mjs +19 -0
  44. package/esm2022/card/public-api.mjs +3 -0
  45. package/esm2022/card/seniorsistemas-angular-components-card.mjs +5 -0
  46. package/esm2022/chat/lib/chat/chat.component.mjs +29 -0
  47. package/esm2022/chat/lib/chat/chat.module.mjs +22 -0
  48. package/esm2022/chat/lib/chat/components/chat-message/chat-message.component.mjs +29 -0
  49. package/esm2022/chat/lib/chat/types/chat-message.mjs +2 -0
  50. package/esm2022/chat/public-api.mjs +3 -0
  51. package/esm2022/chat/seniorsistemas-angular-components-chat.mjs +5 -0
  52. package/esm2022/checkbox/lib/checkbox/checkbox.component.mjs +67 -0
  53. package/esm2022/checkbox/public-api.mjs +2 -0
  54. package/esm2022/checkbox/seniorsistemas-angular-components-checkbox.mjs +5 -0
  55. package/esm2022/checkbox-list/lib/checkbox-list/checkbox-list.component.mjs +129 -0
  56. package/esm2022/checkbox-list/lib/checkbox-list/checkbox-list.module.mjs +19 -0
  57. package/esm2022/checkbox-list/lib/checkbox-list/models/checkbox-list-data.mjs +2 -0
  58. package/esm2022/checkbox-list/lib/checkbox-list/models/checkbox-list-state.mjs +2 -0
  59. package/esm2022/checkbox-list/public-api.mjs +3 -0
  60. package/esm2022/checkbox-list/seniorsistemas-angular-components-checkbox-list.mjs +5 -0
  61. package/esm2022/chips/lib/chips/chip-item/chip-item.component.mjs +67 -0
  62. package/esm2022/chips/lib/chips/chips/chips.component.mjs +241 -0
  63. package/esm2022/chips/lib/chips/chips.module.mjs +22 -0
  64. package/esm2022/chips/lib/chips/models/chip-models.mjs +2 -0
  65. package/esm2022/chips/public-api.mjs +3 -0
  66. package/esm2022/chips/seniorsistemas-angular-components-chips.mjs +5 -0
  67. package/esm2022/code-editor/lib/code-editor/code-editor.component.mjs +111 -0
  68. package/esm2022/code-editor/lib/code-editor/code-editor.module.mjs +32 -0
  69. package/esm2022/code-editor/lib/code-editor/core/facades/core-facade.mjs +85 -0
  70. package/esm2022/code-editor/lib/code-editor/core/facades/linter-facade.mjs +2 -0
  71. package/esm2022/code-editor/lib/code-editor/core/models/enums/marker-severity.mjs +7 -0
  72. package/esm2022/code-editor/lib/code-editor/core/models/index.mjs +5 -0
  73. package/esm2022/code-editor/lib/code-editor/core/models/interfaces/marker.mjs +2 -0
  74. package/esm2022/code-editor/lib/code-editor/core/use-cases/core-linters.mjs +11 -0
  75. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/codemirror-6-core.mjs +97 -0
  76. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/editor-languages.mjs +17 -0
  77. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/json/json.language.mjs +67 -0
  78. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-empty-state.mjs +29 -0
  79. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-loading-state.mjs +29 -0
  80. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper-style.mjs +17 -0
  81. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-state-wrapper/autocomplete-state-wrapper.mjs +77 -0
  82. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/index.mjs +4 -0
  83. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-style.mjs +35 -0
  84. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.mjs +334 -0
  85. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.service.mjs +25 -0
  86. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/base-configs.mjs +18 -0
  87. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/grammar.mjs +37 -0
  88. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/completion-types.mjs +10 -0
  89. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/enum-type-order.mjs +8 -0
  90. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/keywords.mjs +12 -0
  91. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/meta-type.mjs +36 -0
  92. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/request-types.mjs +9 -0
  93. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/index.mjs +22 -0
  94. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/completion-Item.mjs +2 -0
  95. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/facade-metadata-name.mjs +2 -0
  96. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/fields-order-by.mjs +2 -0
  97. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/get-facade-metadata-by-path.mjs +2 -0
  98. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-context-metadata-by-id.mjs +2 -0
  99. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-expression-metadata.mjs +2 -0
  100. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-facade-metadata-names.mjs +2 -0
  101. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-expression-metadata.mjs +2 -0
  102. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-context-metadata.mjs +2 -0
  103. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-facade-metadata.mjs +2 -0
  104. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-field-metadata.mjs +2 -0
  105. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-page-request.mjs +2 -0
  106. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.mjs +2 -0
  107. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/tax-calculation-configs.mjs +2 -0
  108. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation-language-configs.mjs +11 -0
  109. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation.language.mjs +9 -0
  110. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-language-configs.mjs +14 -0
  111. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.mjs +18 -0
  112. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/index.mjs +3 -0
  113. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/index.mjs +4 -0
  114. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.mjs +2 -0
  115. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/types/editor-theme.mjs +2 -0
  116. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/editor-themes.mjs +15 -0
  117. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/autocomplete-tooltip.mjs +61 -0
  118. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/font-style.mjs +39 -0
  119. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/line-counter.mjs +25 -0
  120. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/scrollbars.mjs +18 -0
  121. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-highlight-style.mjs +16 -0
  122. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-style.mjs +13 -0
  123. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-theme.mjs +22 -0
  124. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/convert-markers-to-diagnostics.mjs +15 -0
  125. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/index.mjs +3 -0
  126. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/is-current-position-inside-string.mjs +5 -0
  127. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/custom-http-client.mjs +82 -0
  128. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/format-blob-response.mjs +10 -0
  129. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/format-json-response.mjs +9 -0
  130. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/index.mjs +3 -0
  131. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/custom-translations-service.mjs +37 -0
  132. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/custom-translations.module.mjs +32 -0
  133. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/index.mjs +3 -0
  134. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/models/index.mjs +3 -0
  135. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/models/interfaces/translations.mjs +2 -0
  136. package/esm2022/code-editor/lib/code-editor/infra/utils/index.mjs +3 -0
  137. package/esm2022/code-editor/lib/code-editor/models/enums/languages.mjs +6 -0
  138. package/esm2022/code-editor/lib/code-editor/models/enums/themes.mjs +5 -0
  139. package/esm2022/code-editor/lib/code-editor/models/index.mjs +6 -0
  140. package/esm2022/code-editor/lib/code-editor/models/interfaces/editor-options.mjs +2 -0
  141. package/esm2022/code-editor/public-api.mjs +6 -0
  142. package/esm2022/code-editor/seniorsistemas-angular-components-code-editor.mjs +5 -0
  143. package/esm2022/collapse-link/lib/collapse-link/collapse-link.component.mjs +81 -0
  144. package/esm2022/collapse-link/lib/collapse-link/collapse-link.module.mjs +18 -0
  145. package/esm2022/collapse-link/public-api.mjs +3 -0
  146. package/esm2022/collapse-link/seniorsistemas-angular-components-collapse-link.mjs +5 -0
  147. package/esm2022/common/lib/angular-components.module.mjs +24 -0
  148. package/esm2022/common/lib/custom-http-client/custom-http-client.mjs +86 -0
  149. package/esm2022/common/lib/custom-http-client/json-response-formatters/format-blob-response.mjs +10 -0
  150. package/esm2022/common/lib/custom-http-client/json-response-formatters/format-json-response.mjs +9 -0
  151. package/esm2022/common/lib/debouce.mjs +35 -0
  152. package/esm2022/common/lib/svg-factory/components/iassist-icon/iassist-icon.component.mjs +11 -0
  153. package/esm2022/common/lib/svg-factory/components/senior-icon/senior-icon.component.mjs +11 -0
  154. package/esm2022/common/lib/svg-factory/components/svg-factory-icons.mjs +2 -0
  155. package/esm2022/common/lib/svg-factory/index.mjs +3 -0
  156. package/esm2022/common/lib/svg-factory/svg-factory.directive.mjs +44 -0
  157. package/esm2022/common/lib/svg-factory/svg-factory.module.mjs +26 -0
  158. package/esm2022/common/public-api.mjs +5 -0
  159. package/esm2022/common/seniorsistemas-angular-components-common.mjs +5 -0
  160. package/esm2022/confirm-dialog/lib/confirm-dialog.model.mjs +2 -0
  161. package/esm2022/confirm-dialog/lib/confirm-dialog.service.mjs +34 -0
  162. package/esm2022/confirm-dialog/lib/popup-confirm-dialog/popup-confirm-dialog.component.mjs +17 -0
  163. package/esm2022/confirm-dialog/public-api.mjs +2 -0
  164. package/esm2022/confirm-dialog/seniorsistemas-angular-components-confirm-dialog.mjs +5 -0
  165. package/esm2022/control-errors/lib/control-errors/control-errors.component.mjs +52 -0
  166. package/esm2022/control-errors/lib/control-errors/control-errors.module.mjs +19 -0
  167. package/esm2022/control-errors/public-api.mjs +3 -0
  168. package/esm2022/control-errors/seniorsistemas-angular-components-control-errors.mjs +5 -0
  169. package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.component.mjs +319 -0
  170. package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.module.mjs +41 -0
  171. package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.service.mjs +42 -0
  172. package/esm2022/country-phone-picker/lib/country-phone-picker/models/country-phone-data.mjs +2 -0
  173. package/esm2022/country-phone-picker/lib/country-phone-picker/models/ordination.mjs +7 -0
  174. package/esm2022/country-phone-picker/lib/country-phone-picker/models/phone-selection-data.mjs +2 -0
  175. package/esm2022/country-phone-picker/lib/country-phone-picker/resources/countries.mjs +228 -0
  176. package/esm2022/country-phone-picker/public-api.mjs +5 -0
  177. package/esm2022/country-phone-picker/seniorsistemas-angular-components-country-phone-picker.mjs +5 -0
  178. package/esm2022/currency/lib/currency.service.mjs +25 -0
  179. package/esm2022/currency/lib/models/currencies.mjs +161 -0
  180. package/esm2022/currency/lib/types/currency.mjs +2 -0
  181. package/esm2022/currency/public-api.mjs +3 -0
  182. package/esm2022/currency/seniorsistemas-angular-components-currency.mjs +5 -0
  183. package/esm2022/custom-fields/lib/custom-fields/custom-fields.component.mjs +690 -0
  184. package/esm2022/custom-fields/lib/custom-fields/custom-fields.module.mjs +45 -0
  185. package/esm2022/custom-fields/lib/custom-fields/custom-fields.service.mjs +35 -0
  186. package/esm2022/custom-fields/lib/custom-fields/models/custom-field-type.mjs +17 -0
  187. package/esm2022/custom-fields/public-api.mjs +4 -0
  188. package/esm2022/custom-fields/seniorsistemas-angular-components-custom-fields.mjs +5 -0
  189. package/esm2022/dialog/lib/src/dialog/dialog.component.mjs +82 -0
  190. package/esm2022/dialog/lib/src/dialog/models/active-dialog.mjs +18 -0
  191. package/esm2022/dialog/lib/src/dialog/models/dialog-models.mjs +2 -0
  192. package/esm2022/dialog/lib/src/dialog/services/dialog.service.mjs +96 -0
  193. package/esm2022/dialog/lib/src/dialog/services/internal-dialog.service.mjs +29 -0
  194. package/esm2022/dialog/public-api.mjs +4 -0
  195. package/esm2022/dialog/seniorsistemas-angular-components-dialog.mjs +5 -0
  196. package/esm2022/dynamic-form/lib/dynamic-form/components/field-label/field-label.component.mjs +20 -0
  197. package/esm2022/dynamic-form/lib/dynamic-form/components/grid/row/row.component.mjs +41 -0
  198. package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/lookup.component.mjs +631 -0
  199. package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/types/default-filter.mjs +2 -0
  200. package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/types/label-options.mjs +2 -0
  201. package/esm2022/dynamic-form/lib/dynamic-form/components/structure/base-structure-component.mjs +2 -0
  202. package/esm2022/dynamic-form/lib/dynamic-form/components/structure/fieldset/fieldset.component.mjs +27 -0
  203. package/esm2022/dynamic-form/lib/dynamic-form/components/structure/section/section.component.mjs +33 -0
  204. package/esm2022/dynamic-form/lib/dynamic-form/configurations/dynamic-config.mjs +71 -0
  205. package/esm2022/dynamic-form/lib/dynamic-form/configurations/dynamic-type.mjs +26 -0
  206. package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid/grid.mjs +14 -0
  207. package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid/row.mjs +10 -0
  208. package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid-type.mjs +5 -0
  209. package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/fieldset.mjs +10 -0
  210. package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/section.mjs +31 -0
  211. package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/structure.mjs +9 -0
  212. package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure-type.mjs +6 -0
  213. package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.component.mjs +41 -0
  214. package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.directive.mjs +107 -0
  215. package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.mjs +189 -0
  216. package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.module.mjs +289 -0
  217. package/esm2022/dynamic-form/lib/dynamic-form/form-field/addon-config.mjs +2 -0
  218. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/field-size.mjs +13 -0
  219. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/field-type.mjs +34 -0
  220. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/autocomplete-field.mjs +24 -0
  221. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/bignumber-field.mjs +37 -0
  222. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/blob-field.mjs +31 -0
  223. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/boolean-field.mjs +30 -0
  224. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/boolean-switch-field.mjs +15 -0
  225. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/button-field.mjs +47 -0
  226. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/calendar-field.mjs +56 -0
  227. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/checkbox-field.mjs +9 -0
  228. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/chips-field.mjs +25 -0
  229. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/country-phone-picker-field.mjs +15 -0
  230. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/currency-field.mjs +14 -0
  231. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/decimal-field.mjs +16 -0
  232. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/editor-field.mjs +15 -0
  233. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/field.mjs +64 -0
  234. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/lookup-field.mjs +66 -0
  235. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/number-field.mjs +38 -0
  236. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/password-field.mjs +33 -0
  237. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/profile-picture.mjs +35 -0
  238. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/radio-button-field.mjs +27 -0
  239. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/select-field.mjs +43 -0
  240. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/slider-field.mjs +30 -0
  241. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/star-rating-field.mjs +17 -0
  242. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-field.mjs +30 -0
  243. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-ia-field.mjs +32 -0
  244. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-field.mjs +38 -0
  245. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/autocomplete/autocomplete-field.component.mjs +36 -0
  246. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/base-field-component.mjs +22 -0
  247. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/bignumber/bignumber-field.component.mjs +124 -0
  248. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/boolean/boolean-radio-field/boolean-field.component.mjs +27 -0
  249. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/boolean/boolean-switch-field/boolean-switch-field.component.mjs +23 -0
  250. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/button-field/button-field.component.mjs +31 -0
  251. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/calendar/calendar-field.component.mjs +118 -0
  252. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/checkbox/checkbox-field.component.mjs +21 -0
  253. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/chips/chips-field.component.mjs +59 -0
  254. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/country-phone-picker/country-phone-picker-field.component.mjs +29 -0
  255. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/currency/currency-field.component.mjs +90 -0
  256. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/editor/editor-field.component.mjs +23 -0
  257. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/file-upload/file-upload-field.component.mjs +56 -0
  258. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/lookup/lookup-field.component.mjs +23 -0
  259. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/number/number-field.component.mjs +121 -0
  260. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/password/password-field.component.mjs +75 -0
  261. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/profile-picture/profile-picture-field.component.mjs +22 -0
  262. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/radio-button/radio-button-field.component.mjs +52 -0
  263. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/select/select-field.component.mjs +24 -0
  264. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/slider/slider-field.component.mjs +103 -0
  265. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/star-rating/star-rating-field.component.mjs +25 -0
  266. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text/text-field.component.mjs +88 -0
  267. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text-area/text-area-field.component.mjs +29 -0
  268. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text-area-ia/text-area-ia-field.component.mjs +22 -0
  269. package/esm2022/dynamic-form/lib/dynamic-form/form-field/form-field.mjs +243 -0
  270. package/esm2022/dynamic-form/lib/dynamic-form/services/dynamic-form-cache.mjs +150 -0
  271. package/esm2022/dynamic-form/public-api.mjs +44 -0
  272. package/esm2022/dynamic-form/seniorsistemas-angular-components-dynamic-form.mjs +5 -0
  273. package/esm2022/editable-overlay/lib/editable-overlay/editable-overlay.directive.mjs +44 -0
  274. package/esm2022/editable-overlay/lib/editable-overlay/editable-overlay.module.mjs +18 -0
  275. package/esm2022/editable-overlay/public-api.mjs +3 -0
  276. package/esm2022/editable-overlay/seniorsistemas-angular-components-editable-overlay.mjs +5 -0
  277. package/esm2022/empty-state/lib/empty-state/empty-state.component.mjs +51 -0
  278. package/esm2022/empty-state/lib/empty-state/empty-state.module.mjs +22 -0
  279. package/esm2022/empty-state/lib/empty-state/go-back/go-back.component.mjs +34 -0
  280. package/esm2022/empty-state/public-api.mjs +4 -0
  281. package/esm2022/empty-state/seniorsistemas-angular-components-empty-state.mjs +5 -0
  282. package/esm2022/fieldset/lib/fieldset/fieldset.component.mjs +78 -0
  283. package/esm2022/fieldset/lib/fieldset/fieldset.models.mjs +2 -0
  284. package/esm2022/fieldset/lib/fieldset/fieldset.module.mjs +20 -0
  285. package/esm2022/fieldset/public-api.mjs +3 -0
  286. package/esm2022/fieldset/seniorsistemas-angular-components-fieldset.mjs +5 -0
  287. package/esm2022/file-upload/lib/file-upload/file-upload.component.mjs +276 -0
  288. package/esm2022/file-upload/lib/file-upload/file-upload.module.mjs +38 -0
  289. package/esm2022/file-upload/lib/file-upload/file-upload.service.mjs +18 -0
  290. package/esm2022/file-upload/lib/file-upload/models/file-dto.mjs +2 -0
  291. package/esm2022/file-upload/lib/file-upload/models/file-upload-permissions.mjs +2 -0
  292. package/esm2022/file-upload/lib/file-upload/models/list-blob-metadata.mjs +2 -0
  293. package/esm2022/file-upload/lib/file-upload/models/uploadError.mjs +2 -0
  294. package/esm2022/file-upload/lib/file-upload/models/validate-errors.mjs +2 -0
  295. package/esm2022/file-upload/public-api.mjs +3 -0
  296. package/esm2022/file-upload/seniorsistemas-angular-components-file-upload.mjs +5 -0
  297. package/esm2022/gantt/lib/gantt/components/gantt/arrow.mjs +87 -0
  298. package/esm2022/gantt/lib/gantt/components/gantt/bar.mjs +294 -0
  299. package/esm2022/gantt/lib/gantt/components/gantt/gantt-options.mjs +20 -0
  300. package/esm2022/gantt/lib/gantt/components/gantt/gantt.mjs +812 -0
  301. package/esm2022/gantt/lib/gantt/components/gantt/popup.mjs +110 -0
  302. package/esm2022/gantt/lib/gantt/components/gantt/utils/date-utils.mjs +116 -0
  303. package/esm2022/gantt/lib/gantt/components/gantt/utils/svg-utils.mjs +111 -0
  304. package/esm2022/gantt/lib/gantt/components/side-table/side-table.component.mjs +32 -0
  305. package/esm2022/gantt/lib/gantt/gantt.component.mjs +146 -0
  306. package/esm2022/gantt/lib/gantt/gantt.module.mjs +24 -0
  307. package/esm2022/gantt/lib/gantt/models/index.mjs +2 -0
  308. package/esm2022/gantt/lib/gantt/models/options.mjs +2 -0
  309. package/esm2022/gantt/lib/gantt/models/task.mjs +2 -0
  310. package/esm2022/gantt/lib/gantt/models/view-mode.mjs +12 -0
  311. package/esm2022/gantt/public-api.mjs +4 -0
  312. package/esm2022/gantt/seniorsistemas-angular-components-gantt.mjs +5 -0
  313. package/esm2022/global-search/lib/global-search/components/dropdown/global-search-dropdown-item.component.mjs +73 -0
  314. package/esm2022/global-search/lib/global-search/global-search.component.mjs +140 -0
  315. package/esm2022/global-search/lib/global-search/global-search.module.mjs +78 -0
  316. package/esm2022/global-search/lib/global-search/types/global-search-size.enum.mjs +2 -0
  317. package/esm2022/global-search/public-api.mjs +5 -0
  318. package/esm2022/global-search/seniorsistemas-angular-components-global-search.mjs +5 -0
  319. package/esm2022/grid-menu/lib/grid-menu/components/grid-menu-item/grid-menu-item.component.mjs +34 -0
  320. package/esm2022/grid-menu/lib/grid-menu/grid-menu.component.mjs +19 -0
  321. package/esm2022/grid-menu/lib/grid-menu/grid-menu.module.mjs +19 -0
  322. package/esm2022/grid-menu/lib/grid-menu/types/grid-menu-item.mjs +2 -0
  323. package/esm2022/grid-menu/public-api.mjs +4 -0
  324. package/esm2022/grid-menu/seniorsistemas-angular-components-grid-menu.mjs +5 -0
  325. package/esm2022/help-popover/lib/help-popover/help-popover/help-popover.component.mjs +84 -0
  326. package/esm2022/help-popover/lib/help-popover/help-popover.directive.mjs +314 -0
  327. package/esm2022/help-popover/lib/help-popover/help-popover.module.mjs +25 -0
  328. package/esm2022/help-popover/lib/help-popover/models/help-popover.models.mjs +2 -0
  329. package/esm2022/help-popover/public-api.mjs +4 -0
  330. package/esm2022/help-popover/seniorsistemas-angular-components-help-popover.mjs +5 -0
  331. package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.mjs +13 -0
  332. package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-card/ia-insight-card.component.mjs +82 -0
  333. package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.mjs +49 -0
  334. package/esm2022/ia-insight/lib/ia-insight/ia-insight.component.mjs +66 -0
  335. package/esm2022/ia-insight/lib/ia-insight/ia-insight.module.mjs +47 -0
  336. package/esm2022/ia-insight/lib/ia-insight/models/ia-insight-item.mjs +2 -0
  337. package/esm2022/ia-insight/lib/ia-insight/models/ia-insight-template-types.mjs +2 -0
  338. package/esm2022/ia-insight/lib/ia-insight/models/index.mjs +2 -0
  339. package/esm2022/ia-insight/public-api.mjs +4 -0
  340. package/esm2022/ia-insight/seniorsistemas-angular-components-ia-insight.mjs +5 -0
  341. package/esm2022/image-cropper/lib/image-cropper/image-cropper.component.mjs +179 -0
  342. package/esm2022/image-cropper/lib/image-cropper/image-cropper.module.mjs +23 -0
  343. package/esm2022/image-cropper/lib/image-cropper/image-cropper.service.mjs +73 -0
  344. package/esm2022/image-cropper/public-api.mjs +4 -0
  345. package/esm2022/image-cropper/seniorsistemas-angular-components-image-cropper.mjs +5 -0
  346. package/esm2022/infinite-scroll/lib/infinite-scroll/infinite-scroll.directive.mjs +28 -0
  347. package/esm2022/infinite-scroll/lib/infinite-scroll/infinite-scroll.module.mjs +18 -0
  348. package/esm2022/infinite-scroll/public-api.mjs +3 -0
  349. package/esm2022/infinite-scroll/seniorsistemas-angular-components-infinite-scroll.mjs +5 -0
  350. package/esm2022/info-sign/lib/info-sign/components/info-sign/info-sign.component.mjs +17 -0
  351. package/esm2022/info-sign/lib/info-sign/info-sign.directive.mjs +68 -0
  352. package/esm2022/info-sign/lib/info-sign/info-sign.module.mjs +20 -0
  353. package/esm2022/info-sign/public-api.mjs +3 -0
  354. package/esm2022/info-sign/seniorsistemas-angular-components-info-sign.mjs +5 -0
  355. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.mjs +53 -0
  356. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.mjs +32 -0
  357. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.mjs +85 -0
  358. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.mjs +32 -0
  359. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.mjs +33 -0
  360. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.mjs +32 -0
  361. package/esm2022/inline-edit/lib/inline-edit/components/index.mjs +8 -0
  362. package/esm2022/inline-edit/lib/inline-edit/components/inline-edit-item/inline-edit-item.component.mjs +105 -0
  363. package/esm2022/inline-edit/lib/inline-edit/fields/index.mjs +8 -0
  364. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-calendar-field.mjs +45 -0
  365. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-field.mjs +13 -0
  366. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-lookup-field.mjs +60 -0
  367. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-number-field.mjs +38 -0
  368. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-area-field.mjs +15 -0
  369. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-area-ia-field.mjs +7 -0
  370. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-field.mjs +7 -0
  371. package/esm2022/inline-edit/lib/inline-edit/inline-edit.component.mjs +66 -0
  372. package/esm2022/inline-edit/lib/inline-edit/inline-edit.module.mjs +102 -0
  373. package/esm2022/inline-edit/lib/inline-edit/types/addon-config.mjs +2 -0
  374. package/esm2022/inline-edit/public-api.mjs +4 -0
  375. package/esm2022/inline-edit/seniorsistemas-angular-components-inline-edit.mjs +5 -0
  376. package/esm2022/interactive-content/lib/interactive-content/interactive-content.directive.mjs +63 -0
  377. package/esm2022/interactive-content/public-api.mjs +2 -0
  378. package/esm2022/interactive-content/seniorsistemas-angular-components-interactive-content.mjs +5 -0
  379. package/esm2022/kanban/lib/kanban/components/kanban-column/kanban-column.component.mjs +100 -0
  380. package/esm2022/kanban/lib/kanban/components/kanban-item/kanban-item.component.mjs +62 -0
  381. package/esm2022/kanban/lib/kanban/components/kanban-item-dragging/kanban-item-dragging.component.mjs +17 -0
  382. package/esm2022/kanban/lib/kanban/kanban-event.service.mjs +26 -0
  383. package/esm2022/kanban/lib/kanban/kanban.component.mjs +219 -0
  384. package/esm2022/kanban/lib/kanban/kanban.module.mjs +56 -0
  385. package/esm2022/kanban/lib/kanban/types/index.mjs +2 -0
  386. package/esm2022/kanban/lib/kanban/types/kanban-data.mjs +2 -0
  387. package/esm2022/kanban/lib/kanban/types/kanban-template-types.mjs +2 -0
  388. package/esm2022/kanban/public-api.mjs +3 -0
  389. package/esm2022/kanban/seniorsistemas-angular-components-kanban.mjs +5 -0
  390. package/esm2022/label-value/lib/label-value/label-value.component.mjs +35 -0
  391. package/esm2022/label-value/lib/label-value/label-value.module.mjs +22 -0
  392. package/esm2022/label-value/lib/label-value/types/label-value-configuration.mjs +2 -0
  393. package/esm2022/label-value/public-api.mjs +3 -0
  394. package/esm2022/label-value/seniorsistemas-angular-components-label-value.mjs +5 -0
  395. package/esm2022/lib/locale/fallback.mjs +333 -0
  396. package/esm2022/loading-state/lib/loading-state/components/dots-indicator/dots-indicator.components.mjs +11 -0
  397. package/esm2022/loading-state/lib/loading-state/components/loading-state-indicators.mjs +6 -0
  398. package/esm2022/loading-state/lib/loading-state/components/logo-indicator/logo-indicator.component.mjs +12 -0
  399. package/esm2022/loading-state/lib/loading-state/loading-state.component.mjs +74 -0
  400. package/esm2022/loading-state/lib/loading-state/loading-state.directive.mjs +62 -0
  401. package/esm2022/loading-state/lib/loading-state/loading-state.module.mjs +30 -0
  402. package/esm2022/loading-state/public-api.mjs +5 -0
  403. package/esm2022/loading-state/seniorsistemas-angular-components-loading-state.mjs +5 -0
  404. package/esm2022/locale/lib/locale/locale.module.mjs +85 -0
  405. package/esm2022/locale/lib/locale/locale.service.mjs +87 -0
  406. package/esm2022/locale/lib/locale/options/calendar.mjs +24 -0
  407. package/esm2022/locale/lib/locale/options/index.mjs +27 -0
  408. package/esm2022/locale/lib/locale/options/number.mjs +9 -0
  409. package/esm2022/locale/lib/locale/pipes/localized-bignumber-impure.pipe.mjs +18 -0
  410. package/esm2022/locale/lib/locale/pipes/localized-bignumber.pipe.mjs +38 -0
  411. package/esm2022/locale/lib/locale/pipes/localized-currency-impure.pipe.mjs +21 -0
  412. package/esm2022/locale/lib/locale/pipes/localized-currency.pipe.mjs +53 -0
  413. package/esm2022/locale/lib/locale/pipes/localized-date-impure.pipe.mjs +15 -0
  414. package/esm2022/locale/lib/locale/pipes/localized-date.pipe.mjs +23 -0
  415. package/esm2022/locale/lib/locale/pipes/localized-number.pipe.mjs +31 -0
  416. package/esm2022/locale/lib/locale/pipes/localized-time-impure.pipe.mjs +15 -0
  417. package/esm2022/locale/lib/locale/pipes/localized-time.pipe.mjs +23 -0
  418. package/esm2022/locale/public-api.mjs +13 -0
  419. package/esm2022/locale/seniorsistemas-angular-components-locale.mjs +5 -0
  420. package/esm2022/localized-number-input/lib/localized-number-input/localized-number-input.directive.mjs +63 -0
  421. package/esm2022/localized-number-input/lib/localized-number-input/localized-number-input.module.mjs +18 -0
  422. package/esm2022/localized-number-input/public-api.mjs +3 -0
  423. package/esm2022/localized-number-input/seniorsistemas-angular-components-localized-number-input.mjs +5 -0
  424. package/esm2022/mask/lib/mask/mask-formatter.module.mjs +16 -0
  425. package/esm2022/mask/lib/mask/mask-formatter.pipe.mjs +65 -0
  426. package/esm2022/mask/public-api.mjs +3 -0
  427. package/esm2022/mask/seniorsistemas-angular-components-mask.mjs +5 -0
  428. package/esm2022/mouse-events/lib/mouse-events/double-click.directive.mjs +37 -0
  429. package/esm2022/mouse-events/lib/mouse-events/long-press.directive.mjs +51 -0
  430. package/esm2022/mouse-events/lib/mouse-events/mouse-events.module.mjs +27 -0
  431. package/esm2022/mouse-events/public-api.mjs +4 -0
  432. package/esm2022/mouse-events/seniorsistemas-angular-components-mouse-events.mjs +5 -0
  433. package/esm2022/navigation-button/lib/navigation-button/models/index.mjs +2 -0
  434. package/esm2022/navigation-button/lib/navigation-button/models/navigation-button-item.mjs +2 -0
  435. package/esm2022/navigation-button/lib/navigation-button/models/navigation-button-step-changed-info.mjs +2 -0
  436. package/esm2022/navigation-button/lib/navigation-button/navigation-button.component.mjs +134 -0
  437. package/esm2022/navigation-button/lib/navigation-button/navigation-button.module.mjs +20 -0
  438. package/esm2022/navigation-button/public-api.mjs +4 -0
  439. package/esm2022/navigation-button/seniorsistemas-angular-components-navigation-button.mjs +5 -0
  440. package/esm2022/number-input/lib/number-input/number-input.directive.mjs +164 -0
  441. package/esm2022/number-input/lib/number-input/number-input.module.mjs +21 -0
  442. package/esm2022/number-input/public-api.mjs +3 -0
  443. package/esm2022/number-input/seniorsistemas-angular-components-number-input.mjs +5 -0
  444. package/esm2022/numeric/lib/numeric.module.mjs +18 -0
  445. package/esm2022/numeric/lib/numeric.pipe.mjs +29 -0
  446. package/esm2022/numeric/lib/numeric.service.mjs +92 -0
  447. package/esm2022/numeric/public-api.mjs +4 -0
  448. package/esm2022/numeric/seniorsistemas-angular-components-numeric.mjs +5 -0
  449. package/esm2022/object-card/lib/object-card/elements/field/object-card-field.component.mjs +51 -0
  450. package/esm2022/object-card/lib/object-card/elements/main/object-card-main.component.mjs +87 -0
  451. package/esm2022/object-card/lib/object-card/object-card.component.mjs +171 -0
  452. package/esm2022/object-card/lib/object-card/object-card.module.mjs +24 -0
  453. package/esm2022/object-card/public-api.mjs +5 -0
  454. package/esm2022/object-card/seniorsistemas-angular-components-object-card.mjs +5 -0
  455. package/esm2022/paginator/lib/models/paginator.models.mjs +2 -0
  456. package/esm2022/paginator/lib/paginator/paginator.component.mjs +138 -0
  457. package/esm2022/paginator/public-api.mjs +2 -0
  458. package/esm2022/paginator/seniorsistemas-angular-components-paginator.mjs +5 -0
  459. package/esm2022/panel/lib/panel/panel.component.mjs +91 -0
  460. package/esm2022/panel/lib/panel/panel.module.mjs +20 -0
  461. package/esm2022/panel/public-api.mjs +3 -0
  462. package/esm2022/panel/seniorsistemas-angular-components-panel.mjs +5 -0
  463. package/esm2022/password-strength/lib/password-strength/password-strength.component.mjs +92 -0
  464. package/esm2022/password-strength/lib/password-strength/password-strength.directive.mjs +210 -0
  465. package/esm2022/password-strength/lib/password-strength/password-strength.module.mjs +19 -0
  466. package/esm2022/password-strength/lib/password-strength/types/password-positions.mjs +2 -0
  467. package/esm2022/password-strength/lib/password-strength/types/password-strengths.mjs +2 -0
  468. package/esm2022/password-strength/public-api.mjs +4 -0
  469. package/esm2022/password-strength/seniorsistemas-angular-components-password-strength.mjs +5 -0
  470. package/esm2022/picklist/lib/picklist/picklist.component.mjs +299 -0
  471. package/esm2022/picklist/lib/picklist/picklist.module.mjs +36 -0
  472. package/esm2022/picklist/lib/picklist/types/index.mjs +2 -0
  473. package/esm2022/picklist/lib/picklist/types/picklist-item.mjs +2 -0
  474. package/esm2022/picklist/lib/picklist/types/picklist-template-types.mjs +2 -0
  475. package/esm2022/picklist/public-api.mjs +5 -0
  476. package/esm2022/picklist/seniorsistemas-angular-components-picklist.mjs +5 -0
  477. package/esm2022/product-header/lib/product-header/product-header.component.mjs +44 -0
  478. package/esm2022/product-header/lib/product-header/product-header.module.mjs +20 -0
  479. package/esm2022/product-header/public-api.mjs +3 -0
  480. package/esm2022/product-header/seniorsistemas-angular-components-product-header.mjs +5 -0
  481. package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/confirmation-texts.mjs +2 -0
  482. package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/cropper-labels-config.mjs +2 -0
  483. package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/file-validation-errors.mjs +2 -0
  484. package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/index.mjs +2 -0
  485. package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/profile-picture-picker-data.mjs +2 -0
  486. package/esm2022/profile-picture-picker/lib/profile-picture-picker/profile-picture-picker.component.mjs +277 -0
  487. package/esm2022/profile-picture-picker/lib/profile-picture-picker/profile-picture-picker.module.mjs +25 -0
  488. package/esm2022/profile-picture-picker/lib/profile-picture-picker/validators/index.mjs +2 -0
  489. package/esm2022/profile-picture-picker/lib/profile-picture-picker/validators/validators.mjs +28 -0
  490. package/esm2022/profile-picture-picker/public-api.mjs +4 -0
  491. package/esm2022/profile-picture-picker/seniorsistemas-angular-components-profile-picture-picker.mjs +5 -0
  492. package/esm2022/progressbar/lib/progressbar/components/progressbar-determinate/progressbar-determinate.component.mjs +60 -0
  493. package/esm2022/progressbar/lib/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.mjs +19 -0
  494. package/esm2022/progressbar/lib/progressbar/progressbar.component.mjs +57 -0
  495. package/esm2022/progressbar/lib/progressbar/progressbar.module.mjs +21 -0
  496. package/esm2022/progressbar/lib/progressbar/types/index.mjs +2 -0
  497. package/esm2022/progressbar/lib/progressbar/types/progressbar-colors.mjs +2 -0
  498. package/esm2022/progressbar/lib/progressbar/types/progressbar-mode.mjs +2 -0
  499. package/esm2022/progressbar/public-api.mjs +4 -0
  500. package/esm2022/progressbar/seniorsistemas-angular-components-progressbar.mjs +5 -0
  501. package/esm2022/public-api.mjs +2 -0
  502. package/esm2022/radio-button/lib/radio-button/radio-button.component.mjs +82 -0
  503. package/esm2022/radio-button/lib/radio-button-group/models/radio-button-group.models.mjs +2 -0
  504. package/esm2022/radio-button/lib/radio-button-group/radio-button-group.component.mjs +62 -0
  505. package/esm2022/radio-button/lib/services/radio-button-registry.service.mjs +38 -0
  506. package/esm2022/radio-button/public-api.mjs +3 -0
  507. package/esm2022/radio-button/seniorsistemas-angular-components-radio-button.mjs +5 -0
  508. package/esm2022/rating-scale/lib/rating-scale/models/index.mjs +2 -0
  509. package/esm2022/rating-scale/lib/rating-scale/models/rating-scale-node.mjs +2 -0
  510. package/esm2022/rating-scale/lib/rating-scale/rating-scale.component.mjs +54 -0
  511. package/esm2022/rating-scale/lib/rating-scale/rating-scale.module.mjs +24 -0
  512. package/esm2022/rating-scale/public-api.mjs +3 -0
  513. package/esm2022/rating-scale/seniorsistemas-angular-components-rating-scale.mjs +5 -0
  514. package/esm2022/select/lib/select/components/select-option/select-option.component.mjs +27 -0
  515. package/esm2022/select/lib/select/select.component.mjs +712 -0
  516. package/esm2022/select/public-api.mjs +2 -0
  517. package/esm2022/select/seniorsistemas-angular-components-select.mjs +5 -0
  518. package/esm2022/select-button/lib/select-button/components/select-button-item/select-button-item.component.mjs +28 -0
  519. package/esm2022/select-button/lib/select-button/models/select-button-item.mjs +2 -0
  520. package/esm2022/select-button/lib/select-button/select-button.component.mjs +122 -0
  521. package/esm2022/select-button/lib/select-button/select-button.module.mjs +23 -0
  522. package/esm2022/select-button/public-api.mjs +3 -0
  523. package/esm2022/select-button/seniorsistemas-angular-components-select-button.mjs +5 -0
  524. package/esm2022/seniorsistemas-angular-components.mjs +5 -0
  525. package/esm2022/shared/lib/shared/border-button/border-button.component.mjs +19 -0
  526. package/esm2022/shared/lib/shared/border-button/border-button.module.mjs +19 -0
  527. package/esm2022/shared/lib/shared/helpers.mjs +31 -0
  528. package/esm2022/shared/lib/shared/models/border-button-options.mjs +2 -0
  529. package/esm2022/shared/lib/shared/models/severities.mjs +9 -0
  530. package/esm2022/shared/public-api.mjs +5 -0
  531. package/esm2022/shared/seniorsistemas-angular-components-shared.mjs +5 -0
  532. package/esm2022/sidebar/lib/sidebar/sidebar.component.mjs +114 -0
  533. package/esm2022/sidebar/lib/sidebar/sidebar.module.mjs +20 -0
  534. package/esm2022/sidebar/public-api.mjs +3 -0
  535. package/esm2022/sidebar/seniorsistemas-angular-components-sidebar.mjs +5 -0
  536. package/esm2022/slide-panel/lib/slide-panel/slide-panel.component.mjs +137 -0
  537. package/esm2022/slide-panel/lib/slide-panel/slide-panel.module.mjs +20 -0
  538. package/esm2022/slide-panel/lib/slide-panel/slide-panel.service.mjs +26 -0
  539. package/esm2022/slide-panel/public-api.mjs +4 -0
  540. package/esm2022/slide-panel/seniorsistemas-angular-components-slide-panel.mjs +5 -0
  541. package/esm2022/slider/lib/slider/slider.component.mjs +601 -0
  542. package/esm2022/slider/lib/slider/slider.module.mjs +19 -0
  543. package/esm2022/slider/public-api.mjs +3 -0
  544. package/esm2022/slider/seniorsistemas-angular-components-slider.mjs +5 -0
  545. package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition/speech-recognition.component.mjs +217 -0
  546. package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition.module.mjs +24 -0
  547. package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition.service.mjs +146 -0
  548. package/esm2022/speech-recognition/lib/speech-recognition/text-to-speech.service.mjs +81 -0
  549. package/esm2022/speech-recognition/public-api.mjs +5 -0
  550. package/esm2022/speech-recognition/seniorsistemas-angular-components-speech-recognition.mjs +5 -0
  551. package/esm2022/split-button/lib/split-button/models/index.mjs +2 -0
  552. package/esm2022/split-button/lib/split-button/models/split-button-option.mjs +2 -0
  553. package/esm2022/split-button/lib/split-button/models/split-button-type.mjs +2 -0
  554. package/esm2022/split-button/lib/split-button/split-button.component.mjs +64 -0
  555. package/esm2022/split-button/lib/split-button/split-button.module.mjs +18 -0
  556. package/esm2022/split-button/public-api.mjs +4 -0
  557. package/esm2022/split-button/seniorsistemas-angular-components-split-button.mjs +5 -0
  558. package/esm2022/star-rating/public-api.mjs +2 -0
  559. package/esm2022/star-rating/seniorsistemas-angular-components-star-rating.mjs +5 -0
  560. package/esm2022/star-rating/star-rating/star-rating-models.mjs +2 -0
  561. package/esm2022/star-rating/star-rating/star-rating.component.mjs +63 -0
  562. package/esm2022/stats-card/lib/stats-card/stats-card.component.mjs +119 -0
  563. package/esm2022/stats-card/lib/stats-card/stats-card.module.mjs +19 -0
  564. package/esm2022/stats-card/public-api.mjs +3 -0
  565. package/esm2022/stats-card/seniorsistemas-angular-components-stats-card.mjs +5 -0
  566. package/esm2022/steps/lib/steps/steps.component.mjs +122 -0
  567. package/esm2022/steps/lib/steps/steps.module.mjs +19 -0
  568. package/esm2022/steps/public-api.mjs +3 -0
  569. package/esm2022/steps/seniorsistemas-angular-components-steps.mjs +5 -0
  570. package/esm2022/structure/lib/structure/footer.component.mjs +14 -0
  571. package/esm2022/structure/lib/structure/header.component.mjs +14 -0
  572. package/esm2022/structure/lib/structure/structure.module.mjs +19 -0
  573. package/esm2022/structure/public-api.mjs +5 -0
  574. package/esm2022/structure/seniorsistemas-angular-components-structure.mjs +5 -0
  575. package/esm2022/switch/lib/switch/switch.component.mjs +93 -0
  576. package/esm2022/switch/lib/switch/switch.module.mjs +18 -0
  577. package/esm2022/switch/public-api.mjs +3 -0
  578. package/esm2022/switch/seniorsistemas-angular-components-switch.mjs +5 -0
  579. package/esm2022/table/lib/locale-utils.mjs +15 -0
  580. package/esm2022/table/lib/table/export-utils.mjs +112 -0
  581. package/esm2022/table/lib/table/navigation/navigation.directive.mjs +130 -0
  582. package/esm2022/table/lib/table/row-toggler/row-toggler.directive.mjs +38 -0
  583. package/esm2022/table/lib/table/table-column/index.mjs +3 -0
  584. package/esm2022/table/lib/table/table-column/models/badge-column.interface.mjs +2 -0
  585. package/esm2022/table/lib/table/table-column/models/badge-configs.interface.mjs +2 -0
  586. package/esm2022/table/lib/table/table-column/models/column-colors.mjs +2 -0
  587. package/esm2022/table/lib/table/table-column/models/column-values.interface.mjs +2 -0
  588. package/esm2022/table/lib/table/table-column/models/column.interface.mjs +2 -0
  589. package/esm2022/table/lib/table/table-column/models/dynamic-editable-grid.interface.mjs +2 -0
  590. package/esm2022/table/lib/table/table-column/models/enum-badge-colors.mjs +10 -0
  591. package/esm2022/table/lib/table/table-column/models/enum-column-field-type.mjs +13 -0
  592. package/esm2022/table/lib/table/table-column/models/index.mjs +11 -0
  593. package/esm2022/table/lib/table/table-column/models/locale-options.interface.mjs +2 -0
  594. package/esm2022/table/lib/table/table-column/models/number-locale-options.interface.mjs +2 -0
  595. package/esm2022/table/lib/table/table-column/table-columns.component.mjs +299 -0
  596. package/esm2022/table/lib/table/table-paging/index.mjs +3 -0
  597. package/esm2022/table/lib/table/table-paging/models/custom-action.interface.mjs +2 -0
  598. package/esm2022/table/lib/table/table-paging/models/index.mjs +2 -0
  599. package/esm2022/table/lib/table/table-paging/table-paging.component.mjs +321 -0
  600. package/esm2022/table/lib/table/table.module.mjs +27 -0
  601. package/esm2022/table/public-api.mjs +6 -0
  602. package/esm2022/table/seniorsistemas-angular-components-table.mjs +5 -0
  603. package/esm2022/table-header/lib/table-header/table-header-checkbox.component.mjs +151 -0
  604. package/esm2022/table-header/lib/table-header/table-header-checkox.module.mjs +20 -0
  605. package/esm2022/table-header/public-api.mjs +3 -0
  606. package/esm2022/table-header/seniorsistemas-angular-components-table-header.mjs +5 -0
  607. package/esm2022/tabs/lib/tab-item/tab-item.component.mjs +36 -0
  608. package/esm2022/tabs/lib/tabs/tabs.component.mjs +51 -0
  609. package/esm2022/tabs/public-api.mjs +3 -0
  610. package/esm2022/tabs/seniorsistemas-angular-components-tabs.mjs +5 -0
  611. package/esm2022/template/lib/template/template.directive.mjs +22 -0
  612. package/esm2022/template/lib/template/template.module.mjs +17 -0
  613. package/esm2022/template/public-api.mjs +3 -0
  614. package/esm2022/template/seniorsistemas-angular-components-template.mjs +5 -0
  615. package/esm2022/text-area/lib/text-area/text-area.component.mjs +116 -0
  616. package/esm2022/text-area/lib/text-area.module.mjs +35 -0
  617. package/esm2022/text-area/public-api.mjs +3 -0
  618. package/esm2022/text-area/seniorsistemas-angular-components-text-area.mjs +5 -0
  619. package/esm2022/text-area-ia/lib/services/IAssist/iassist.service.mjs +77 -0
  620. package/esm2022/text-area-ia/lib/services/IAssist/models/iassist-input-data.mjs +3 -0
  621. package/esm2022/text-area-ia/lib/services/IAssist/models/iassist-response.mjs +3 -0
  622. package/esm2022/text-area-ia/lib/text-area-ia/text-area-ia.component.mjs +150 -0
  623. package/esm2022/text-area-ia/lib/text-area-ia/text-area-ia.module.mjs +50 -0
  624. package/esm2022/text-area-ia/public-api.mjs +3 -0
  625. package/esm2022/text-area-ia/seniorsistemas-angular-components-text-area-ia.mjs +5 -0
  626. package/esm2022/thumbnail/lib/thumbnail/thumbnail-size.mjs +2 -0
  627. package/esm2022/thumbnail/lib/thumbnail/thumbnail.component.mjs +77 -0
  628. package/esm2022/thumbnail/lib/thumbnail/thumbnail.module.mjs +20 -0
  629. package/esm2022/thumbnail/lib/thumbnail/thumbnail.service.mjs +62 -0
  630. package/esm2022/thumbnail/public-api.mjs +4 -0
  631. package/esm2022/thumbnail/seniorsistemas-angular-components-thumbnail.mjs +5 -0
  632. package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.mjs +17 -0
  633. package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.mjs +42 -0
  634. package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/thumbnail-item.component.mjs +64 -0
  635. package/esm2022/thumbnails/lib/thumbnails/models/thumbnails-item.mjs +2 -0
  636. package/esm2022/thumbnails/lib/thumbnails/thumbnails.component.mjs +48 -0
  637. package/esm2022/thumbnails/lib/thumbnails/thumbnails.module.mjs +24 -0
  638. package/esm2022/thumbnails/public-api.mjs +3 -0
  639. package/esm2022/thumbnails/seniorsistemas-angular-components-thumbnails.mjs +5 -0
  640. package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu/tiered-menu.component.mjs +303 -0
  641. package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-divider/tiered-menu-divider.component.mjs +11 -0
  642. package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-item/tiered-menu-item.component.mjs +73 -0
  643. package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-nested/tiered-menu-nested.component.mjs +179 -0
  644. package/esm2022/tiered-menu/lib/tiered-menu/models/index.mjs +2 -0
  645. package/esm2022/tiered-menu/lib/tiered-menu/models/tiered-menu-item-data.mjs +2 -0
  646. package/esm2022/tiered-menu/lib/tiered-menu/models/tiered-menu-item-internal-data.mjs +2 -0
  647. package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.event.service.mjs +17 -0
  648. package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.global.service.mjs +11 -0
  649. package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.service.mjs +54 -0
  650. package/esm2022/tiered-menu/lib/tiered-menu/tiered-menu.directive.mjs +234 -0
  651. package/esm2022/tiered-menu/lib/tiered-menu/tiered-menu.module.mjs +34 -0
  652. package/esm2022/tiered-menu/public-api.mjs +6 -0
  653. package/esm2022/tiered-menu/seniorsistemas-angular-components-tiered-menu.mjs +5 -0
  654. package/esm2022/tile/lib/tile/tile.component.mjs +65 -0
  655. package/esm2022/tile/lib/tile/tile.module.mjs +20 -0
  656. package/esm2022/tile/public-api.mjs +3 -0
  657. package/esm2022/tile/seniorsistemas-angular-components-tile.mjs +5 -0
  658. package/esm2022/timeline/lib/timeline/components/horizontal-timeline/horizontal-timeline.component.mjs +24 -0
  659. package/esm2022/timeline/lib/timeline/components/horizontal-timeline/horizontal-timeline.module.mjs +20 -0
  660. package/esm2022/timeline/lib/timeline/components/timeline-icon-item/timeline-icon-item.component.mjs +26 -0
  661. package/esm2022/timeline/lib/timeline/components/timeline-icon-item/timeline-icon-item.module.mjs +19 -0
  662. package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.mjs +21 -0
  663. package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.mjs +33 -0
  664. package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/range-line/range-line.component.mjs +11 -0
  665. package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.mjs +29 -0
  666. package/esm2022/timeline/lib/timeline/components/vertical-timeline/vertical-timeline.component.mjs +60 -0
  667. package/esm2022/timeline/lib/timeline/components/vertical-timeline/vertical-timeline.module.mjs +33 -0
  668. package/esm2022/timeline/lib/timeline/models/timeline-item-severity.mjs +7 -0
  669. package/esm2022/timeline/lib/timeline/models/timeline-item-size.mjs +6 -0
  670. package/esm2022/timeline/lib/timeline/models/timeline-item.mjs +44 -0
  671. package/esm2022/timeline/lib/timeline/timeline.component.mjs +66 -0
  672. package/esm2022/timeline/lib/timeline/timeline.module.mjs +32 -0
  673. package/esm2022/timeline/public-api.mjs +6 -0
  674. package/esm2022/timeline/seniorsistemas-angular-components-timeline.mjs +5 -0
  675. package/esm2022/toast/lib/toast/toast.component.mjs +46 -0
  676. package/esm2022/toast/lib/toast/toast.module.mjs +17 -0
  677. package/esm2022/toast/lib/toast/toast.service.mjs +68 -0
  678. package/esm2022/toast/lib/toast/types/toast.mjs +2 -0
  679. package/esm2022/toast/public-api.mjs +4 -0
  680. package/esm2022/toast/seniorsistemas-angular-components-toast.mjs +5 -0
  681. package/esm2022/token-list/lib/token-list/models/index.mjs +2 -0
  682. package/esm2022/token-list/lib/token-list/models/token.mjs +2 -0
  683. package/esm2022/token-list/lib/token-list/token-list.component.mjs +42 -0
  684. package/esm2022/token-list/lib/token-list/token-list.module.mjs +18 -0
  685. package/esm2022/token-list/public-api.mjs +4 -0
  686. package/esm2022/token-list/seniorsistemas-angular-components-token-list.mjs +5 -0
  687. package/esm2022/tooltip/lib/tooltip/models/mobile-behavior.mjs +2 -0
  688. package/esm2022/tooltip/lib/tooltip/models/tooltip-event.mjs +2 -0
  689. package/esm2022/tooltip/lib/tooltip/models/tooltip-position.mjs +2 -0
  690. package/esm2022/tooltip/lib/tooltip/tooltip.component.mjs +18 -0
  691. package/esm2022/tooltip/lib/tooltip/tooltip.directive.mjs +339 -0
  692. package/esm2022/tooltip/lib/tooltip/tooltip.module.mjs +19 -0
  693. package/esm2022/tooltip/public-api.mjs +3 -0
  694. package/esm2022/tooltip/seniorsistemas-angular-components-tooltip.mjs +5 -0
  695. package/esm2022/utils/lib/utils/breakpoints.mjs +11 -0
  696. package/esm2022/utils/lib/utils/utils.mjs +51 -0
  697. package/esm2022/utils/public-api.mjs +3 -0
  698. package/esm2022/utils/seniorsistemas-angular-components-utils.mjs +5 -0
  699. package/esm2022/workspace-switch/lib/workspace-switch/models/index.mjs +2 -0
  700. package/esm2022/workspace-switch/lib/workspace-switch/models/workspace.mjs +2 -0
  701. package/esm2022/workspace-switch/lib/workspace-switch/workspace-switch.component.mjs +137 -0
  702. package/esm2022/workspace-switch/lib/workspace-switch/workspace-switch.module.mjs +18 -0
  703. package/esm2022/workspace-switch/public-api.mjs +3 -0
  704. package/esm2022/workspace-switch/seniorsistemas-angular-components-workspace-switch.mjs +5 -0
  705. package/fesm2022/seniorsistemas-angular-components-accordion.mjs +10 -10
  706. package/fesm2022/seniorsistemas-angular-components-alert.mjs +7 -7
  707. package/fesm2022/seniorsistemas-angular-components-badge.mjs +7 -7
  708. package/fesm2022/seniorsistemas-angular-components-bignumber-input.mjs +7 -7
  709. package/fesm2022/seniorsistemas-angular-components-breadcrumb.mjs +7 -7
  710. package/fesm2022/seniorsistemas-angular-components-button.mjs +7 -7
  711. package/fesm2022/seniorsistemas-angular-components-calendar-mask.mjs +7 -7
  712. package/fesm2022/seniorsistemas-angular-components-card.mjs +7 -7
  713. package/fesm2022/seniorsistemas-angular-components-chat.mjs +10 -10
  714. package/fesm2022/seniorsistemas-angular-components-checkbox-list.mjs +7 -7
  715. package/fesm2022/seniorsistemas-angular-components-checkbox.mjs +3 -3
  716. package/fesm2022/seniorsistemas-angular-components-chips.mjs +10 -10
  717. package/fesm2022/seniorsistemas-angular-components-code-editor.mjs +11 -11
  718. package/fesm2022/seniorsistemas-angular-components-collapse-link.mjs +7 -7
  719. package/fesm2022/seniorsistemas-angular-components-common.mjs +20 -20
  720. package/fesm2022/seniorsistemas-angular-components-confirm-dialog.mjs +6 -6
  721. package/fesm2022/seniorsistemas-angular-components-control-errors.mjs +7 -7
  722. package/fesm2022/seniorsistemas-angular-components-country-phone-picker.mjs +10 -10
  723. package/fesm2022/seniorsistemas-angular-components-currency.mjs +3 -3
  724. package/fesm2022/seniorsistemas-angular-components-custom-fields.mjs +10 -10
  725. package/fesm2022/seniorsistemas-angular-components-dialog.mjs +9 -9
  726. package/fesm2022/seniorsistemas-angular-components-dialog.mjs.map +1 -1
  727. package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs +121 -116
  728. package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs.map +1 -1
  729. package/fesm2022/seniorsistemas-angular-components-editable-overlay.mjs +7 -7
  730. package/fesm2022/seniorsistemas-angular-components-empty-state.mjs +10 -10
  731. package/fesm2022/seniorsistemas-angular-components-fieldset.mjs +8 -8
  732. package/fesm2022/seniorsistemas-angular-components-fieldset.mjs.map +1 -1
  733. package/fesm2022/seniorsistemas-angular-components-file-upload.mjs +10 -10
  734. package/fesm2022/seniorsistemas-angular-components-gantt.mjs +10 -10
  735. package/fesm2022/seniorsistemas-angular-components-global-search.mjs +10 -10
  736. package/fesm2022/seniorsistemas-angular-components-grid-menu.mjs +10 -10
  737. package/fesm2022/seniorsistemas-angular-components-help-popover.mjs +10 -10
  738. package/fesm2022/seniorsistemas-angular-components-ia-insight.mjs +16 -16
  739. package/fesm2022/seniorsistemas-angular-components-image-cropper.mjs +10 -10
  740. package/fesm2022/seniorsistemas-angular-components-infinite-scroll.mjs +7 -7
  741. package/fesm2022/seniorsistemas-angular-components-info-sign.mjs +10 -10
  742. package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs +28 -28
  743. package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs.map +1 -1
  744. package/fesm2022/seniorsistemas-angular-components-interactive-content.mjs +7 -3
  745. package/fesm2022/seniorsistemas-angular-components-interactive-content.mjs.map +1 -1
  746. package/fesm2022/seniorsistemas-angular-components-kanban.mjs +19 -19
  747. package/fesm2022/seniorsistemas-angular-components-label-value.mjs +7 -7
  748. package/fesm2022/seniorsistemas-angular-components-loading-state.mjs +16 -16
  749. package/fesm2022/seniorsistemas-angular-components-locale.mjs +34 -34
  750. package/fesm2022/seniorsistemas-angular-components-localized-number-input.mjs +7 -7
  751. package/fesm2022/seniorsistemas-angular-components-mask.mjs +7 -7
  752. package/fesm2022/seniorsistemas-angular-components-mouse-events.mjs +10 -10
  753. package/fesm2022/seniorsistemas-angular-components-navigation-button.mjs +7 -7
  754. package/fesm2022/seniorsistemas-angular-components-number-input.mjs +7 -7
  755. package/fesm2022/seniorsistemas-angular-components-numeric.mjs +10 -10
  756. package/fesm2022/seniorsistemas-angular-components-object-card.mjs +13 -13
  757. package/fesm2022/seniorsistemas-angular-components-paginator.mjs +3 -3
  758. package/fesm2022/seniorsistemas-angular-components-paginator.mjs.map +1 -1
  759. package/fesm2022/seniorsistemas-angular-components-panel.mjs +7 -7
  760. package/fesm2022/seniorsistemas-angular-components-password-strength.mjs +10 -10
  761. package/fesm2022/seniorsistemas-angular-components-picklist.mjs +7 -7
  762. package/fesm2022/seniorsistemas-angular-components-product-header.mjs +7 -7
  763. package/fesm2022/seniorsistemas-angular-components-profile-picture-picker.mjs +7 -7
  764. package/fesm2022/seniorsistemas-angular-components-progressbar.mjs +13 -13
  765. package/fesm2022/seniorsistemas-angular-components-radio-button.mjs +182 -0
  766. package/fesm2022/seniorsistemas-angular-components-radio-button.mjs.map +1 -0
  767. package/fesm2022/seniorsistemas-angular-components-rating-scale.mjs +7 -7
  768. package/fesm2022/seniorsistemas-angular-components-select-button.mjs +10 -10
  769. package/fesm2022/seniorsistemas-angular-components-select.mjs +6 -6
  770. package/fesm2022/seniorsistemas-angular-components-shared.mjs +7 -7
  771. package/fesm2022/seniorsistemas-angular-components-sidebar.mjs +42 -23
  772. package/fesm2022/seniorsistemas-angular-components-sidebar.mjs.map +1 -1
  773. package/fesm2022/seniorsistemas-angular-components-slide-panel.mjs +10 -10
  774. package/fesm2022/seniorsistemas-angular-components-slider.mjs +7 -7
  775. package/fesm2022/seniorsistemas-angular-components-speech-recognition.mjs +13 -13
  776. package/fesm2022/seniorsistemas-angular-components-split-button.mjs +7 -7
  777. package/fesm2022/seniorsistemas-angular-components-star-rating.mjs +4 -4
  778. package/fesm2022/seniorsistemas-angular-components-star-rating.mjs.map +1 -1
  779. package/fesm2022/seniorsistemas-angular-components-stats-card.mjs +7 -7
  780. package/fesm2022/seniorsistemas-angular-components-steps.mjs +7 -7
  781. package/fesm2022/seniorsistemas-angular-components-structure.mjs +10 -10
  782. package/fesm2022/seniorsistemas-angular-components-switch.mjs +7 -7
  783. package/fesm2022/seniorsistemas-angular-components-table-header.mjs +7 -7
  784. package/fesm2022/seniorsistemas-angular-components-table.mjs +16 -16
  785. package/fesm2022/seniorsistemas-angular-components-tabs.mjs +6 -6
  786. package/fesm2022/seniorsistemas-angular-components-tabs.mjs.map +1 -1
  787. package/fesm2022/seniorsistemas-angular-components-template.mjs +7 -7
  788. package/fesm2022/seniorsistemas-angular-components-text-area-ia.mjs +10 -10
  789. package/fesm2022/seniorsistemas-angular-components-text-area.mjs +7 -7
  790. package/fesm2022/seniorsistemas-angular-components-thumbnail.mjs +10 -10
  791. package/fesm2022/seniorsistemas-angular-components-thumbnails.mjs +16 -16
  792. package/fesm2022/seniorsistemas-angular-components-tiered-menu.mjs +54 -92
  793. package/fesm2022/seniorsistemas-angular-components-tiered-menu.mjs.map +1 -1
  794. package/fesm2022/seniorsistemas-angular-components-tile.mjs +7 -7
  795. package/fesm2022/seniorsistemas-angular-components-timeline.mjs +40 -40
  796. package/fesm2022/seniorsistemas-angular-components-toast.mjs +10 -10
  797. package/fesm2022/seniorsistemas-angular-components-token-list.mjs +7 -7
  798. package/fesm2022/seniorsistemas-angular-components-tooltip.mjs +10 -10
  799. package/fesm2022/seniorsistemas-angular-components-utils.mjs +13 -4
  800. package/fesm2022/seniorsistemas-angular-components-utils.mjs.map +1 -1
  801. package/fesm2022/seniorsistemas-angular-components-workspace-switch.mjs +7 -7
  802. package/fesm2022/seniorsistemas-angular-components.mjs +1 -0
  803. package/fesm2022/seniorsistemas-angular-components.mjs.map +1 -1
  804. package/fieldset/lib/fieldset/fieldset.component.d.ts +1 -1
  805. package/index.d.ts +5 -0
  806. package/interactive-content/lib/interactive-content/interactive-content.directive.d.ts +2 -1
  807. package/lib/locale/fallback.d.ts +1 -0
  808. package/package.json +7 -90
  809. package/public-api.d.ts +1 -0
  810. package/radio-button/index.d.ts +5 -0
  811. package/radio-button/lib/radio-button/radio-button.component.d.ts +31 -0
  812. package/radio-button/lib/radio-button-group/models/radio-button-group.models.d.ts +5 -0
  813. package/radio-button/lib/radio-button-group/radio-button-group.component.d.ts +25 -0
  814. package/radio-button/lib/services/radio-button-registry.service.d.ts +12 -0
  815. package/radio-button/public-api.d.ts +3 -0
  816. package/select/index.d.ts +5 -0
  817. package/select/lib/select/components/select-option/select-option.component.d.ts +14 -0
  818. package/select/lib/select/select.component.d.ts +275 -0
  819. package/select/public-api.d.ts +1 -0
  820. package/sidebar/lib/sidebar/sidebar.component.d.ts +7 -6
  821. package/src/lib/styles/tailwind.scss +3 -0
  822. package/tailwind.css +80 -30
  823. package/utils/lib/utils/utils.d.ts +2 -0
  824. package/accordion/package.json +0 -3
  825. package/alert/package.json +0 -3
  826. package/badge/package.json +0 -3
  827. package/bignumber-input/package.json +0 -3
  828. package/breadcrumb/package.json +0 -3
  829. package/button/package.json +0 -3
  830. package/calendar-mask/package.json +0 -3
  831. package/card/package.json +0 -3
  832. package/chat/package.json +0 -3
  833. package/checkbox/package.json +0 -3
  834. package/checkbox-list/package.json +0 -3
  835. package/chips/package.json +0 -3
  836. package/code-editor/package.json +0 -3
  837. package/collapse-link/package.json +0 -3
  838. package/common/package.json +0 -3
  839. package/confirm-dialog/package.json +0 -3
  840. package/control-errors/package.json +0 -3
  841. package/country-phone-picker/package.json +0 -3
  842. package/currency/package.json +0 -3
  843. package/custom-fields/package.json +0 -3
  844. package/dialog/package.json +0 -3
  845. package/dynamic-form/package.json +0 -3
  846. package/editable-overlay/package.json +0 -3
  847. package/empty-state/package.json +0 -3
  848. package/fieldset/package.json +0 -3
  849. package/file-upload/package.json +0 -3
  850. package/gantt/package.json +0 -3
  851. package/global-search/package.json +0 -3
  852. package/grid-menu/package.json +0 -3
  853. package/help-popover/package.json +0 -3
  854. package/ia-insight/package.json +0 -3
  855. package/image-cropper/package.json +0 -3
  856. package/infinite-scroll/package.json +0 -3
  857. package/info-sign/package.json +0 -3
  858. package/inline-edit/package.json +0 -3
  859. package/interactive-content/package.json +0 -3
  860. package/kanban/package.json +0 -3
  861. package/label-value/package.json +0 -3
  862. package/loading-state/package.json +0 -3
  863. package/locale/package.json +0 -3
  864. package/localized-number-input/package.json +0 -3
  865. package/mask/package.json +0 -3
  866. package/mouse-events/package.json +0 -3
  867. package/navigation-button/package.json +0 -3
  868. package/number-input/package.json +0 -3
  869. package/numeric/package.json +0 -3
  870. package/object-card/package.json +0 -3
  871. package/paginator/package.json +0 -3
  872. package/panel/package.json +0 -3
  873. package/password-strength/package.json +0 -3
  874. package/picklist/package.json +0 -3
  875. package/product-header/package.json +0 -3
  876. package/profile-picture-picker/package.json +0 -3
  877. package/progressbar/package.json +0 -3
  878. package/rating-scale/package.json +0 -3
  879. package/select-button/package.json +0 -3
  880. package/shared/package.json +0 -3
  881. package/sidebar/package.json +0 -3
  882. package/slide-panel/package.json +0 -3
  883. package/slider/package.json +0 -3
  884. package/speech-recognition/package.json +0 -3
  885. package/split-button/package.json +0 -3
  886. package/star-rating/package.json +0 -3
  887. package/stats-card/package.json +0 -3
  888. package/steps/package.json +0 -3
  889. package/structure/package.json +0 -3
  890. package/switch/package.json +0 -3
  891. package/table/package.json +0 -3
  892. package/table-header/package.json +0 -3
  893. package/tabs/package.json +0 -3
  894. package/template/package.json +0 -3
  895. package/text-area/package.json +0 -3
  896. package/text-area-ia/package.json +0 -3
  897. package/thumbnail/package.json +0 -3
  898. package/thumbnails/package.json +0 -3
  899. package/tiered-menu/lib/tiered-menu/utils.d.ts +0 -2
  900. package/tiered-menu/package.json +0 -3
  901. package/tile/package.json +0 -3
  902. package/timeline/package.json +0 -3
  903. package/toast/package.json +0 -3
  904. package/token-list/package.json +0 -3
  905. package/tooltip/package.json +0 -3
  906. package/utils/package.json +0 -3
  907. package/workspace-switch/package.json +0 -3
@@ -0,0 +1,333 @@
1
+ export const fallback = {
2
+ "platform.angular_components.attachment": "anexo",
3
+ "platform.angular_components.watch": "assistir",
4
+ "platform.angular_components.view": "visualizar",
5
+ "platform.angular_components.listen": "ouvir",
6
+ "platform.angular_components.drag_your_photo_or": "Arraste sua foto ou",
7
+ "platform.angular_components.select_a_file": "selecione um arquivo",
8
+ "platform.angular_components.change_photo": "Alterar foto",
9
+ "platform.angular_components.remove_image": "Remover imagem",
10
+ "platform.angular_components.confirmation_remove_image": "Deseja remover a imagem? Não pode ser revertida.",
11
+ "platform.angular_components.strong": "Forte",
12
+ "platform.angular_components.medium": "Média",
13
+ "platform.angular_components.weak": "Fraca",
14
+ "platform.angular_components.invalid_value": "Valor inválido",
15
+ "platform.angular_components.insight_intro": "Olá! Aqui você encontrará insights valiosos a partir dos seus dados",
16
+ "platform.angular_components.insight_empty": "Ainda não há Insights na página",
17
+ "platform.angular_components.error_loading_insight_alt": "Não foi possível carregar o insight no momento. Por favor, verifique sua conexão com a internet e tente novamente.",
18
+ "platform.angular_components.loading_insight": "Carregando insight valioso...",
19
+ "platform.angular_components.insight_no_permission": "Olá! Você não possui acesso à página de insights. Entre em contato com o administrador para saber mais",
20
+ "platform.angular_components.count_items_in_target": "{{ count }} itens em {{ target }}",
21
+ "platform.angular_components.count_items_selected": "{{ count }} itens selecionados",
22
+ "platform.angular_components.january": "Janeiro",
23
+ "platform.angular_components.february": "Fevereiro",
24
+ "platform.angular_components.march": "Março",
25
+ "platform.angular_components.april": "Abril",
26
+ "platform.angular_components.may": "Maio",
27
+ "platform.angular_components.june": "Junho",
28
+ "platform.angular_components.july": "Julho",
29
+ "platform.angular_components.august": "Agosto",
30
+ "platform.angular_components.september": "Setembro",
31
+ "platform.angular_components.october": "Outubro",
32
+ "platform.angular_components.november": "Novembro",
33
+ "platform.angular_components.december": "Dezembro",
34
+ "platform.angular_components.january_short": "Jan",
35
+ "platform.angular_components.february_short": "Fev",
36
+ "platform.angular_components.march_short": "Mar",
37
+ "platform.angular_components.april_short": "Abr",
38
+ "platform.angular_components.may_short": "Mai",
39
+ "platform.angular_components.june_short": "Jun",
40
+ "platform.angular_components.july_short": "Jul",
41
+ "platform.angular_components.august_short": "Ago",
42
+ "platform.angular_components.september_short": "Set",
43
+ "platform.angular_components.october_short": "Out",
44
+ "platform.angular_components.november_short": "Nov",
45
+ "platform.angular_components.december_short": "Dez",
46
+ "platform.angular_components.sunday": "Domingo",
47
+ "platform.angular_components.monday": "Segunda-feira",
48
+ "platform.angular_components.tuesday": "Terça-feira",
49
+ "platform.angular_components.wednesday": "Quarta-feira",
50
+ "platform.angular_components.thursday": "Quinta-feira",
51
+ "platform.angular_components.friday": "Sexta-feira",
52
+ "platform.angular_components.saturday": "Sábado",
53
+ "platform.angular_components.sunday_short": "Dom",
54
+ "platform.angular_components.monday_short": "Seg",
55
+ "platform.angular_components.tuesday_short": "Ter",
56
+ "platform.angular_components.wednesday_short": "Qua",
57
+ "platform.angular_components.thursday_short": "Qui",
58
+ "platform.angular_components.friday_short": "Sex",
59
+ "platform.angular_components.saturday_short": "Sáb",
60
+ "platform.angular_components.sunday_min": "D",
61
+ "platform.angular_components.monday_min": "S",
62
+ "platform.angular_components.tuesday_min": "T",
63
+ "platform.angular_components.wednesday_min": "Q",
64
+ "platform.angular_components.thursday_min": "Q",
65
+ "platform.angular_components.friday_min": "S",
66
+ "platform.angular_components.saturday_min": "S",
67
+ "platform.angular_components.today": "Hoje",
68
+ "platform.angular_components.hour_format": "24",
69
+ "platform.angular_components.date_format": "dd/mm/yy",
70
+ "platform.angular_components.ia_text_generator": "Gerador de texto por IA",
71
+ "platform.angular_components.attach_files": "Anexar arquivos",
72
+ "platform.angular_components.add_information": "Adicionar informação",
73
+ "platform.angular_components.add": "Adicionar",
74
+ "platform.angular_components.edit": "Editar",
75
+ "platform.angular_components.remove": "Remover",
76
+ "platform.angular_components.save": "Salvar",
77
+ "platform.angular_components.file_attached_successfully": "Arquivo anexado com sucesso",
78
+ "platform.angular_components.loading_file": "Carregando arquivo",
79
+ "platform.angular_components.iassist_text_generator": "IAssist Gerador de texto",
80
+ "platform.angular_components.copied_to_clipboard": "Copiado para área de transferência",
81
+ "platform.angular_components.copy_field_content": "Copiar conteúdo preenchido",
82
+ "platform.angular_components.generate_text": "Gerar texto",
83
+ "platform.angular_components.context": "Contexto",
84
+ "platform.angular_components.filters": "Filtros",
85
+ "platform.angular_components.filter": "Filtrar",
86
+ "platform.angular_components.clear": "Limpar",
87
+ "platform.angular_components.cancel": "Cancelar",
88
+ "platform.angular_components.select": "Selecionar",
89
+ "platform.angular_components.not_informed": "Não informado",
90
+ "platform.angular_components.advanced_search": "Pesquisa avançada",
91
+ "platform.angular_components.no_records_found": "Nenhum registro encontrado",
92
+ "platform.angular_components.total_record": "{{ count }} registro encontrado",
93
+ "platform.angular_components.total_records": "{{ count }} registros encontrados",
94
+ "platform.angular_components.total_records_selected": "{0} registros selecionados",
95
+ "platform.angular_components.country_name_br": "Brasil",
96
+ "platform.angular_components.country_name_us": "Estados Unidos",
97
+ "platform.angular_components.country_name_co": "Colômbia",
98
+ "platform.angular_components.country_name_ar": "Argentina",
99
+ "platform.angular_components.country_name_cl": "Chile",
100
+ "platform.angular_components.country_name_py": "Paraguai",
101
+ "platform.angular_components.country_name_uy": "Uruguai",
102
+ "platform.angular_components.country_name_cn": "China",
103
+ "platform.angular_components.country_name_ca": "Canadá",
104
+ "platform.angular_components.country_name_as": "Samoa Americana",
105
+ "platform.angular_components.country_name_ai": "Anguilla",
106
+ "platform.angular_components.country_name_ag": "Antígua e Barbuda",
107
+ "platform.angular_components.country_name_bs": "Bahamas",
108
+ "platform.angular_components.country_name_bb": "Barbados",
109
+ "platform.angular_components.country_name_bm": "Bermuda",
110
+ "platform.angular_components.country_name_vg": "Ilhas Virgens Britânicas",
111
+ "platform.angular_components.country_name_ky": "Ilhas Cayman",
112
+ "platform.angular_components.country_name_dm": "Dominica",
113
+ "platform.angular_components.country_name_do": "República Dominicana",
114
+ "platform.angular_components.country_name_gd": "Granada",
115
+ "platform.angular_components.country_name_gu": "Guam",
116
+ "platform.angular_components.country_name_jm": "Jamaica",
117
+ "platform.angular_components.country_name_ms": "Montserrat",
118
+ "platform.angular_components.country_name_mp": "Ilhas Mariana do Norte",
119
+ "platform.angular_components.country_name_pr": "Porto Rico",
120
+ "platform.angular_components.country_name_kn": "Saint Kitts and Nevis",
121
+ "platform.angular_components.country_name_lc": "Saint Lucia",
122
+ "platform.angular_components.country_name_vc": "Saint Vincent and the Grenadines",
123
+ "platform.angular_components.country_name_tt": "Trinidad e Tobago",
124
+ "platform.angular_components.country_name_tc": "Ilhas Turcas e Caicos",
125
+ "platform.angular_components.country_name_fi": "Finlândia",
126
+ "platform.angular_components.country_name_rs": "Sérvia",
127
+ "platform.angular_components.country_name_zm": "Zâmbia",
128
+ "platform.angular_components.country_name_af": "Afghanistão",
129
+ "platform.angular_components.country_name_al": "Albânia",
130
+ "platform.angular_components.country_name_hr": "Croácia",
131
+ "platform.angular_components.country_name_ec": "Equador",
132
+ "platform.angular_components.country_name_et": "Etiópia",
133
+ "platform.angular_components.country_name_gh": "Gana",
134
+ "platform.angular_components.country_name_gr": "Grécia",
135
+ "platform.angular_components.country_name_ie": "Irlanda",
136
+ "platform.angular_components.country_name_it": "Itália",
137
+ "platform.angular_components.country_name_lr": "Libéria",
138
+ "platform.angular_components.country_name_na": "Namíbia",
139
+ "platform.angular_components.country_name_nz": "Nova Zelândia",
140
+ "platform.angular_components.country_name_sa": "Arábia Saudita",
141
+ "platform.angular_components.country_name_za": "África do Sul",
142
+ "platform.angular_components.country_name_lk": "Sri Lanka",
143
+ "platform.angular_components.country_name_sd": "Sudão",
144
+ "platform.angular_components.country_name_th": "Tailândia",
145
+ "platform.angular_components.country_name_ua": "Ucrânia",
146
+ "platform.angular_components.country_name_ae": "Emirados Árabes Unidos",
147
+ "platform.angular_components.country_name_va": "Vaticano",
148
+ "platform.angular_components.country_name_zw": "Zimbábue",
149
+ "platform.angular_components.country_name_dz": "Argélia",
150
+ "platform.angular_components.country_name_be": "Bélgica",
151
+ "platform.angular_components.country_name_yt": "Mayotte",
152
+ "platform.angular_components.country_name_bl": "Saint Barthelemy",
153
+ "platform.angular_components.country_name_mf": "Saint Martin",
154
+ "platform.angular_components.country_name_ad": "Andora",
155
+ "platform.angular_components.country_name_ao": "Angola",
156
+ "platform.angular_components.country_name_ba": "Bósnia e Herzegovina",
157
+ "platform.angular_components.country_name_bg": "Bulgária",
158
+ "platform.angular_components.country_name_kh": "Camboja",
159
+ "platform.angular_components.country_name_cz": "República Checa",
160
+ "platform.angular_components.country_name_gq": "Guiné Equatorial",
161
+ "platform.angular_components.country_name_gw": "Guiné-Bissau",
162
+ "platform.angular_components.country_name_li": "Liechtenstein",
163
+ "platform.angular_components.country_name_lu": "Luxemburgo",
164
+ "platform.angular_components.country_name_mk": "Macedónia",
165
+ "platform.angular_components.country_name_me": "Montenegro",
166
+ "platform.angular_components.country_name_pe": "Peru",
167
+ "platform.angular_components.country_name_pl": "Polónia",
168
+ "platform.angular_components.country_name_pt": "Portugal",
169
+ "platform.angular_components.country_name_si": "Slovenia",
170
+ "platform.angular_components.country_name_am": "Arménia",
171
+ "platform.angular_components.country_name_aw": "Aruba",
172
+ "platform.angular_components.country_name_bn": "Brunei",
173
+ "platform.angular_components.country_name_fj": "Fiji",
174
+ "platform.angular_components.country_name_gm": "Gâmbia",
175
+ "platform.angular_components.country_name_gy": "Guiana",
176
+ "platform.angular_components.country_name_is": "Islândia",
177
+ "platform.angular_components.country_name_fm": "Micronésia",
178
+ "platform.angular_components.country_name_nr": "Nauru",
179
+ "platform.angular_components.country_name_nu": "Niue",
180
+ "platform.angular_components.country_name_pw": "Palau",
181
+ "platform.angular_components.country_name_st": "Sao Tome e Principe",
182
+ "platform.angular_components.country_name_to": "Tonga",
183
+ "platform.angular_components.country_name_vu": "Vanuatu",
184
+ "platform.angular_components.country_name_fk": "Ilhas Falkland (Malvinas)",
185
+ "platform.angular_components.country_name_fo": "Ilhas Feroé",
186
+ "platform.angular_components.country_name_sh": "Saint Helena",
187
+ "platform.angular_components.country_name_au": "Austrália",
188
+ "platform.angular_components.country_name_cx": "Christmas Island",
189
+ "platform.angular_components.country_name_cc": "Ilhas Cocos (Keeling)",
190
+ "platform.angular_components.country_name_cd": "República Democrática do Congo",
191
+ "platform.angular_components.country_name_kg": "Quirguistão",
192
+ "platform.angular_components.country_name_ro": "Roménia",
193
+ "platform.angular_components.country_name_rw": "Ruanda",
194
+ "platform.angular_components.country_name_sk": "Slovakia",
195
+ "platform.angular_components.country_name_sy": "Syria",
196
+ "platform.angular_components.country_name_tw": "Taiwan",
197
+ "platform.angular_components.country_name_tz": "Tanzânia",
198
+ "platform.angular_components.country_name_ye": "Iémen (Iémen, Yemen)",
199
+ "platform.angular_components.country_name_at": "Áustria",
200
+ "platform.angular_components.country_name_ke": "Quénia (Kenya)",
201
+ "platform.angular_components.country_name_ug": "Uganda",
202
+ "platform.angular_components.country_name_az": "Azerbaijão",
203
+ "platform.angular_components.country_name_ch": "Suiça",
204
+ "platform.angular_components.country_name_vn": "Vietnã (Vietname)",
205
+ "platform.angular_components.country_name_bh": "Bahrein",
206
+ "platform.angular_components.country_name_cr": "Costa Rica",
207
+ "platform.angular_components.country_name_sv": "El Salvador",
208
+ "platform.angular_components.country_name_ee": "Estónia",
209
+ "platform.angular_components.country_name_sz": "Suazilândia",
210
+ "platform.angular_components.country_name_gt": "Guatemala",
211
+ "platform.angular_components.country_name_hk": "Hong Kong",
212
+ "platform.angular_components.country_name_ls": "Lesoto",
213
+ "platform.angular_components.country_name_mo": "Macau",
214
+ "platform.angular_components.country_name_mt": "Malta",
215
+ "platform.angular_components.country_name_mu": "Maurícia",
216
+ "platform.angular_components.country_name_mn": "Mongólia",
217
+ "platform.angular_components.country_name_ni": "Nicaragua",
218
+ "platform.angular_components.country_name_om": "Omã",
219
+ "platform.angular_components.country_name_pg": "Papua-Nova Guiné",
220
+ "platform.angular_components.country_name_qa": "Catar",
221
+ "platform.angular_components.country_name_sg": "Cingapura",
222
+ "platform.angular_components.country_name_tl": "Timor-Leste",
223
+ "platform.angular_components.country_name_bd": "Bangladesh",
224
+ "platform.angular_components.country_name_im": "Ilha de Man",
225
+ "platform.angular_components.country_name_by": "Bielorrússia",
226
+ "platform.angular_components.country_name_bz": "Belize",
227
+ "platform.angular_components.country_name_mv": "Maldivas",
228
+ "platform.angular_components.country_name_mh": "Ilhas Marshall",
229
+ "platform.angular_components.country_name_sr": "Suriname",
230
+ "platform.angular_components.country_name_bj": "Benim",
231
+ "platform.angular_components.country_name_bt": "Butão",
232
+ "platform.angular_components.country_name_bf": "Burkina Faso",
233
+ "platform.angular_components.country_name_bi": "Burundi",
234
+ "platform.angular_components.country_name_cf": "República Centro-Africana",
235
+ "platform.angular_components.country_name_td": "Chad",
236
+ "platform.angular_components.country_name_ci": "Costa do Marfim",
237
+ "platform.angular_components.country_name_dk": "Dinamarca",
238
+ "platform.angular_components.country_name_dj": "Djibouti",
239
+ "platform.angular_components.country_name_fr": "França",
240
+ "platform.angular_components.country_name_pf": "Polinésia Francesa",
241
+ "platform.angular_components.country_name_ga": "Gabão",
242
+ "platform.angular_components.country_name_ml": "Mali",
243
+ "platform.angular_components.country_name_mr": "Mauritânia",
244
+ "platform.angular_components.country_name_ne": "Níger",
245
+ "platform.angular_components.country_name_sm": "San Marino",
246
+ "platform.angular_components.country_name_tg": "Togo",
247
+ "platform.angular_components.country_name_bo": "Bolívia",
248
+ "platform.angular_components.country_name_gi": "Gibraltar",
249
+ "platform.angular_components.country_name_ki": "Kiribati",
250
+ "platform.angular_components.country_name_tv": "Tuvalu",
251
+ "platform.angular_components.country_name_bw": "Botswana",
252
+ "platform.angular_components.country_name_er": "Eritreia",
253
+ "platform.angular_components.country_name_lv": "Letônia",
254
+ "platform.angular_components.country_name_lb": "Líbano",
255
+ "platform.angular_components.country_name_tn": "Tunísia",
256
+ "platform.angular_components.country_name_cm": "Camarões",
257
+ "platform.angular_components.country_name_cv": "Cabo Verde",
258
+ "platform.angular_components.country_name_km": "Comores",
259
+ "platform.angular_components.country_name_pm": "Saint Pierre and Miquelon",
260
+ "platform.angular_components.country_name_cg": "República do Congo",
261
+ "platform.angular_components.country_name_mz": "Moçambique",
262
+ "platform.angular_components.country_name_mm": "Myanmar (Burma)",
263
+ "platform.angular_components.country_name_ck": "Ilhas Cook",
264
+ "platform.angular_components.country_name_cu": "Cuba",
265
+ "platform.angular_components.country_name_cy": "Chipre",
266
+ "platform.angular_components.country_name_eg": "Egito",
267
+ "platform.angular_components.country_name_ir": "Irã",
268
+ "platform.angular_components.country_name_iq": "Iraque",
269
+ "platform.angular_components.country_name_ng": "Nigéria",
270
+ "platform.angular_components.country_name_kp": "Coreia do Norte",
271
+ "platform.angular_components.country_name_ph": "Filipinas",
272
+ "platform.angular_components.country_name_ge": "Geórgia",
273
+ "platform.angular_components.country_name_gn": "Guiné",
274
+ "platform.angular_components.country_name_es": "Espanha",
275
+ "platform.angular_components.country_name_de": "Alemanha",
276
+ "platform.angular_components.country_name_gl": "Groelândia",
277
+ "platform.angular_components.country_name_wf": "Wallis e Futuna",
278
+ "platform.angular_components.country_name_ht": "Haiti",
279
+ "platform.angular_components.country_name_hn": "Honduras",
280
+ "platform.angular_components.country_name_pa": "Panamá",
281
+ "platform.angular_components.country_name_hu": "Hungria",
282
+ "platform.angular_components.country_name_in": "India",
283
+ "platform.angular_components.country_name_id": "Indonésia",
284
+ "platform.angular_components.country_name_il": "Israel",
285
+ "platform.angular_components.country_name_jp": "Japão",
286
+ "platform.angular_components.country_name_jo": "Jordânia",
287
+ "platform.angular_components.country_name_kz": "Cazaquistão",
288
+ "platform.angular_components.country_name_kw": "Kuwait",
289
+ "platform.angular_components.country_name_la": "Laos",
290
+ "platform.angular_components.country_name_ly": "Líbia",
291
+ "platform.angular_components.country_name_lt": "Lituânia",
292
+ "platform.angular_components.country_name_np": "Nepal",
293
+ "platform.angular_components.country_name_mg": "Madagáscar",
294
+ "platform.angular_components.country_name_mw": "Malawi",
295
+ "platform.angular_components.country_name_my": "Malásia",
296
+ "platform.angular_components.country_name_mx": "México",
297
+ "platform.angular_components.country_name_md": "Moldávia",
298
+ "platform.angular_components.country_name_mc": "Monaco",
299
+ "platform.angular_components.country_name_ma": "Marrocos",
300
+ "platform.angular_components.country_name_nl": "Países Baixos",
301
+ "platform.angular_components.country_name_nc": "Nova Caledônia",
302
+ "platform.angular_components.country_name_no": "Noruega",
303
+ "platform.angular_components.country_name_pk": "Paquistão",
304
+ "platform.angular_components.country_name_ru": "Rússia",
305
+ "platform.angular_components.country_name_ws": "Samoa",
306
+ "platform.angular_components.country_name_sb": "Ilhas Salomão",
307
+ "platform.angular_components.country_name_sn": "Senegal",
308
+ "platform.angular_components.country_name_sc": "Seychelles",
309
+ "platform.angular_components.country_name_sl": "Serra Leoa",
310
+ "platform.angular_components.country_name_so": "Somalia",
311
+ "platform.angular_components.country_name_kr": "Coreia do Sul",
312
+ "platform.angular_components.country_name_se": "Suécia",
313
+ "platform.angular_components.country_name_tj": "Tajiquistão",
314
+ "platform.angular_components.country_name_tk": "Tokelau",
315
+ "platform.angular_components.country_name_tr": "Turquia",
316
+ "platform.angular_components.country_name_tm": "Turquemenistão",
317
+ "platform.angular_components.country_name_uz": "Uzbequistão",
318
+ "platform.angular_components.country_name_ve": "Venezuela",
319
+ "platform.angular_components.date_modified_custom_blob": "Enviado às {{hour}}:{{minutes}} de {{day}}/{{month}}/{{fullYear}}",
320
+ "platform.angular_components.available-items": "Itens disponíveis",
321
+ "platform.angular_components.selected-items": "Itens selecionados",
322
+ "platform.angular_components.picklist-placeholder": "Busque pelo nome ou termo",
323
+ "platform.angular_components.add_all": "Adicionar todos",
324
+ "platform.angular_components.remove_all": "Remover todos",
325
+ "platform.angular_components.country_name_gb": "Reino Unido",
326
+ "platform.angular_components.insight_footer": "Conteúdo gerado por inteligência artificial. Sujeito a imprecisões.",
327
+ "platform.angular_components.text_area_speech_recognition_placeholder": "Preencha o campo com, pelo menos, uma frase",
328
+ "platform.angular_components.text_area_before_speech": "Grave ou ouça o texto clicando nos ícones",
329
+ "platform.angular_components.text_area_while_speech": "Clique novamente no ícone para finalizar",
330
+ "platform.angular_components.text_area_end_speech": "Gravação finalizada",
331
+ "platform.angular_components.no_microphone_permission": "O acesso ao microfone está bloqueado. Ative a permissão nas configurações do navegador para continuar usando este recurso."
332
+ };
333
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmFsbGJhY2suanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9sb2NhbGUvZmFsbGJhY2sudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFDLE1BQU0sUUFBUSxHQUFRO0lBQ3pCLHdDQUF3QyxFQUFFLE9BQU87SUFDakQsbUNBQW1DLEVBQUUsVUFBVTtJQUMvQyxrQ0FBa0MsRUFBRSxZQUFZO0lBQ2hELG9DQUFvQyxFQUFFLE9BQU87SUFDN0MsZ0RBQWdELEVBQUUscUJBQXFCO0lBQ3ZFLDJDQUEyQyxFQUFFLHNCQUFzQjtJQUNuRSwwQ0FBMEMsRUFBRSxjQUFjO0lBQzFELDBDQUEwQyxFQUFFLGdCQUFnQjtJQUM1RCx1REFBdUQsRUFBRSxrREFBa0Q7SUFDM0csb0NBQW9DLEVBQUUsT0FBTztJQUM3QyxvQ0FBb0MsRUFBRSxPQUFPO0lBQzdDLGtDQUFrQyxFQUFFLE9BQU87SUFDM0MsMkNBQTJDLEVBQUUsZ0JBQWdCO0lBQzdELDJDQUEyQyxFQUFFLHFFQUFxRTtJQUNsSCwyQ0FBMkMsRUFBRSxpQ0FBaUM7SUFDOUUsdURBQXVELEVBQUUsb0hBQW9IO0lBQzdLLDZDQUE2QyxFQUFFLCtCQUErQjtJQUM5RSxtREFBbUQsRUFBRSx3R0FBd0c7SUFDN0osbURBQW1ELEVBQUUsbUNBQW1DO0lBQ3hGLGtEQUFrRCxFQUFFLGdDQUFnQztJQUNwRixxQ0FBcUMsRUFBRSxTQUFTO0lBQ2hELHNDQUFzQyxFQUFFLFdBQVc7SUFDbkQsbUNBQW1DLEVBQUUsT0FBTztJQUM1QyxtQ0FBbUMsRUFBRSxPQUFPO0lBQzVDLGlDQUFpQyxFQUFFLE1BQU07SUFDekMsa0NBQWtDLEVBQUUsT0FBTztJQUMzQyxrQ0FBa0MsRUFBRSxPQUFPO0lBQzNDLG9DQUFvQyxFQUFFLFFBQVE7SUFDOUMsdUNBQXVDLEVBQUUsVUFBVTtJQUNuRCxxQ0FBcUMsRUFBRSxTQUFTO0lB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QWdCO0lBQy9ELDZDQUE2QyxFQUFFLFNBQVM7SUFDeEQsNkNBQTZDLEVBQUUsV0FBVztJQUMxRCw2Q0FBNkMsRUFBRSxRQUFRO0lBQ3ZELDZDQUE2QyxFQUFFLE9BQU87SUFDdEQsNkNBQTZDLEVBQUUsZUFBZTtJQUM5RCw2Q0FBNkMsRUFBRSxTQUFTO0lBQ3hELDZDQUE2QyxFQUFFLFlBQVk7SUFDM0QsNkNBQTZDLEVBQUUsWUFBWTtJQUMzRCw2Q0FBNkMsRUFBRSxTQUFTO0lBQ3hELDZDQUE2QyxFQUFFLGVBQWU7SUFDOUQsNkNBQTZDLEVBQUUsUUFBUTtJQUN2RCw2Q0FBNkMsRUFBRSxhQUFhO0lBQzVELDZDQUE2QyxFQUFFLFNBQVM7SUFDeEQsNkNBQTZDLEVBQUUsU0FBUztJQUN4RCw2Q0FBNkMsRUFBRSxnQkFBZ0I7SUFDL0QsNkNBQTZDLEVBQUUsYUFBYTtJQUM1RCw2Q0FBNkMsRUFBRSxXQUFXO0lBQzFELHVEQUF1RCxFQUFFLG1FQUFtRTtJQUM1SCw2Q0FBNkMsRUFBRSxtQkFBbUI7SUFDbEUsNENBQTRDLEVBQUUsb0JBQW9CO0lBQ2xFLGtEQUFrRCxFQUFFLDJCQUEyQjtJQUMvRSxxQ0FBcUMsRUFBRSxpQkFBaUI7SUFDeEQsd0NBQXdDLEVBQUUsZUFBZTtJQUN6RCw2Q0FBNkMsRUFBRSxhQUFhO0lBQzVELDRDQUE0QyxFQUFFLHFFQUFxRTtJQUNuSCxzRUFBc0UsRUFBRSw2Q0FBNkM7SUFDckgscURBQXFELEVBQUUsMkNBQTJDO0lBQ2xHLG9EQUFvRCxFQUFFLDBDQUEwQztJQUNoRyxrREFBa0QsRUFBRSxxQkFBcUI7SUFDekUsc0RBQXNELEVBQUUsNEhBQTRIO0NBQ3ZMLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgZmFsbGJhY2s6IGFueSA9IHtcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5hdHRhY2htZW50XCI6IFwiYW5leG9cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy53YXRjaFwiOiBcImFzc2lzdGlyXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMudmlld1wiOiBcInZpc3VhbGl6YXJcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5saXN0ZW5cIjogXCJvdXZpclwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmRyYWdfeW91cl9waG90b19vclwiOiBcIkFycmFzdGUgc3VhIGZvdG8gb3VcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5zZWxlY3RfYV9maWxlXCI6IFwic2VsZWNpb25lIHVtIGFycXVpdm9cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jaGFuZ2VfcGhvdG9cIjogXCJBbHRlcmFyIGZvdG9cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5yZW1vdmVfaW1hZ2VcIjogXCJSZW1vdmVyIGltYWdlbVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvbmZpcm1hdGlvbl9yZW1vdmVfaW1hZ2VcIjogXCJEZXNlamEgcmVtb3ZlciBhIGltYWdlbT8gTsOjbyBwb2RlIHNlciByZXZlcnRpZGEuXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuc3Ryb25nXCI6IFwiRm9ydGVcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5tZWRpdW1cIjogXCJNw6lkaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy53ZWFrXCI6IFwiRnJhY2FcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5pbnZhbGlkX3ZhbHVlXCI6IFwiVmFsb3IgaW52w6FsaWRvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuaW5zaWdodF9pbnRyb1wiOiBcIk9sw6EhIEFxdWkgdm9jw6ogZW5jb250cmFyw6EgaW5zaWdodHMgdmFsaW9zb3MgYSBwYXJ0aXIgZG9zIHNldXMgZGFkb3NcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5pbnNpZ2h0X2VtcHR5XCI6IFwiQWluZGEgbsOjbyBow6EgSW5zaWdodHMgbmEgcMOhZ2luYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmVycm9yX2xvYWRpbmdfaW5zaWdodF9hbHRcIjogXCJOw6NvIGZvaSBwb3Nzw612ZWwgY2FycmVnYXIgbyBpbnNpZ2h0IG5vIG1vbWVudG8uIFBvciBmYXZvciwgdmVyaWZpcXVlIHN1YSBjb25leMOjbyBjb20gYSBpbnRlcm5ldCBlIHRlbnRlIG5vdmFtZW50ZS5cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5sb2FkaW5nX2luc2lnaHRcIjogXCJDYXJyZWdhbmRvIGluc2lnaHQgdmFsaW9zby4uLlwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmluc2lnaHRfbm9fcGVybWlzc2lvblwiOiBcIk9sw6EhIFZvY8OqIG7Do28gcG9zc3VpIGFjZXNzbyDDoCBww6FnaW5hIGRlIGluc2lnaHRzLiBFbnRyZSBlbSBjb250YXRvIGNvbSBvIGFkbWluaXN0cmFkb3IgcGFyYSBzYWJlciBtYWlzXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRfaXRlbXNfaW5fdGFyZ2V0XCI6IFwie3sgY291bnQgfX0gaXRlbnMgZW0ge3sgdGFyZ2V0IH19XCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRfaXRlbXNfc2VsZWN0ZWRcIjogXCJ7eyBjb3VudCB9fSBpdGVucyBzZWxlY2lvbmFkb3NcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5qYW51YXJ5XCI6IFwiSmFuZWlyb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmZlYnJ1YXJ5XCI6IFwiRmV2ZXJlaXJvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMubWFyY2hcIjogXCJNYXLDp29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5hcHJpbFwiOiBcIkFicmlsXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMubWF5XCI6IFwiTWFpb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmp1bmVcIjogXCJKdW5ob1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmp1bHlcIjogXCJKdWxob1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmF1Z3VzdFwiOiBcIkFnb3N0b1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnNlcHRlbWJlclwiOiBcIlNldGVtYnJvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMub2N0b2JlclwiOiBcIk91dHVicm9cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5ub3ZlbWJlclwiOiBcIk5vdmVtYnJvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuZGVjZW1iZXJcIjogXCJEZXplbWJyb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmphbnVhcnlfc2hvcnRcIjogXCJKYW5cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5mZWJydWFyeV9zaG9ydFwiOiBcIkZldlwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLm1hcmNoX3Nob3J0XCI6IFwiTWFyXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuYXByaWxfc2hvcnRcIjogXCJBYnJcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5tYXlfc2hvcnRcIjogXCJNYWlcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5qdW5lX3Nob3J0XCI6IFwiSnVuXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuanVseV9zaG9ydFwiOiBcIkp1bFwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmF1Z3VzdF9zaG9ydFwiOiBcIkFnb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnNlcHRlbWJlcl9zaG9ydFwiOiBcIlNldFwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLm9jdG9iZXJfc2hvcnRcIjogXCJPdXRcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5ub3ZlbWJlcl9zaG9ydFwiOiBcIk5vdlwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmRlY2VtYmVyX3Nob3J0XCI6IFwiRGV6XCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuc3VuZGF5XCI6IFwiRG9taW5nb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLm1vbmRheVwiOiBcIlNlZ3VuZGEtZmVpcmFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy50dWVzZGF5XCI6IFwiVGVyw6dhLWZlaXJhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMud2VkbmVzZGF5XCI6IFwiUXVhcnRhLWZlaXJhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMudGh1cnNkYXlcIjogXCJRdWludGEtZmVpcmFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5mcmlkYXlcIjogXCJTZXh0YS1mZWlyYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnNhdHVyZGF5XCI6IFwiU8OhYmFkb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnN1bmRheV9zaG9ydFwiOiBcIkRvbVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLm1vbmRheV9zaG9ydFwiOiBcIlNlZ1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnR1ZXNkYXlfc2hvcnRcIjogXCJUZXJcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy53ZWRuZXNkYXlfc2hvcnRcIjogXCJRdWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy50aHVyc2RheV9zaG9ydFwiOiBcIlF1aVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmZyaWRheV9zaG9ydFwiOiBcIlNleFwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnNhdHVyZGF5X3Nob3J0XCI6IFwiU8OhYlwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnN1bmRheV9taW5cIjogXCJEXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMubW9uZGF5X21pblwiOiBcIlNcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy50dWVzZGF5X21pblwiOiBcIlRcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy53ZWRuZXNkYXlfbWluXCI6IFwiUVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnRodXJzZGF5X21pblwiOiBcIlFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5mcmlkYXlfbWluXCI6IFwiU1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnNhdHVyZGF5X21pblwiOiBcIlNcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy50b2RheVwiOiBcIkhvamVcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5ob3VyX2Zvcm1hdFwiOiBcIjI0XCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuZGF0ZV9mb3JtYXRcIjogXCJkZC9tbS95eVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmlhX3RleHRfZ2VuZXJhdG9yXCI6IFwiR2VyYWRvciBkZSB0ZXh0byBwb3IgSUFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5hdHRhY2hfZmlsZXNcIjogXCJBbmV4YXIgYXJxdWl2b3NcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5hZGRfaW5mb3JtYXRpb25cIjogXCJBZGljaW9uYXIgaW5mb3JtYcOnw6NvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuYWRkXCI6IFwiQWRpY2lvbmFyXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuZWRpdFwiOiBcIkVkaXRhclwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnJlbW92ZVwiOiBcIlJlbW92ZXJcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5zYXZlXCI6IFwiU2FsdmFyXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuZmlsZV9hdHRhY2hlZF9zdWNjZXNzZnVsbHlcIjogXCJBcnF1aXZvIGFuZXhhZG8gY29tIHN1Y2Vzc29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5sb2FkaW5nX2ZpbGVcIjogXCJDYXJyZWdhbmRvIGFycXVpdm9cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5pYXNzaXN0X3RleHRfZ2VuZXJhdG9yXCI6IFwiSUFzc2lzdCBHZXJhZG9yIGRlIHRleHRvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY29waWVkX3RvX2NsaXBib2FyZFwiOiBcIkNvcGlhZG8gcGFyYSDDoXJlYSBkZSB0cmFuc2ZlcsOqbmNpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvcHlfZmllbGRfY29udGVudFwiOiBcIkNvcGlhciBjb250ZcO6ZG8gcHJlZW5jaGlkb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmdlbmVyYXRlX3RleHRcIjogXCJHZXJhciB0ZXh0b1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvbnRleHRcIjogXCJDb250ZXh0b1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmZpbHRlcnNcIjogXCJGaWx0cm9zXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuZmlsdGVyXCI6IFwiRmlsdHJhclwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNsZWFyXCI6IFwiTGltcGFyXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY2FuY2VsXCI6IFwiQ2FuY2VsYXJcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5zZWxlY3RcIjogXCJTZWxlY2lvbmFyXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMubm90X2luZm9ybWVkXCI6IFwiTsOjbyBpbmZvcm1hZG9cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5hZHZhbmNlZF9zZWFyY2hcIjogXCJQZXNxdWlzYSBhdmFuw6dhZGFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5ub19yZWNvcmRzX2ZvdW5kXCI6IFwiTmVuaHVtIHJlZ2lzdHJvIGVuY29udHJhZG9cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy50b3RhbF9yZWNvcmRcIjogXCJ7eyBjb3VudCB9fSByZWdpc3RybyBlbmNvbnRyYWRvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMudG90YWxfcmVjb3Jkc1wiOiBcInt7IGNvdW50IH19IHJlZ2lzdHJvcyBlbmNvbnRyYWRvc1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnRvdGFsX3JlY29yZHNfc2VsZWN0ZWRcIjogXCJ7MH0gcmVnaXN0cm9zIHNlbGVjaW9uYWRvc1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9iclwiOiBcIkJyYXNpbFwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV91c1wiOiBcIkVzdGFkb3MgVW5pZG9zXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2NvXCI6IFwiQ29sw7RtYmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2FyXCI6IFwiQXJnZW50aW5hXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2NsXCI6IFwiQ2hpbGVcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfcHlcIjogXCJQYXJhZ3VhaVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV91eVwiOiBcIlVydWd1YWlcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfY25cIjogXCJDaGluYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9jYVwiOiBcIkNhbmFkw6FcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYXNcIjogXCJTYW1vYSBBbWVyaWNhbmFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYWlcIjogXCJBbmd1aWxsYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9hZ1wiOiBcIkFudMOtZ3VhIGUgQmFyYnVkYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9ic1wiOiBcIkJhaGFtYXNcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYmJcIjogXCJCYXJiYWRvc1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9ibVwiOiBcIkJlcm11ZGFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfdmdcIjogXCJJbGhhcyBWaXJnZW5zIEJyaXTDom5pY2FzXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2t5XCI6IFwiSWxoYXMgQ2F5bWFuXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2RtXCI6IFwiRG9taW5pY2FcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZG9cIjogXCJSZXDDumJsaWNhIERvbWluaWNhbmFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZ2RcIjogXCJHcmFuYWRhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2d1XCI6IFwiR3VhbVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9qbVwiOiBcIkphbWFpY2FcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbXNcIjogXCJNb250c2VycmF0XCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX21wXCI6IFwiSWxoYXMgTWFyaWFuYSBkbyBOb3J0ZVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9wclwiOiBcIlBvcnRvIFJpY29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfa25cIjogXCJTYWludCBLaXR0cyBhbmQgTmV2aXNcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbGNcIjogXCJTYWludCBMdWNpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV92Y1wiOiBcIlNhaW50IFZpbmNlbnQgYW5kIHRoZSBHcmVuYWRpbmVzXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3R0XCI6IFwiVHJpbmlkYWQgZSBUb2JhZ29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfdGNcIjogXCJJbGhhcyBUdXJjYXMgZSBDYWljb3NcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZmlcIjogXCJGaW5sw6JuZGlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3JzXCI6IFwiU8OpcnZpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV96bVwiOiBcIlrDom1iaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYWZcIjogXCJBZmdoYW5pc3TDo29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYWxcIjogXCJBbGLDom5pYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9oclwiOiBcIkNyb8OhY2lhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2VjXCI6IFwiRXF1YWRvclwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9ldFwiOiBcIkV0acOzcGlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2doXCI6IFwiR2FuYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9nclwiOiBcIkdyw6ljaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfaWVcIjogXCJJcmxhbmRhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2l0XCI6IFwiSXTDoWxpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9sclwiOiBcIkxpYsOpcmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX25hXCI6IFwiTmFtw61iaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbnpcIjogXCJOb3ZhIFplbMOibmRpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9zYVwiOiBcIkFyw6FiaWEgU2F1ZGl0YVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV96YVwiOiBcIsOBZnJpY2EgZG8gU3VsXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2xrXCI6IFwiU3JpIExhbmthXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3NkXCI6IFwiU3Vkw6NvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3RoXCI6IFwiVGFpbMOibmRpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV91YVwiOiBcIlVjcsOibmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2FlXCI6IFwiRW1pcmFkb3Mgw4FyYWJlcyBVbmlkb3NcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfdmFcIjogXCJWYXRpY2Fub1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV96d1wiOiBcIlppbWLDoWJ1ZVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9kelwiOiBcIkFyZ8OpbGlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2JlXCI6IFwiQsOpbGdpY2FcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfeXRcIjogXCJNYXlvdHRlXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2JsXCI6IFwiU2FpbnQgQmFydGhlbGVteVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9tZlwiOiBcIlNhaW50IE1hcnRpblwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9hZFwiOiBcIkFuZG9yYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9hb1wiOiBcIkFuZ29sYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9iYVwiOiBcIkLDs3NuaWEgZSBIZXJ6ZWdvdmluYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9iZ1wiOiBcIkJ1bGfDoXJpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9raFwiOiBcIkNhbWJvamFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfY3pcIjogXCJSZXDDumJsaWNhIENoZWNhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2dxXCI6IFwiR3VpbsOpIEVxdWF0b3JpYWxcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZ3dcIjogXCJHdWluw6ktQmlzc2F1XCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2xpXCI6IFwiTGllY2h0ZW5zdGVpblwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9sdVwiOiBcIkx1eGVtYnVyZ29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbWtcIjogXCJNYWNlZMOzbmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX21lXCI6IFwiTW9udGVuZWdyb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9wZVwiOiBcIlBlcnVcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfcGxcIjogXCJQb2zDs25pYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9wdFwiOiBcIlBvcnR1Z2FsXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3NpXCI6IFwiU2xvdmVuaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYW1cIjogXCJBcm3DqW5pYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9hd1wiOiBcIkFydWJhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2JuXCI6IFwiQnJ1bmVpXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2ZqXCI6IFwiRmlqaVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9nbVwiOiBcIkfDom1iaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZ3lcIjogXCJHdWlhbmFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfaXNcIjogXCJJc2zDom5kaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZm1cIjogXCJNaWNyb27DqXNpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9uclwiOiBcIk5hdXJ1XCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX251XCI6IFwiTml1ZVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9wd1wiOiBcIlBhbGF1XCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3N0XCI6IFwiU2FvIFRvbWUgZSBQcmluY2lwZVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV90b1wiOiBcIlRvbmdhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3Z1XCI6IFwiVmFudWF0dVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9ma1wiOiBcIklsaGFzIEZhbGtsYW5kIChNYWx2aW5hcylcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZm9cIjogXCJJbGhhcyBGZXJvw6lcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfc2hcIjogXCJTYWludCBIZWxlbmFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYXVcIjogXCJBdXN0csOhbGlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2N4XCI6IFwiQ2hyaXN0bWFzIElzbGFuZFwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9jY1wiOiBcIklsaGFzIENvY29zIChLZWVsaW5nKVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9jZFwiOiBcIlJlcMO6YmxpY2EgRGVtb2Nyw6F0aWNhIGRvIENvbmdvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2tnXCI6IFwiUXVpcmd1aXN0w6NvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3JvXCI6IFwiUm9tw6luaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfcndcIjogXCJSdWFuZGFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfc2tcIjogXCJTbG92YWtpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9zeVwiOiBcIlN5cmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3R3XCI6IFwiVGFpd2FuXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3R6XCI6IFwiVGFuesOibmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3llXCI6IFwiScOpbWVuIChJw6ltZW4sIFllbWVuKVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9hdFwiOiBcIsOBdXN0cmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2tlXCI6IFwiUXXDqW5pYSAoS2VueWEpXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3VnXCI6IFwiVWdhbmRhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2F6XCI6IFwiQXplcmJhaWrDo29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfY2hcIjogXCJTdWnDp2FcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfdm5cIjogXCJWaWV0bsOjIChWaWV0bmFtZSlcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYmhcIjogXCJCYWhyZWluXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2NyXCI6IFwiQ29zdGEgUmljYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9zdlwiOiBcIkVsIFNhbHZhZG9yXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2VlXCI6IFwiRXN0w7NuaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfc3pcIjogXCJTdWF6aWzDom5kaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZ3RcIjogXCJHdWF0ZW1hbGFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfaGtcIjogXCJIb25nIEtvbmdcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbHNcIjogXCJMZXNvdG9cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbW9cIjogXCJNYWNhdVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9tdFwiOiBcIk1hbHRhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX211XCI6IFwiTWF1csOtY2lhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX21uXCI6IFwiTW9uZ8OzbGlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX25pXCI6IFwiTmljYXJhZ3VhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX29tXCI6IFwiT23Do1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9wZ1wiOiBcIlBhcHVhLU5vdmEgR3VpbsOpXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3FhXCI6IFwiQ2F0YXJcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfc2dcIjogXCJDaW5nYXB1cmFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfdGxcIjogXCJUaW1vci1MZXN0ZVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9iZFwiOiBcIkJhbmdsYWRlc2hcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfaW1cIjogXCJJbGhhIGRlIE1hblwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9ieVwiOiBcIkJpZWxvcnLDunNzaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYnpcIjogXCJCZWxpemVcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbXZcIjogXCJNYWxkaXZhc1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9taFwiOiBcIklsaGFzIE1hcnNoYWxsXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3NyXCI6IFwiU3VyaW5hbWVcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYmpcIjogXCJCZW5pbVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9idFwiOiBcIkJ1dMOjb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9iZlwiOiBcIkJ1cmtpbmEgRmFzb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9iaVwiOiBcIkJ1cnVuZGlcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfY2ZcIjogXCJSZXDDumJsaWNhIENlbnRyby1BZnJpY2FuYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV90ZFwiOiBcIkNoYWRcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfY2lcIjogXCJDb3N0YSBkbyBNYXJmaW1cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZGtcIjogXCJEaW5hbWFyY2FcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZGpcIjogXCJEamlib3V0aVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9mclwiOiBcIkZyYW7Dp2FcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfcGZcIjogXCJQb2xpbsOpc2lhIEZyYW5jZXNhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2dhXCI6IFwiR2Fiw6NvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX21sXCI6IFwiTWFsaVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9tclwiOiBcIk1hdXJpdMOibmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX25lXCI6IFwiTsOtZ2VyXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3NtXCI6IFwiU2FuIE1hcmlub1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV90Z1wiOiBcIlRvZ29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfYm9cIjogXCJCb2zDrXZpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9naVwiOiBcIkdpYnJhbHRhclwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9raVwiOiBcIktpcmliYXRpXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3R2XCI6IFwiVHV2YWx1XCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2J3XCI6IFwiQm90c3dhbmFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZXJcIjogXCJFcml0cmVpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9sdlwiOiBcIkxldMO0bmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2xiXCI6IFwiTMOtYmFub1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV90blwiOiBcIlR1bsOtc2lhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2NtXCI6IFwiQ2FtYXLDtWVzXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2N2XCI6IFwiQ2FibyBWZXJkZVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9rbVwiOiBcIkNvbW9yZXNcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfcG1cIjogXCJTYWludCBQaWVycmUgYW5kIE1pcXVlbG9uXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2NnXCI6IFwiUmVww7pibGljYSBkbyBDb25nb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9telwiOiBcIk1vw6dhbWJpcXVlXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX21tXCI6IFwiTXlhbm1hciAoQnVybWEpXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2NrXCI6IFwiSWxoYXMgQ29va1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9jdVwiOiBcIkN1YmFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfY3lcIjogXCJDaGlwcmVcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZWdcIjogXCJFZ2l0b1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9pclwiOiBcIklyw6NcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfaXFcIjogXCJJcmFxdWVcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbmdcIjogXCJOaWfDqXJpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9rcFwiOiBcIkNvcmVpYSBkbyBOb3J0ZVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9waFwiOiBcIkZpbGlwaW5hc1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9nZVwiOiBcIkdlw7NyZ2lhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2duXCI6IFwiR3VpbsOpXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2VzXCI6IFwiRXNwYW5oYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9kZVwiOiBcIkFsZW1hbmhhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2dsXCI6IFwiR3JvZWzDom5kaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfd2ZcIjogXCJXYWxsaXMgZSBGdXR1bmFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfaHRcIjogXCJIYWl0aVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9oblwiOiBcIkhvbmR1cmFzXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3BhXCI6IFwiUGFuYW3DoVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9odVwiOiBcIkh1bmdyaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfaW5cIjogXCJJbmRpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9pZFwiOiBcIkluZG9uw6lzaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfaWxcIjogXCJJc3JhZWxcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfanBcIjogXCJKYXDDo29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfam9cIjogXCJKb3Jkw6JuaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfa3pcIjogXCJDYXphcXVpc3TDo29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfa3dcIjogXCJLdXdhaXRcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbGFcIjogXCJMYW9zXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2x5XCI6IFwiTMOtYmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX2x0XCI6IFwiTGl0dcOibmlhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX25wXCI6IFwiTmVwYWxcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbWdcIjogXCJNYWRhZ8Ohc2NhclwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9td1wiOiBcIk1hbGF3aVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9teVwiOiBcIk1hbMOhc2lhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX214XCI6IFwiTcOpeGljb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9tZFwiOiBcIk1vbGTDoXZpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9tY1wiOiBcIk1vbmFjb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9tYVwiOiBcIk1hcnJvY29zXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX25sXCI6IFwiUGHDrXNlcyBCYWl4b3NcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbmNcIjogXCJOb3ZhIENhbGVkw7RuaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfbm9cIjogXCJOb3J1ZWdhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3BrXCI6IFwiUGFxdWlzdMOjb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9ydVwiOiBcIlLDunNzaWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfd3NcIjogXCJTYW1vYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9zYlwiOiBcIklsaGFzIFNhbG9tw6NvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3NuXCI6IFwiU2VuZWdhbFwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9zY1wiOiBcIlNleWNoZWxsZXNcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfc2xcIjogXCJTZXJyYSBMZW9hXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3NvXCI6IFwiU29tYWxpYVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV9rclwiOiBcIkNvcmVpYSBkbyBTdWxcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfc2VcIjogXCJTdcOpY2lhXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3RqXCI6IFwiVGFqaXF1aXN0w6NvXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuY291bnRyeV9uYW1lX3RrXCI6IFwiVG9rZWxhdVwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmNvdW50cnlfbmFtZV90clwiOiBcIlR1cnF1aWFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfdG1cIjogXCJUdXJxdWVtZW5pc3TDo29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfdXpcIjogXCJVemJlcXVpc3TDo29cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfdmVcIjogXCJWZW5lenVlbGFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5kYXRlX21vZGlmaWVkX2N1c3RvbV9ibG9iXCI6IFwiRW52aWFkbyDDoHMge3tob3VyfX06e3ttaW51dGVzfX0gZGUge3tkYXl9fS97e21vbnRofX0ve3tmdWxsWWVhcn19XCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuYXZhaWxhYmxlLWl0ZW1zXCI6IFwiSXRlbnMgZGlzcG9uw612ZWlzXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMuc2VsZWN0ZWQtaXRlbXNcIjogXCJJdGVucyBzZWxlY2lvbmFkb3NcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5waWNrbGlzdC1wbGFjZWhvbGRlclwiOiBcIkJ1c3F1ZSBwZWxvIG5vbWUgb3UgdGVybW9cIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5hZGRfYWxsXCI6IFwiQWRpY2lvbmFyIHRvZG9zXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMucmVtb3ZlX2FsbFwiOiBcIlJlbW92ZXIgdG9kb3NcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5jb3VudHJ5X25hbWVfZ2JcIjogXCJSZWlubyBVbmlkb1wiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLmluc2lnaHRfZm9vdGVyXCI6IFwiQ29udGXDumRvIGdlcmFkbyBwb3IgaW50ZWxpZ8OqbmNpYSBhcnRpZmljaWFsLiBTdWplaXRvIGEgaW1wcmVjaXPDtWVzLlwiLFxuICAgIFwicGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnRleHRfYXJlYV9zcGVlY2hfcmVjb2duaXRpb25fcGxhY2Vob2xkZXJcIjogXCJQcmVlbmNoYSBvIGNhbXBvIGNvbSwgcGVsbyBtZW5vcywgdW1hIGZyYXNlXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMudGV4dF9hcmVhX2JlZm9yZV9zcGVlY2hcIjogXCJHcmF2ZSBvdSBvdcOnYSBvIHRleHRvIGNsaWNhbmRvIG5vcyDDrWNvbmVzXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMudGV4dF9hcmVhX3doaWxlX3NwZWVjaFwiOiBcIkNsaXF1ZSBub3ZhbWVudGUgbm8gw61jb25lIHBhcmEgZmluYWxpemFyXCIsXG4gICAgXCJwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMudGV4dF9hcmVhX2VuZF9zcGVlY2hcIjogXCJHcmF2YcOnw6NvIGZpbmFsaXphZGFcIixcbiAgICBcInBsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5ub19taWNyb3Bob25lX3Blcm1pc3Npb25cIjogXCJPIGFjZXNzbyBhbyBtaWNyb2ZvbmUgZXN0w6EgYmxvcXVlYWRvLiBBdGl2ZSBhIHBlcm1pc3PDo28gbmFzIGNvbmZpZ3VyYcOnw7VlcyBkbyBuYXZlZ2Fkb3IgcGFyYSBjb250aW51YXIgdXNhbmRvIGVzdGUgcmVjdXJzby5cIlxufTtcbiJdfQ==
@@ -0,0 +1,11 @@
1
+ import { Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class DotsIndicatorComponent {
4
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DotsIndicatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: DotsIndicatorComponent, selector: "s-dots-indicator", ngImport: i0, template: "<div class=\"dots-indicator\">\n <div class=\"bounce bounce--1\"></div>\n <div class=\"bounce bounce--2\"></div>\n <div class=\"bounce bounce--3\"></div>\n</div>\n", styles: [".dots-indicator .bounce{animation:bounce 1.2s infinite ease-out;background-color:#333;border-radius:100%;display:inline-block;height:10px;width:10px}.dots-indicator .bounce+.bounce{margin-left:15px}.dots-indicator .bounce.bounce--1{animation-delay:0ms}.dots-indicator .bounce.bounce--2{animation-delay:.1s}.dots-indicator .bounce.bounce--3{animation-delay:.2s}@keyframes bounce{80%{transform:scale(1)}90%{transform:scale(1.8)}to{transform:scale(1)}}\n"] });
6
+ }
7
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DotsIndicatorComponent, decorators: [{
8
+ type: Component,
9
+ args: [{ selector: 's-dots-indicator', template: "<div class=\"dots-indicator\">\n <div class=\"bounce bounce--1\"></div>\n <div class=\"bounce bounce--2\"></div>\n <div class=\"bounce bounce--3\"></div>\n</div>\n", styles: [".dots-indicator .bounce{animation:bounce 1.2s infinite ease-out;background-color:#333;border-radius:100%;display:inline-block;height:10px;width:10px}.dots-indicator .bounce+.bounce{margin-left:15px}.dots-indicator .bounce.bounce--1{animation-delay:0ms}.dots-indicator .bounce.bounce--2{animation-delay:.1s}.dots-indicator .bounce.bounce--3{animation-delay:.2s}@keyframes bounce{80%{transform:scale(1)}90%{transform:scale(1.8)}to{transform:scale(1)}}\n"] }]
10
+ }] });
11
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG90cy1pbmRpY2F0b3IuY29tcG9uZW50cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9sb2FkaW5nLXN0YXRlL3NyYy9saWIvbG9hZGluZy1zdGF0ZS9jb21wb25lbnRzL2RvdHMtaW5kaWNhdG9yL2RvdHMtaW5kaWNhdG9yLmNvbXBvbmVudHMudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvbG9hZGluZy1zdGF0ZS9zcmMvbGliL2xvYWRpbmctc3RhdGUvY29tcG9uZW50cy9kb3RzLWluZGljYXRvci9kb3RzLWluZGljYXRvci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU8xQyxNQUFNLE9BQU8sc0JBQXNCO3dHQUF0QixzQkFBc0I7NEZBQXRCLHNCQUFzQix3RENQbkMsOEtBS0E7OzRGREVhLHNCQUFzQjtrQkFMbEMsU0FBUzsrQkFDSSxrQkFBa0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdzLWRvdHMtaW5kaWNhdG9yJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vZG90cy1pbmRpY2F0b3IuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2RvdHMtaW5kaWNhdG9yLmNvbXBvbmVudC5zY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIERvdHNJbmRpY2F0b3JDb21wb25lbnQge31cbiIsIjxkaXYgY2xhc3M9XCJkb3RzLWluZGljYXRvclwiPlxuICAgIDxkaXYgY2xhc3M9XCJib3VuY2UgYm91bmNlLS0xXCI+PC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImJvdW5jZSBib3VuY2UtLTJcIj48L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiYm91bmNlIGJvdW5jZS0tM1wiPjwvZGl2PlxuPC9kaXY+XG4iXX0=
@@ -0,0 +1,6 @@
1
+ export var LoadingStateIndicators;
2
+ (function (LoadingStateIndicators) {
3
+ LoadingStateIndicators["Dots"] = "dots";
4
+ LoadingStateIndicators["Logo"] = "logo";
5
+ })(LoadingStateIndicators || (LoadingStateIndicators = {}));
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGluZy1zdGF0ZS1pbmRpY2F0b3JzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL2xvYWRpbmctc3RhdGUvc3JjL2xpYi9sb2FkaW5nLXN0YXRlL2NvbXBvbmVudHMvbG9hZGluZy1zdGF0ZS1pbmRpY2F0b3JzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLHNCQUdYO0FBSEQsV0FBWSxzQkFBc0I7SUFDOUIsdUNBQWEsQ0FBQTtJQUNiLHVDQUFhLENBQUE7QUFDakIsQ0FBQyxFQUhXLHNCQUFzQixLQUF0QixzQkFBc0IsUUFHakMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBMb2FkaW5nU3RhdGVJbmRpY2F0b3JzIHtcbiAgICBEb3RzID0gJ2RvdHMnLFxuICAgIExvZ28gPSAnbG9nbycsXG59XG4iXX0=
@@ -0,0 +1,12 @@
1
+ import { Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@seniorsistemas/angular-components/common";
4
+ export class LoadingIndicatorComponent {
5
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoadingIndicatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: LoadingIndicatorComponent, selector: "s-logo-indicator", ngImport: i0, template: "<div class=\"logo-indicator\">\n <span *sSVGFactory=\"'senior'\"></span>\n</div>\n", styles: [".logo-indicator{animation:pulsar 1s infinite,scale 1s infinite;background-color:#00c89a;border-radius:50%;box-shadow:0 0 #00c89ab3;height:64px;padding:10.24px;position:relative;width:64px}@keyframes pulsar{0%{box-shadow:0 0 #00c89ab3}70%{box-shadow:0 0 0 40px #00c89a00}to{box-shadow:0 0 #00c89a00}}@keyframes scale{0%,to{transform:scale(1)}50%{transform:scale(1.3)}}\n"], dependencies: [{ kind: "directive", type: i1.SVGFactoryDirective, selector: "[sSVGFactory]", inputs: ["sSVGFactory"] }] });
7
+ }
8
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoadingIndicatorComponent, decorators: [{
9
+ type: Component,
10
+ args: [{ selector: 's-logo-indicator', template: "<div class=\"logo-indicator\">\n <span *sSVGFactory=\"'senior'\"></span>\n</div>\n", styles: [".logo-indicator{animation:pulsar 1s infinite,scale 1s infinite;background-color:#00c89a;border-radius:50%;box-shadow:0 0 #00c89ab3;height:64px;padding:10.24px;position:relative;width:64px}@keyframes pulsar{0%{box-shadow:0 0 #00c89ab3}70%{box-shadow:0 0 0 40px #00c89a00}to{box-shadow:0 0 #00c89a00}}@keyframes scale{0%,to{transform:scale(1)}50%{transform:scale(1.3)}}\n"] }]
11
+ }] });
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nby1pbmRpY2F0b3IuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL2xvYWRpbmctc3RhdGUvc3JjL2xpYi9sb2FkaW5nLXN0YXRlL2NvbXBvbmVudHMvbG9nby1pbmRpY2F0b3IvbG9nby1pbmRpY2F0b3IuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL2xvYWRpbmctc3RhdGUvc3JjL2xpYi9sb2FkaW5nLXN0YXRlL2NvbXBvbmVudHMvbG9nby1pbmRpY2F0b3IvbG9nby1pbmRpY2F0b3IuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7O0FBTzFDLE1BQU0sT0FBTyx5QkFBeUI7d0dBQXpCLHlCQUF5Qjs0RkFBekIseUJBQXlCLHdEQ1B0Qyx1RkFHQTs7NEZESWEseUJBQXlCO2tCQUxyQyxTQUFTOytCQUNJLGtCQUFrQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ3MtbG9nby1pbmRpY2F0b3InLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9sb2dvLWluZGljYXRvci5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vbG9nby1pbmRpY2F0b3IuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgTG9hZGluZ0luZGljYXRvckNvbXBvbmVudCB7fVxuIiwiPGRpdiBjbGFzcz1cImxvZ28taW5kaWNhdG9yXCI+XG4gICAgPHNwYW4gKnNTVkdGYWN0b3J5PVwiJ3NlbmlvcidcIj48L3NwYW4+XG48L2Rpdj5cbiJdfQ==
@@ -0,0 +1,74 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import { LoadingStateIndicators } from './components/loading-state-indicators';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/common";
5
+ import * as i2 from "./components/dots-indicator/dots-indicator.components";
6
+ import * as i3 from "./components/logo-indicator/logo-indicator.component";
7
+ export class LoadingStateComponent {
8
+ static nextId = 0;
9
+ indicator = LoadingStateIndicators.Dots;
10
+ id = `s-loading-state-${LoadingStateComponent.nextId++}`;
11
+ blockWindow = false;
12
+ set loading(loading) {
13
+ this._loading = loading;
14
+ loading ? this.block() : this.unblock();
15
+ }
16
+ get loading() {
17
+ return this._loading;
18
+ }
19
+ contents = null;
20
+ blocking = false;
21
+ _loading = false;
22
+ BLOCK_TIMEOUT_VALUE = 300;
23
+ UNBLOCK_TIMEOUT_VALUE = 200;
24
+ blockTimeoutId;
25
+ unblockTimeoutId;
26
+ ngOnDestroy() {
27
+ if (this.blockTimeoutId) {
28
+ clearTimeout(this.blockTimeoutId);
29
+ }
30
+ if (this.unblockTimeoutId) {
31
+ clearTimeout(this.unblockTimeoutId);
32
+ }
33
+ }
34
+ block() {
35
+ if (this.unblockTimeoutId) {
36
+ clearTimeout(this.unblockTimeoutId);
37
+ this.unblockTimeoutId = undefined;
38
+ }
39
+ if (!this.blockTimeoutId) {
40
+ this.blockTimeoutId = setTimeout(() => {
41
+ this.blocking = true;
42
+ this.blockTimeoutId = undefined;
43
+ }, this.BLOCK_TIMEOUT_VALUE);
44
+ }
45
+ }
46
+ unblock() {
47
+ if (this.blockTimeoutId) {
48
+ clearTimeout(this.blockTimeoutId);
49
+ this.blockTimeoutId = undefined;
50
+ }
51
+ if (!this.unblockTimeoutId) {
52
+ this.unblockTimeoutId = setTimeout(() => {
53
+ this.blocking = false;
54
+ this.unblockTimeoutId = undefined;
55
+ }, this.UNBLOCK_TIMEOUT_VALUE);
56
+ }
57
+ }
58
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoadingStateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: LoadingStateComponent, selector: "s-loading-state", inputs: { indicator: "indicator", id: "id", blockWindow: "blockWindow", loading: "loading" }, ngImport: i0, template: "<div\n [id]=\"id\"\n class=\"s-loading-state\"\n [ngClass]=\"{\n 's-loading-state--loading': loading,\n 's-loading-state--blocking': blocking,\n 's-loading-state--fullscreen': blockWindow\n }\"\n>\n <div\n [id]=\"id + '-loader'\"\n class=\"loader\"\n >\n <div\n [id]=\"id + '-spinner'\"\n class=\"spinner\"\n >\n @switch (indicator) {\n @case ('logo') {\n <s-logo-indicator></s-logo-indicator>\n }\n @case ('dots') {\n <s-dots-indicator></s-dots-indicator>\n }\n }\n </div>\n <div\n [id]=\"id + '-overlay'\"\n class=\"overlay\"\n ></div>\n </div>\n <div\n [id]=\"id + '-contents'\"\n class=\"state-contents\"\n >\n <ng-container *ngTemplateOutlet=\"contents || originalContent\"></ng-container>\n <ng-template #originalContent>\n <ng-content></ng-content>\n </ng-template>\n </div>\n</div>\n", styles: [".s-loading-state{position:relative}.s-loading-state .loader{opacity:0;position:absolute;transition:opacity .2s ease-out,display .2s ease-out;visibility:hidden;inset:1px;display:flex;justify-content:center;align-items:center}.s-loading-state .loader .overlay{background-color:#fff;height:100%;opacity:.8;transition:opacity .2s ease-out,display .2s ease-out;width:100%}.s-loading-state .loader .spinner{display:flex;position:absolute;z-index:2}.s-loading-state.s-loading-state--loading>.loader,.s-loading-state.s-loading-state--blocking>.loader{visibility:visible}.s-loading-state.s-loading-state--loading>.loader,.s-loading-state.s-loading-state--loading>.loader>.overlay,.s-loading-state.s-loading-state--blocking>.loader,.s-loading-state.s-loading-state--blocking>.loader>.overlay{cursor:wait;z-index:1}.s-loading-state.s-loading-state--loading>.state-contents,.s-loading-state.s-loading-state--blocking>.state-contents{z-index:0!important}.s-loading-state.s-loading-state--blocking.s-loading-state--loading>.loader{opacity:1}.s-loading-state.s-loading-state--fullscreen>.loader{left:0;position:fixed;top:0;z-index:1005}::ng-deep .s-loading-state-container.s-loading-state--loading.s-loading-state--blocking s-loading-state .s-loading-state-container>.loader{opacity:0;visibility:hidden}::ng-deep .s-loading-state-container.s-loading-state--loading.s-loading-state--blocking s-loading-state .s-loading-state-container>.state-contents{z-index:0!important}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i2.DotsIndicatorComponent, selector: "s-dots-indicator" }, { kind: "component", type: i3.LoadingIndicatorComponent, selector: "s-logo-indicator" }] });
60
+ }
61
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoadingStateComponent, decorators: [{
62
+ type: Component,
63
+ args: [{ selector: 's-loading-state', template: "<div\n [id]=\"id\"\n class=\"s-loading-state\"\n [ngClass]=\"{\n 's-loading-state--loading': loading,\n 's-loading-state--blocking': blocking,\n 's-loading-state--fullscreen': blockWindow\n }\"\n>\n <div\n [id]=\"id + '-loader'\"\n class=\"loader\"\n >\n <div\n [id]=\"id + '-spinner'\"\n class=\"spinner\"\n >\n @switch (indicator) {\n @case ('logo') {\n <s-logo-indicator></s-logo-indicator>\n }\n @case ('dots') {\n <s-dots-indicator></s-dots-indicator>\n }\n }\n </div>\n <div\n [id]=\"id + '-overlay'\"\n class=\"overlay\"\n ></div>\n </div>\n <div\n [id]=\"id + '-contents'\"\n class=\"state-contents\"\n >\n <ng-container *ngTemplateOutlet=\"contents || originalContent\"></ng-container>\n <ng-template #originalContent>\n <ng-content></ng-content>\n </ng-template>\n </div>\n</div>\n", styles: [".s-loading-state{position:relative}.s-loading-state .loader{opacity:0;position:absolute;transition:opacity .2s ease-out,display .2s ease-out;visibility:hidden;inset:1px;display:flex;justify-content:center;align-items:center}.s-loading-state .loader .overlay{background-color:#fff;height:100%;opacity:.8;transition:opacity .2s ease-out,display .2s ease-out;width:100%}.s-loading-state .loader .spinner{display:flex;position:absolute;z-index:2}.s-loading-state.s-loading-state--loading>.loader,.s-loading-state.s-loading-state--blocking>.loader{visibility:visible}.s-loading-state.s-loading-state--loading>.loader,.s-loading-state.s-loading-state--loading>.loader>.overlay,.s-loading-state.s-loading-state--blocking>.loader,.s-loading-state.s-loading-state--blocking>.loader>.overlay{cursor:wait;z-index:1}.s-loading-state.s-loading-state--loading>.state-contents,.s-loading-state.s-loading-state--blocking>.state-contents{z-index:0!important}.s-loading-state.s-loading-state--blocking.s-loading-state--loading>.loader{opacity:1}.s-loading-state.s-loading-state--fullscreen>.loader{left:0;position:fixed;top:0;z-index:1005}::ng-deep .s-loading-state-container.s-loading-state--loading.s-loading-state--blocking s-loading-state .s-loading-state-container>.loader{opacity:0;visibility:hidden}::ng-deep .s-loading-state-container.s-loading-state--loading.s-loading-state--blocking s-loading-state .s-loading-state-container>.state-contents{z-index:0!important}\n"] }]
64
+ }], propDecorators: { indicator: [{
65
+ type: Input
66
+ }], id: [{
67
+ type: Input
68
+ }], blockWindow: [{
69
+ type: Input
70
+ }], loading: [{
71
+ type: Input,
72
+ args: [{ required: true }]
73
+ }] } });
74
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGluZy1zdGF0ZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvbG9hZGluZy1zdGF0ZS9zcmMvbGliL2xvYWRpbmctc3RhdGUvbG9hZGluZy1zdGF0ZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvbG9hZGluZy1zdGF0ZS9zcmMvbGliL2xvYWRpbmctc3RhdGUvbG9hZGluZy1zdGF0ZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBMEIsTUFBTSxlQUFlLENBQUM7QUFFekUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sdUNBQXVDLENBQUM7Ozs7O0FBTy9FLE1BQU0sT0FBTyxxQkFBcUI7SUFDdkIsTUFBTSxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUM7SUFHbEIsU0FBUyxHQUEyQixzQkFBc0IsQ0FBQyxJQUFJLENBQUM7SUFHaEUsRUFBRSxHQUFHLG1CQUFtQixxQkFBcUIsQ0FBQyxNQUFNLEVBQUUsRUFBRSxDQUFDO0lBR3pELFdBQVcsR0FBRyxLQUFLLENBQUM7SUFFM0IsSUFDVyxPQUFPLENBQUMsT0FBZ0I7UUFDL0IsSUFBSSxDQUFDLFFBQVEsR0FBRyxPQUFPLENBQUM7UUFDeEIsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztJQUM1QyxDQUFDO0lBRUQsSUFBVyxPQUFPO1FBQ2QsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQ3pCLENBQUM7SUFFTSxRQUFRLEdBQTRCLElBQUksQ0FBQztJQUN6QyxRQUFRLEdBQUcsS0FBSyxDQUFDO0lBRWhCLFFBQVEsR0FBRyxLQUFLLENBQUM7SUFDakIsbUJBQW1CLEdBQUcsR0FBRyxDQUFDO0lBQzFCLHFCQUFxQixHQUFHLEdBQUcsQ0FBQztJQUM1QixjQUFjLENBQU07SUFDcEIsZ0JBQWdCLENBQU07SUFFdkIsV0FBVztRQUNkLElBQUksSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO1lBQ3RCLFlBQVksQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLENBQUM7UUFDdEMsQ0FBQztRQUVELElBQUksSUFBSSxDQUFDLGdCQUFnQixFQUFFLENBQUM7WUFDeEIsWUFBWSxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1FBQ3hDLENBQUM7SUFDTCxDQUFDO0lBRU0sS0FBSztRQUNSLElBQUksSUFBSSxDQUFDLGdCQUFnQixFQUFFLENBQUM7WUFDeEIsWUFBWSxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1lBQ3BDLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxTQUFTLENBQUM7UUFDdEMsQ0FBQztRQUVELElBQUksQ0FBQyxJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7WUFDdkIsSUFBSSxDQUFDLGNBQWMsR0FBRyxVQUFVLENBQUMsR0FBRyxFQUFFO2dCQUNsQyxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQztnQkFDckIsSUFBSSxDQUFDLGNBQWMsR0FBRyxTQUFTLENBQUM7WUFDcEMsQ0FBQyxFQUFFLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDO1FBQ2pDLENBQUM7SUFDTCxDQUFDO0lBRU0sT0FBTztRQUNWLElBQUksSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO1lBQ3RCLFlBQVksQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLENBQUM7WUFDbEMsSUFBSSxDQUFDLGNBQWMsR0FBRyxTQUFTLENBQUM7UUFDcEMsQ0FBQztRQUVELElBQUksQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQztZQUN6QixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsVUFBVSxDQUFDLEdBQUcsRUFBRTtnQkFDcEMsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUM7Z0JBQ3RCLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxTQUFTLENBQUM7WUFDdEMsQ0FBQyxFQUFFLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDO1FBQ25DLENBQUM7SUFDTCxDQUFDO3dHQW5FUSxxQkFBcUI7NEZBQXJCLHFCQUFxQixxSkNUbEMsK2tDQXlDQTs7NEZEaENhLHFCQUFxQjtrQkFMakMsU0FBUzsrQkFDSSxpQkFBaUI7OEJBUXBCLFNBQVM7c0JBRGYsS0FBSztnQkFJQyxFQUFFO3NCQURSLEtBQUs7Z0JBSUMsV0FBVztzQkFEakIsS0FBSztnQkFJSyxPQUFPO3NCQURqQixLQUFLO3VCQUFDLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uRGVzdHJveSwgVGVtcGxhdGVSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgTG9hZGluZ1N0YXRlSW5kaWNhdG9ycyB9IGZyb20gJy4vY29tcG9uZW50cy9sb2FkaW5nLXN0YXRlLWluZGljYXRvcnMnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ3MtbG9hZGluZy1zdGF0ZScsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2xvYWRpbmctc3RhdGUuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2xvYWRpbmctc3RhdGUuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgTG9hZGluZ1N0YXRlQ29tcG9uZW50IGltcGxlbWVudHMgT25EZXN0cm95IHtcbiAgICBwdWJsaWMgc3RhdGljIG5leHRJZCA9IDA7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBpbmRpY2F0b3I6IExvYWRpbmdTdGF0ZUluZGljYXRvcnMgPSBMb2FkaW5nU3RhdGVJbmRpY2F0b3JzLkRvdHM7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBpZCA9IGBzLWxvYWRpbmctc3RhdGUtJHtMb2FkaW5nU3RhdGVDb21wb25lbnQubmV4dElkKyt9YDtcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGJsb2NrV2luZG93ID0gZmFsc2U7XG5cbiAgICBASW5wdXQoeyByZXF1aXJlZDogdHJ1ZSB9KVxuICAgIHB1YmxpYyBzZXQgbG9hZGluZyhsb2FkaW5nOiBib29sZWFuKSB7XG4gICAgICAgIHRoaXMuX2xvYWRpbmcgPSBsb2FkaW5nO1xuICAgICAgICBsb2FkaW5nID8gdGhpcy5ibG9jaygpIDogdGhpcy51bmJsb2NrKCk7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBsb2FkaW5nKCkge1xuICAgICAgICByZXR1cm4gdGhpcy5fbG9hZGluZztcbiAgICB9XG5cbiAgICBwdWJsaWMgY29udGVudHM6IFRlbXBsYXRlUmVmPGFueT4gfCBudWxsID0gbnVsbDtcbiAgICBwdWJsaWMgYmxvY2tpbmcgPSBmYWxzZTtcblxuICAgIHByaXZhdGUgX2xvYWRpbmcgPSBmYWxzZTtcbiAgICBwcml2YXRlIEJMT0NLX1RJTUVPVVRfVkFMVUUgPSAzMDA7XG4gICAgcHJpdmF0ZSBVTkJMT0NLX1RJTUVPVVRfVkFMVUUgPSAyMDA7XG4gICAgcHJpdmF0ZSBibG9ja1RpbWVvdXRJZDogYW55O1xuICAgIHByaXZhdGUgdW5ibG9ja1RpbWVvdXRJZDogYW55O1xuXG4gICAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5ibG9ja1RpbWVvdXRJZCkge1xuICAgICAgICAgICAgY2xlYXJUaW1lb3V0KHRoaXMuYmxvY2tUaW1lb3V0SWQpO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKHRoaXMudW5ibG9ja1RpbWVvdXRJZCkge1xuICAgICAgICAgICAgY2xlYXJUaW1lb3V0KHRoaXMudW5ibG9ja1RpbWVvdXRJZCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgYmxvY2soKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLnVuYmxvY2tUaW1lb3V0SWQpIHtcbiAgICAgICAgICAgIGNsZWFyVGltZW91dCh0aGlzLnVuYmxvY2tUaW1lb3V0SWQpO1xuICAgICAgICAgICAgdGhpcy51bmJsb2NrVGltZW91dElkID0gdW5kZWZpbmVkO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKCF0aGlzLmJsb2NrVGltZW91dElkKSB7XG4gICAgICAgICAgICB0aGlzLmJsb2NrVGltZW91dElkID0gc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgdGhpcy5ibG9ja2luZyA9IHRydWU7XG4gICAgICAgICAgICAgICAgdGhpcy5ibG9ja1RpbWVvdXRJZCA9IHVuZGVmaW5lZDtcbiAgICAgICAgICAgIH0sIHRoaXMuQkxPQ0tfVElNRU9VVF9WQUxVRSk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgdW5ibG9jaygpOiB2b2lkIHtcbiAgICAgICAgaWYgKHRoaXMuYmxvY2tUaW1lb3V0SWQpIHtcbiAgICAgICAgICAgIGNsZWFyVGltZW91dCh0aGlzLmJsb2NrVGltZW91dElkKTtcbiAgICAgICAgICAgIHRoaXMuYmxvY2tUaW1lb3V0SWQgPSB1bmRlZmluZWQ7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAoIXRoaXMudW5ibG9ja1RpbWVvdXRJZCkge1xuICAgICAgICAgICAgdGhpcy51bmJsb2NrVGltZW91dElkID0gc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgdGhpcy5ibG9ja2luZyA9IGZhbHNlO1xuICAgICAgICAgICAgICAgIHRoaXMudW5ibG9ja1RpbWVvdXRJZCA9IHVuZGVmaW5lZDtcbiAgICAgICAgICAgIH0sIHRoaXMuVU5CTE9DS19USU1FT1VUX1ZBTFVFKTtcbiAgICAgICAgfVxuICAgIH1cbn1cbiIsIjxkaXZcbiAgICBbaWRdPVwiaWRcIlxuICAgIGNsYXNzPVwicy1sb2FkaW5nLXN0YXRlXCJcbiAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICdzLWxvYWRpbmctc3RhdGUtLWxvYWRpbmcnOiBsb2FkaW5nLFxuICAgICAgICAncy1sb2FkaW5nLXN0YXRlLS1ibG9ja2luZyc6IGJsb2NraW5nLFxuICAgICAgICAncy1sb2FkaW5nLXN0YXRlLS1mdWxsc2NyZWVuJzogYmxvY2tXaW5kb3dcbiAgICB9XCJcbj5cbiAgICA8ZGl2XG4gICAgICAgIFtpZF09XCJpZCArICctbG9hZGVyJ1wiXG4gICAgICAgIGNsYXNzPVwibG9hZGVyXCJcbiAgICA+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICAgIFtpZF09XCJpZCArICctc3Bpbm5lcidcIlxuICAgICAgICAgICAgY2xhc3M9XCJzcGlubmVyXCJcbiAgICAgICAgPlxuICAgICAgICAgICAgQHN3aXRjaCAoaW5kaWNhdG9yKSB7XG4gICAgICAgICAgICAgICAgQGNhc2UgKCdsb2dvJykge1xuICAgICAgICAgICAgICAgICAgICA8cy1sb2dvLWluZGljYXRvcj48L3MtbG9nby1pbmRpY2F0b3I+XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIEBjYXNlICgnZG90cycpIHtcbiAgICAgICAgICAgICAgICAgICAgPHMtZG90cy1pbmRpY2F0b3I+PC9zLWRvdHMtaW5kaWNhdG9yPlxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICAgIFtpZF09XCJpZCArICctb3ZlcmxheSdcIlxuICAgICAgICAgICAgY2xhc3M9XCJvdmVybGF5XCJcbiAgICAgICAgPjwvZGl2PlxuICAgIDwvZGl2PlxuICAgIDxkaXZcbiAgICAgICAgW2lkXT1cImlkICsgJy1jb250ZW50cydcIlxuICAgICAgICBjbGFzcz1cInN0YXRlLWNvbnRlbnRzXCJcbiAgICA+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJjb250ZW50cyB8fCBvcmlnaW5hbENvbnRlbnRcIj48L25nLWNvbnRhaW5lcj5cbiAgICAgICAgPG5nLXRlbXBsYXRlICNvcmlnaW5hbENvbnRlbnQ+XG4gICAgICAgICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgPC9kaXY+XG48L2Rpdj5cbiJdfQ==