@seniorsistemas/angular-components 17.27.1-fix-interactive-content-46e38731 → 17.27.1-fixlookupteste-sds-110-c424f879

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 (953) hide show
  1. package/button/lib/button/button.component.d.ts +3 -3
  2. package/button/lib/button/button.module.d.ts +1 -6
  3. package/confirm-dialog/README.md +226 -0
  4. package/confirm-dialog/index.d.ts +5 -0
  5. package/confirm-dialog/lib/confirm-dialog.model.d.ts +8 -0
  6. package/confirm-dialog/lib/confirm-dialog.service.d.ts +8 -0
  7. package/confirm-dialog/lib/popup-confirm-dialog/popup-confirm-dialog.component.d.ts +7 -0
  8. package/confirm-dialog/public-api.d.ts +2 -0
  9. package/dialog/index.d.ts +5 -0
  10. package/dialog/lib/src/dialog/dialog.component.d.ts +29 -0
  11. package/dialog/lib/src/dialog/models/active-dialog.d.ts +11 -0
  12. package/dialog/lib/src/dialog/models/dialog-models.d.ts +18 -0
  13. package/dialog/lib/src/dialog/services/dialog.service.d.ts +24 -0
  14. package/dialog/lib/src/dialog/services/internal-dialog.service.d.ts +10 -0
  15. package/dialog/public-api.d.ts +4 -0
  16. package/dynamic-form/lib/dynamic-form/components/lookup/lookup.component.d.ts +4 -3
  17. package/dynamic-form/lib/dynamic-form/dynamic-form.module.d.ts +24 -24
  18. package/dynamic-form/lib/dynamic-form/form-field/configurations/fields/lookup-field.d.ts +2 -0
  19. package/dynamic-form/lib/dynamic-form/form-field/fields/radio-button/radio-button-field.component.d.ts +3 -3
  20. package/esm2022/accordion/lib/accordion/accordion.component.mjs +84 -0
  21. package/esm2022/accordion/lib/accordion/accordion.module.mjs +36 -0
  22. package/esm2022/accordion/lib/accordion/components/accordion-panel/accordion-panel.component.mjs +124 -0
  23. package/esm2022/accordion/lib/accordion/models/accordion-button-settings.mjs +2 -0
  24. package/esm2022/accordion/public-api.mjs +4 -0
  25. package/esm2022/accordion/seniorsistemas-angular-components-accordion.mjs +5 -0
  26. package/esm2022/alert/lib/alert/alert.component.mjs +44 -0
  27. package/esm2022/alert/lib/alert/alert.module.mjs +18 -0
  28. package/esm2022/alert/public-api.mjs +3 -0
  29. package/esm2022/alert/seniorsistemas-angular-components-alert.mjs +5 -0
  30. package/esm2022/badge/lib/badge/badge.component.mjs +46 -0
  31. package/esm2022/badge/lib/badge/badge.module.mjs +20 -0
  32. package/esm2022/badge/lib/badge/types/badge-colors.mjs +4 -0
  33. package/esm2022/badge/lib/badge/types/badge-types.mjs +2 -0
  34. package/esm2022/badge/public-api.mjs +3 -0
  35. package/esm2022/badge/seniorsistemas-angular-components-badge.mjs +5 -0
  36. package/esm2022/bignumber-input/lib/bignumber-input/bignumber-input.directive.mjs +156 -0
  37. package/esm2022/bignumber-input/lib/bignumber-input/bignumber-input.module.mjs +21 -0
  38. package/esm2022/bignumber-input/public-api.mjs +3 -0
  39. package/esm2022/bignumber-input/seniorsistemas-angular-components-bignumber-input.mjs +5 -0
  40. package/esm2022/breadcrumb/lib/breadcrumb/breadcrumb.component.mjs +105 -0
  41. package/esm2022/breadcrumb/lib/breadcrumb/breadcrumb.module.mjs +20 -0
  42. package/esm2022/breadcrumb/public-api.mjs +3 -0
  43. package/esm2022/breadcrumb/seniorsistemas-angular-components-breadcrumb.mjs +5 -0
  44. package/esm2022/button/lib/button/button.component.mjs +106 -0
  45. package/esm2022/button/lib/button/button.module.mjs +18 -0
  46. package/esm2022/button/lib/button/models/button-animations.mjs +2 -0
  47. package/esm2022/button/lib/button/models/button-badge-config.mjs +2 -0
  48. package/esm2022/button/lib/button/models/button-priority.mjs +2 -0
  49. package/esm2022/button/lib/button/models/button-size.mjs +2 -0
  50. package/esm2022/button/lib/button/models/index.mjs +2 -0
  51. package/esm2022/button/public-api.mjs +4 -0
  52. package/esm2022/button/seniorsistemas-angular-components-button.mjs +5 -0
  53. package/esm2022/calendar-mask/lib/calendar-mask/calendar-mask.directive.mjs +611 -0
  54. package/esm2022/calendar-mask/lib/calendar-mask/calendar-mask.module.mjs +18 -0
  55. package/esm2022/calendar-mask/public-api.mjs +3 -0
  56. package/esm2022/calendar-mask/seniorsistemas-angular-components-calendar-mask.mjs +5 -0
  57. package/esm2022/card/lib/card/card.component.mjs +85 -0
  58. package/esm2022/card/lib/card/card.module.mjs +19 -0
  59. package/esm2022/card/public-api.mjs +3 -0
  60. package/esm2022/card/seniorsistemas-angular-components-card.mjs +5 -0
  61. package/esm2022/chat/lib/chat/chat.component.mjs +29 -0
  62. package/esm2022/chat/lib/chat/chat.module.mjs +22 -0
  63. package/esm2022/chat/lib/chat/components/chat-message/chat-message.component.mjs +29 -0
  64. package/esm2022/chat/lib/chat/types/chat-message.mjs +2 -0
  65. package/esm2022/chat/public-api.mjs +3 -0
  66. package/esm2022/chat/seniorsistemas-angular-components-chat.mjs +5 -0
  67. package/esm2022/checkbox/lib/checkbox/checkbox.component.mjs +67 -0
  68. package/esm2022/checkbox/public-api.mjs +2 -0
  69. package/esm2022/checkbox/seniorsistemas-angular-components-checkbox.mjs +5 -0
  70. package/esm2022/checkbox-list/lib/checkbox-list/checkbox-list.component.mjs +129 -0
  71. package/esm2022/checkbox-list/lib/checkbox-list/checkbox-list.module.mjs +19 -0
  72. package/esm2022/checkbox-list/lib/checkbox-list/models/checkbox-list-data.mjs +2 -0
  73. package/esm2022/checkbox-list/lib/checkbox-list/models/checkbox-list-state.mjs +2 -0
  74. package/esm2022/checkbox-list/public-api.mjs +3 -0
  75. package/esm2022/checkbox-list/seniorsistemas-angular-components-checkbox-list.mjs +5 -0
  76. package/esm2022/chips/lib/chips/chip-item/chip-item.component.mjs +67 -0
  77. package/esm2022/chips/lib/chips/chips/chips.component.mjs +241 -0
  78. package/esm2022/chips/lib/chips/chips.module.mjs +22 -0
  79. package/esm2022/chips/lib/chips/models/chip-models.mjs +2 -0
  80. package/esm2022/chips/public-api.mjs +3 -0
  81. package/esm2022/chips/seniorsistemas-angular-components-chips.mjs +5 -0
  82. package/esm2022/code-editor/lib/code-editor/code-editor.component.mjs +111 -0
  83. package/esm2022/code-editor/lib/code-editor/code-editor.module.mjs +32 -0
  84. package/esm2022/code-editor/lib/code-editor/core/facades/core-facade.mjs +85 -0
  85. package/esm2022/code-editor/lib/code-editor/core/facades/linter-facade.mjs +2 -0
  86. package/esm2022/code-editor/lib/code-editor/core/models/enums/marker-severity.mjs +7 -0
  87. package/esm2022/code-editor/lib/code-editor/core/models/index.mjs +5 -0
  88. package/esm2022/code-editor/lib/code-editor/core/models/interfaces/marker.mjs +2 -0
  89. package/esm2022/code-editor/lib/code-editor/core/use-cases/core-linters.mjs +11 -0
  90. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/codemirror-6-core.mjs +97 -0
  91. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/editor-languages.mjs +17 -0
  92. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/json/json.language.mjs +67 -0
  93. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-empty-state.mjs +29 -0
  94. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/autocomplete-loading-state.mjs +29 -0
  95. 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
  96. 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
  97. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-states/index.mjs +4 -0
  98. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete-style.mjs +35 -0
  99. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.mjs +334 -0
  100. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/autocomplete/autocomplete.service.mjs +25 -0
  101. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/base-configs.mjs +18 -0
  102. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/extensions/base-configs/grammar.mjs +37 -0
  103. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/completion-types.mjs +10 -0
  104. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/enum-type-order.mjs +8 -0
  105. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/keywords.mjs +12 -0
  106. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/meta-type.mjs +36 -0
  107. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/enums/request-types.mjs +9 -0
  108. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/index.mjs +22 -0
  109. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/completion-Item.mjs +2 -0
  110. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/facade-metadata-name.mjs +2 -0
  111. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/fields-order-by.mjs +2 -0
  112. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/get-facade-metadata-by-path.mjs +2 -0
  113. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-context-metadata-by-id.mjs +2 -0
  114. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-expression-metadata.mjs +2 -0
  115. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/list-facade-metadata-names.mjs +2 -0
  116. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-expression-metadata.mjs +2 -0
  117. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-context-metadata.mjs +2 -0
  118. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-facade-metadata.mjs +2 -0
  119. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-front-field-metadata.mjs +2 -0
  120. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/rec-page-request.mjs +2 -0
  121. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/safe-http-communication.mjs +2 -0
  122. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/models/interfaces/tax-calculation-configs.mjs +2 -0
  123. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation-language-configs.mjs +11 -0
  124. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/tax-calculation.language.mjs +9 -0
  125. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-language-configs.mjs +14 -0
  126. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/get-safe-response.mjs +18 -0
  127. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/languages/tax-calculation/utils/index.mjs +3 -0
  128. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/index.mjs +4 -0
  129. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/types/diagnostic-severity.mjs +2 -0
  130. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/models/types/editor-theme.mjs +2 -0
  131. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/editor-themes.mjs +15 -0
  132. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/autocomplete-tooltip.mjs +61 -0
  133. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/font-style.mjs +39 -0
  134. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/line-counter.mjs +25 -0
  135. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/extensions/scrollbars.mjs +18 -0
  136. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-highlight-style.mjs +16 -0
  137. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-style.mjs +13 -0
  138. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/themes/sds-light/sds-light-theme.mjs +22 -0
  139. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/convert-markers-to-diagnostics.mjs +15 -0
  140. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/index.mjs +3 -0
  141. package/esm2022/code-editor/lib/code-editor/infra/cores/codemirror-6/utils/is-current-position-inside-string.mjs +5 -0
  142. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/custom-http-client.mjs +82 -0
  143. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/format-blob-response.mjs +10 -0
  144. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/format-json-response.mjs +9 -0
  145. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-http-client/json-response-formatters/index.mjs +3 -0
  146. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/custom-translations-service.mjs +37 -0
  147. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/custom-translations.module.mjs +32 -0
  148. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/index.mjs +3 -0
  149. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/models/index.mjs +3 -0
  150. package/esm2022/code-editor/lib/code-editor/infra/utils/custom-translations/models/interfaces/translations.mjs +2 -0
  151. package/esm2022/code-editor/lib/code-editor/infra/utils/index.mjs +3 -0
  152. package/esm2022/code-editor/lib/code-editor/models/enums/languages.mjs +6 -0
  153. package/esm2022/code-editor/lib/code-editor/models/enums/themes.mjs +5 -0
  154. package/esm2022/code-editor/lib/code-editor/models/index.mjs +6 -0
  155. package/esm2022/code-editor/lib/code-editor/models/interfaces/editor-options.mjs +2 -0
  156. package/esm2022/code-editor/public-api.mjs +6 -0
  157. package/esm2022/code-editor/seniorsistemas-angular-components-code-editor.mjs +5 -0
  158. package/esm2022/collapse-link/lib/collapse-link/collapse-link.component.mjs +81 -0
  159. package/esm2022/collapse-link/lib/collapse-link/collapse-link.module.mjs +18 -0
  160. package/esm2022/collapse-link/public-api.mjs +3 -0
  161. package/esm2022/collapse-link/seniorsistemas-angular-components-collapse-link.mjs +5 -0
  162. package/esm2022/common/lib/angular-components.module.mjs +24 -0
  163. package/esm2022/common/lib/custom-http-client/custom-http-client.mjs +86 -0
  164. package/esm2022/common/lib/custom-http-client/json-response-formatters/format-blob-response.mjs +10 -0
  165. package/esm2022/common/lib/custom-http-client/json-response-formatters/format-json-response.mjs +9 -0
  166. package/esm2022/common/lib/debouce.mjs +35 -0
  167. package/esm2022/common/lib/svg-factory/components/iassist-icon/iassist-icon.component.mjs +11 -0
  168. package/esm2022/common/lib/svg-factory/components/senior-icon/senior-icon.component.mjs +11 -0
  169. package/esm2022/common/lib/svg-factory/components/svg-factory-icons.mjs +2 -0
  170. package/esm2022/common/lib/svg-factory/index.mjs +3 -0
  171. package/esm2022/common/lib/svg-factory/svg-factory.directive.mjs +44 -0
  172. package/esm2022/common/lib/svg-factory/svg-factory.module.mjs +26 -0
  173. package/esm2022/common/public-api.mjs +5 -0
  174. package/esm2022/common/seniorsistemas-angular-components-common.mjs +5 -0
  175. package/esm2022/confirm-dialog/lib/confirm-dialog.model.mjs +2 -0
  176. package/esm2022/confirm-dialog/lib/confirm-dialog.service.mjs +34 -0
  177. package/esm2022/confirm-dialog/lib/popup-confirm-dialog/popup-confirm-dialog.component.mjs +17 -0
  178. package/esm2022/confirm-dialog/public-api.mjs +2 -0
  179. package/esm2022/confirm-dialog/seniorsistemas-angular-components-confirm-dialog.mjs +5 -0
  180. package/esm2022/control-errors/lib/control-errors/control-errors.component.mjs +52 -0
  181. package/esm2022/control-errors/lib/control-errors/control-errors.module.mjs +19 -0
  182. package/esm2022/control-errors/public-api.mjs +3 -0
  183. package/esm2022/control-errors/seniorsistemas-angular-components-control-errors.mjs +5 -0
  184. package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.component.mjs +319 -0
  185. package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.module.mjs +41 -0
  186. package/esm2022/country-phone-picker/lib/country-phone-picker/country-phone-picker.service.mjs +42 -0
  187. package/esm2022/country-phone-picker/lib/country-phone-picker/models/country-phone-data.mjs +2 -0
  188. package/esm2022/country-phone-picker/lib/country-phone-picker/models/ordination.mjs +7 -0
  189. package/esm2022/country-phone-picker/lib/country-phone-picker/models/phone-selection-data.mjs +2 -0
  190. package/esm2022/country-phone-picker/lib/country-phone-picker/resources/countries.mjs +228 -0
  191. package/esm2022/country-phone-picker/public-api.mjs +5 -0
  192. package/esm2022/country-phone-picker/seniorsistemas-angular-components-country-phone-picker.mjs +5 -0
  193. package/esm2022/currency/lib/currency.service.mjs +25 -0
  194. package/esm2022/currency/lib/models/currencies.mjs +161 -0
  195. package/esm2022/currency/lib/types/currency.mjs +2 -0
  196. package/esm2022/currency/public-api.mjs +3 -0
  197. package/esm2022/currency/seniorsistemas-angular-components-currency.mjs +5 -0
  198. package/esm2022/custom-fields/lib/custom-fields/custom-fields.component.mjs +690 -0
  199. package/esm2022/custom-fields/lib/custom-fields/custom-fields.module.mjs +45 -0
  200. package/esm2022/custom-fields/lib/custom-fields/custom-fields.service.mjs +35 -0
  201. package/esm2022/custom-fields/lib/custom-fields/models/custom-field-type.mjs +17 -0
  202. package/esm2022/custom-fields/public-api.mjs +4 -0
  203. package/esm2022/custom-fields/seniorsistemas-angular-components-custom-fields.mjs +5 -0
  204. package/esm2022/dialog/lib/src/dialog/dialog.component.mjs +82 -0
  205. package/esm2022/dialog/lib/src/dialog/models/active-dialog.mjs +18 -0
  206. package/esm2022/dialog/lib/src/dialog/models/dialog-models.mjs +2 -0
  207. package/esm2022/dialog/lib/src/dialog/services/dialog.service.mjs +96 -0
  208. package/esm2022/dialog/lib/src/dialog/services/internal-dialog.service.mjs +29 -0
  209. package/esm2022/dialog/public-api.mjs +4 -0
  210. package/esm2022/dialog/seniorsistemas-angular-components-dialog.mjs +5 -0
  211. package/esm2022/dynamic-form/lib/dynamic-form/components/field-label/field-label.component.mjs +20 -0
  212. package/esm2022/dynamic-form/lib/dynamic-form/components/grid/row/row.component.mjs +41 -0
  213. package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/lookup.component.mjs +632 -0
  214. package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/types/default-filter.mjs +2 -0
  215. package/esm2022/dynamic-form/lib/dynamic-form/components/lookup/types/label-options.mjs +2 -0
  216. package/esm2022/dynamic-form/lib/dynamic-form/components/structure/base-structure-component.mjs +2 -0
  217. package/esm2022/dynamic-form/lib/dynamic-form/components/structure/fieldset/fieldset.component.mjs +27 -0
  218. package/esm2022/dynamic-form/lib/dynamic-form/components/structure/section/section.component.mjs +33 -0
  219. package/esm2022/dynamic-form/lib/dynamic-form/configurations/dynamic-config.mjs +71 -0
  220. package/esm2022/dynamic-form/lib/dynamic-form/configurations/dynamic-type.mjs +26 -0
  221. package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid/grid.mjs +14 -0
  222. package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid/row.mjs +10 -0
  223. package/esm2022/dynamic-form/lib/dynamic-form/configurations/grid-type.mjs +5 -0
  224. package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/fieldset.mjs +10 -0
  225. package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/section.mjs +31 -0
  226. package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure/structure.mjs +9 -0
  227. package/esm2022/dynamic-form/lib/dynamic-form/configurations/structure-type.mjs +6 -0
  228. package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.component.mjs +41 -0
  229. package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.directive.mjs +107 -0
  230. package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.mjs +189 -0
  231. package/esm2022/dynamic-form/lib/dynamic-form/dynamic-form.module.mjs +289 -0
  232. package/esm2022/dynamic-form/lib/dynamic-form/form-field/addon-config.mjs +2 -0
  233. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/field-size.mjs +13 -0
  234. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/field-type.mjs +34 -0
  235. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/autocomplete-field.mjs +24 -0
  236. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/bignumber-field.mjs +37 -0
  237. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/blob-field.mjs +31 -0
  238. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/boolean-field.mjs +30 -0
  239. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/boolean-switch-field.mjs +15 -0
  240. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/button-field.mjs +47 -0
  241. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/calendar-field.mjs +56 -0
  242. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/checkbox-field.mjs +9 -0
  243. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/chips-field.mjs +25 -0
  244. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/country-phone-picker-field.mjs +15 -0
  245. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/currency-field.mjs +14 -0
  246. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/decimal-field.mjs +16 -0
  247. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/editor-field.mjs +15 -0
  248. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/field.mjs +64 -0
  249. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/lookup-field.mjs +66 -0
  250. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/number-field.mjs +38 -0
  251. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/password-field.mjs +33 -0
  252. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/profile-picture.mjs +35 -0
  253. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/radio-button-field.mjs +27 -0
  254. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/select-field.mjs +43 -0
  255. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/slider-field.mjs +30 -0
  256. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/star-rating-field.mjs +17 -0
  257. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-field.mjs +30 -0
  258. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-area-ia-field.mjs +32 -0
  259. package/esm2022/dynamic-form/lib/dynamic-form/form-field/configurations/fields/text-field.mjs +38 -0
  260. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/autocomplete/autocomplete-field.component.mjs +36 -0
  261. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/base-field-component.mjs +22 -0
  262. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/bignumber/bignumber-field.component.mjs +124 -0
  263. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/boolean/boolean-radio-field/boolean-field.component.mjs +27 -0
  264. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/boolean/boolean-switch-field/boolean-switch-field.component.mjs +23 -0
  265. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/button-field/button-field.component.mjs +31 -0
  266. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/calendar/calendar-field.component.mjs +118 -0
  267. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/checkbox/checkbox-field.component.mjs +21 -0
  268. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/chips/chips-field.component.mjs +59 -0
  269. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/country-phone-picker/country-phone-picker-field.component.mjs +29 -0
  270. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/currency/currency-field.component.mjs +90 -0
  271. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/editor/editor-field.component.mjs +23 -0
  272. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/file-upload/file-upload-field.component.mjs +56 -0
  273. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/lookup/lookup-field.component.mjs +23 -0
  274. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/number/number-field.component.mjs +121 -0
  275. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/password/password-field.component.mjs +75 -0
  276. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/profile-picture/profile-picture-field.component.mjs +22 -0
  277. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/radio-button/radio-button-field.component.mjs +52 -0
  278. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/select/select-field.component.mjs +24 -0
  279. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/slider/slider-field.component.mjs +103 -0
  280. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/star-rating/star-rating-field.component.mjs +25 -0
  281. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text/text-field.component.mjs +88 -0
  282. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text-area/text-area-field.component.mjs +29 -0
  283. package/esm2022/dynamic-form/lib/dynamic-form/form-field/fields/text-area-ia/text-area-ia-field.component.mjs +22 -0
  284. package/esm2022/dynamic-form/lib/dynamic-form/form-field/form-field.mjs +243 -0
  285. package/esm2022/dynamic-form/lib/dynamic-form/services/dynamic-form-cache.mjs +150 -0
  286. package/esm2022/dynamic-form/public-api.mjs +44 -0
  287. package/esm2022/dynamic-form/seniorsistemas-angular-components-dynamic-form.mjs +5 -0
  288. package/esm2022/editable-overlay/lib/editable-overlay/editable-overlay.directive.mjs +44 -0
  289. package/esm2022/editable-overlay/lib/editable-overlay/editable-overlay.module.mjs +18 -0
  290. package/esm2022/editable-overlay/public-api.mjs +3 -0
  291. package/esm2022/editable-overlay/seniorsistemas-angular-components-editable-overlay.mjs +5 -0
  292. package/esm2022/empty-state/lib/empty-state/empty-state.component.mjs +51 -0
  293. package/esm2022/empty-state/lib/empty-state/empty-state.module.mjs +22 -0
  294. package/esm2022/empty-state/lib/empty-state/go-back/go-back.component.mjs +34 -0
  295. package/esm2022/empty-state/public-api.mjs +4 -0
  296. package/esm2022/empty-state/seniorsistemas-angular-components-empty-state.mjs +5 -0
  297. package/esm2022/fieldset/lib/fieldset/fieldset.component.mjs +78 -0
  298. package/esm2022/fieldset/lib/fieldset/fieldset.models.mjs +2 -0
  299. package/esm2022/fieldset/lib/fieldset/fieldset.module.mjs +19 -0
  300. package/esm2022/fieldset/public-api.mjs +3 -0
  301. package/esm2022/fieldset/seniorsistemas-angular-components-fieldset.mjs +5 -0
  302. package/esm2022/file-upload/lib/file-upload/file-upload.component.mjs +276 -0
  303. package/esm2022/file-upload/lib/file-upload/file-upload.module.mjs +38 -0
  304. package/esm2022/file-upload/lib/file-upload/file-upload.service.mjs +18 -0
  305. package/esm2022/file-upload/lib/file-upload/models/file-dto.mjs +2 -0
  306. package/esm2022/file-upload/lib/file-upload/models/file-upload-permissions.mjs +2 -0
  307. package/esm2022/file-upload/lib/file-upload/models/list-blob-metadata.mjs +2 -0
  308. package/esm2022/file-upload/lib/file-upload/models/uploadError.mjs +2 -0
  309. package/esm2022/file-upload/lib/file-upload/models/validate-errors.mjs +2 -0
  310. package/esm2022/file-upload/public-api.mjs +3 -0
  311. package/esm2022/file-upload/seniorsistemas-angular-components-file-upload.mjs +5 -0
  312. package/esm2022/gantt/lib/gantt/components/gantt/arrow.mjs +87 -0
  313. package/esm2022/gantt/lib/gantt/components/gantt/bar.mjs +294 -0
  314. package/esm2022/gantt/lib/gantt/components/gantt/gantt-options.mjs +20 -0
  315. package/esm2022/gantt/lib/gantt/components/gantt/gantt.mjs +812 -0
  316. package/esm2022/gantt/lib/gantt/components/gantt/popup.mjs +110 -0
  317. package/esm2022/gantt/lib/gantt/components/gantt/utils/date-utils.mjs +116 -0
  318. package/esm2022/gantt/lib/gantt/components/gantt/utils/svg-utils.mjs +111 -0
  319. package/esm2022/gantt/lib/gantt/components/side-table/side-table.component.mjs +32 -0
  320. package/esm2022/gantt/lib/gantt/gantt.component.mjs +146 -0
  321. package/esm2022/gantt/lib/gantt/gantt.module.mjs +24 -0
  322. package/esm2022/gantt/lib/gantt/models/index.mjs +2 -0
  323. package/esm2022/gantt/lib/gantt/models/options.mjs +2 -0
  324. package/esm2022/gantt/lib/gantt/models/task.mjs +2 -0
  325. package/esm2022/gantt/lib/gantt/models/view-mode.mjs +12 -0
  326. package/esm2022/gantt/public-api.mjs +4 -0
  327. package/esm2022/gantt/seniorsistemas-angular-components-gantt.mjs +5 -0
  328. package/esm2022/global-search/lib/global-search/components/dropdown/global-search-dropdown-item.component.mjs +73 -0
  329. package/esm2022/global-search/lib/global-search/global-search.component.mjs +140 -0
  330. package/esm2022/global-search/lib/global-search/global-search.module.mjs +78 -0
  331. package/esm2022/global-search/lib/global-search/types/global-search-size.enum.mjs +2 -0
  332. package/esm2022/global-search/public-api.mjs +5 -0
  333. package/esm2022/global-search/seniorsistemas-angular-components-global-search.mjs +5 -0
  334. package/esm2022/grid-menu/lib/grid-menu/components/grid-menu-item/grid-menu-item.component.mjs +34 -0
  335. package/esm2022/grid-menu/lib/grid-menu/grid-menu.component.mjs +19 -0
  336. package/esm2022/grid-menu/lib/grid-menu/grid-menu.module.mjs +19 -0
  337. package/esm2022/grid-menu/lib/grid-menu/types/grid-menu-item.mjs +2 -0
  338. package/esm2022/grid-menu/public-api.mjs +4 -0
  339. package/esm2022/grid-menu/seniorsistemas-angular-components-grid-menu.mjs +5 -0
  340. package/esm2022/help-popover/lib/help-popover/help-popover/help-popover.component.mjs +84 -0
  341. package/esm2022/help-popover/lib/help-popover/help-popover.directive.mjs +314 -0
  342. package/esm2022/help-popover/lib/help-popover/help-popover.module.mjs +25 -0
  343. package/esm2022/help-popover/lib/help-popover/models/help-popover.models.mjs +2 -0
  344. package/esm2022/help-popover/public-api.mjs +4 -0
  345. package/esm2022/help-popover/seniorsistemas-angular-components-help-popover.mjs +5 -0
  346. package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-card/components/ia-insight-card-loader/ia-insight-card-loader.component.mjs +13 -0
  347. package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-card/ia-insight-card.component.mjs +82 -0
  348. package/esm2022/ia-insight/lib/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.mjs +49 -0
  349. package/esm2022/ia-insight/lib/ia-insight/ia-insight.component.mjs +66 -0
  350. package/esm2022/ia-insight/lib/ia-insight/ia-insight.module.mjs +47 -0
  351. package/esm2022/ia-insight/lib/ia-insight/models/ia-insight-item.mjs +2 -0
  352. package/esm2022/ia-insight/lib/ia-insight/models/ia-insight-template-types.mjs +2 -0
  353. package/esm2022/ia-insight/lib/ia-insight/models/index.mjs +2 -0
  354. package/esm2022/ia-insight/public-api.mjs +4 -0
  355. package/esm2022/ia-insight/seniorsistemas-angular-components-ia-insight.mjs +5 -0
  356. package/esm2022/image-cropper/lib/image-cropper/image-cropper.component.mjs +179 -0
  357. package/esm2022/image-cropper/lib/image-cropper/image-cropper.module.mjs +23 -0
  358. package/esm2022/image-cropper/lib/image-cropper/image-cropper.service.mjs +73 -0
  359. package/esm2022/image-cropper/public-api.mjs +4 -0
  360. package/esm2022/image-cropper/seniorsistemas-angular-components-image-cropper.mjs +5 -0
  361. package/esm2022/infinite-scroll/lib/infinite-scroll/infinite-scroll.directive.mjs +28 -0
  362. package/esm2022/infinite-scroll/lib/infinite-scroll/infinite-scroll.module.mjs +18 -0
  363. package/esm2022/infinite-scroll/public-api.mjs +3 -0
  364. package/esm2022/infinite-scroll/seniorsistemas-angular-components-infinite-scroll.mjs +5 -0
  365. package/esm2022/info-sign/lib/info-sign/components/info-sign/info-sign.component.mjs +17 -0
  366. package/esm2022/info-sign/lib/info-sign/info-sign.directive.mjs +68 -0
  367. package/esm2022/info-sign/lib/info-sign/info-sign.module.mjs +20 -0
  368. package/esm2022/info-sign/public-api.mjs +3 -0
  369. package/esm2022/info-sign/seniorsistemas-angular-components-info-sign.mjs +5 -0
  370. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-calendar/inline-edit-calendar.component.mjs +53 -0
  371. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.mjs +32 -0
  372. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.mjs +85 -0
  373. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text/inline-edit-text.component.mjs +32 -0
  374. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text-area/inline-edit-text-area.component.mjs +33 -0
  375. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-text-area-ia/inline-edit-text-area-ia.component.mjs +32 -0
  376. package/esm2022/inline-edit/lib/inline-edit/components/index.mjs +8 -0
  377. package/esm2022/inline-edit/lib/inline-edit/components/inline-edit-item/inline-edit-item.component.mjs +105 -0
  378. package/esm2022/inline-edit/lib/inline-edit/fields/index.mjs +8 -0
  379. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-calendar-field.mjs +45 -0
  380. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-field.mjs +13 -0
  381. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-lookup-field.mjs +60 -0
  382. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-number-field.mjs +38 -0
  383. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-area-field.mjs +15 -0
  384. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-area-ia-field.mjs +7 -0
  385. package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-text-field.mjs +7 -0
  386. package/esm2022/inline-edit/lib/inline-edit/inline-edit.component.mjs +66 -0
  387. package/esm2022/inline-edit/lib/inline-edit/inline-edit.module.mjs +102 -0
  388. package/esm2022/inline-edit/lib/inline-edit/types/addon-config.mjs +2 -0
  389. package/esm2022/inline-edit/public-api.mjs +4 -0
  390. package/esm2022/inline-edit/seniorsistemas-angular-components-inline-edit.mjs +5 -0
  391. package/esm2022/interactive-content/lib/interactive-content/interactive-content.directive.mjs +63 -0
  392. package/esm2022/interactive-content/public-api.mjs +2 -0
  393. package/esm2022/interactive-content/seniorsistemas-angular-components-interactive-content.mjs +5 -0
  394. package/esm2022/kanban/lib/kanban/components/kanban-column/kanban-column.component.mjs +100 -0
  395. package/esm2022/kanban/lib/kanban/components/kanban-item/kanban-item.component.mjs +62 -0
  396. package/esm2022/kanban/lib/kanban/components/kanban-item-dragging/kanban-item-dragging.component.mjs +17 -0
  397. package/esm2022/kanban/lib/kanban/kanban-event.service.mjs +26 -0
  398. package/esm2022/kanban/lib/kanban/kanban.component.mjs +219 -0
  399. package/esm2022/kanban/lib/kanban/kanban.module.mjs +56 -0
  400. package/esm2022/kanban/lib/kanban/types/index.mjs +2 -0
  401. package/esm2022/kanban/lib/kanban/types/kanban-data.mjs +2 -0
  402. package/esm2022/kanban/lib/kanban/types/kanban-template-types.mjs +2 -0
  403. package/esm2022/kanban/public-api.mjs +3 -0
  404. package/esm2022/kanban/seniorsistemas-angular-components-kanban.mjs +5 -0
  405. package/esm2022/label-value/lib/label-value/label-value.component.mjs +35 -0
  406. package/esm2022/label-value/lib/label-value/label-value.module.mjs +22 -0
  407. package/esm2022/label-value/lib/label-value/types/label-value-configuration.mjs +2 -0
  408. package/esm2022/label-value/public-api.mjs +3 -0
  409. package/esm2022/label-value/seniorsistemas-angular-components-label-value.mjs +5 -0
  410. package/esm2022/lib/locale/fallback.mjs +333 -0
  411. package/esm2022/loading-state/lib/loading-state/components/dots-indicator/dots-indicator.components.mjs +11 -0
  412. package/esm2022/loading-state/lib/loading-state/components/loading-state-indicators.mjs +6 -0
  413. package/esm2022/loading-state/lib/loading-state/components/logo-indicator/logo-indicator.component.mjs +12 -0
  414. package/esm2022/loading-state/lib/loading-state/loading-state.component.mjs +74 -0
  415. package/esm2022/loading-state/lib/loading-state/loading-state.directive.mjs +62 -0
  416. package/esm2022/loading-state/lib/loading-state/loading-state.module.mjs +30 -0
  417. package/esm2022/loading-state/public-api.mjs +5 -0
  418. package/esm2022/loading-state/seniorsistemas-angular-components-loading-state.mjs +5 -0
  419. package/esm2022/locale/lib/locale/locale.module.mjs +85 -0
  420. package/esm2022/locale/lib/locale/locale.service.mjs +87 -0
  421. package/esm2022/locale/lib/locale/options/calendar.mjs +24 -0
  422. package/esm2022/locale/lib/locale/options/index.mjs +27 -0
  423. package/esm2022/locale/lib/locale/options/number.mjs +9 -0
  424. package/esm2022/locale/lib/locale/pipes/localized-bignumber-impure.pipe.mjs +18 -0
  425. package/esm2022/locale/lib/locale/pipes/localized-bignumber.pipe.mjs +38 -0
  426. package/esm2022/locale/lib/locale/pipes/localized-currency-impure.pipe.mjs +21 -0
  427. package/esm2022/locale/lib/locale/pipes/localized-currency.pipe.mjs +53 -0
  428. package/esm2022/locale/lib/locale/pipes/localized-date-impure.pipe.mjs +15 -0
  429. package/esm2022/locale/lib/locale/pipes/localized-date.pipe.mjs +23 -0
  430. package/esm2022/locale/lib/locale/pipes/localized-number.pipe.mjs +31 -0
  431. package/esm2022/locale/lib/locale/pipes/localized-time-impure.pipe.mjs +15 -0
  432. package/esm2022/locale/lib/locale/pipes/localized-time.pipe.mjs +23 -0
  433. package/esm2022/locale/public-api.mjs +13 -0
  434. package/esm2022/locale/seniorsistemas-angular-components-locale.mjs +5 -0
  435. package/esm2022/localized-number-input/lib/localized-number-input/localized-number-input.directive.mjs +63 -0
  436. package/esm2022/localized-number-input/lib/localized-number-input/localized-number-input.module.mjs +18 -0
  437. package/esm2022/localized-number-input/public-api.mjs +3 -0
  438. package/esm2022/localized-number-input/seniorsistemas-angular-components-localized-number-input.mjs +5 -0
  439. package/esm2022/mask/lib/mask/mask-formatter.module.mjs +16 -0
  440. package/esm2022/mask/lib/mask/mask-formatter.pipe.mjs +65 -0
  441. package/esm2022/mask/public-api.mjs +3 -0
  442. package/esm2022/mask/seniorsistemas-angular-components-mask.mjs +5 -0
  443. package/esm2022/mouse-events/lib/mouse-events/double-click.directive.mjs +37 -0
  444. package/esm2022/mouse-events/lib/mouse-events/long-press.directive.mjs +51 -0
  445. package/esm2022/mouse-events/lib/mouse-events/mouse-events.module.mjs +27 -0
  446. package/esm2022/mouse-events/public-api.mjs +4 -0
  447. package/esm2022/mouse-events/seniorsistemas-angular-components-mouse-events.mjs +5 -0
  448. package/esm2022/navigation-button/lib/navigation-button/models/index.mjs +2 -0
  449. package/esm2022/navigation-button/lib/navigation-button/models/navigation-button-item.mjs +2 -0
  450. package/esm2022/navigation-button/lib/navigation-button/models/navigation-button-step-changed-info.mjs +2 -0
  451. package/esm2022/navigation-button/lib/navigation-button/navigation-button.component.mjs +134 -0
  452. package/esm2022/navigation-button/lib/navigation-button/navigation-button.module.mjs +20 -0
  453. package/esm2022/navigation-button/public-api.mjs +4 -0
  454. package/esm2022/navigation-button/seniorsistemas-angular-components-navigation-button.mjs +5 -0
  455. package/esm2022/number-input/lib/number-input/number-input.directive.mjs +164 -0
  456. package/esm2022/number-input/lib/number-input/number-input.module.mjs +21 -0
  457. package/esm2022/number-input/public-api.mjs +3 -0
  458. package/esm2022/number-input/seniorsistemas-angular-components-number-input.mjs +5 -0
  459. package/esm2022/numeric/lib/numeric.module.mjs +18 -0
  460. package/esm2022/numeric/lib/numeric.pipe.mjs +29 -0
  461. package/esm2022/numeric/lib/numeric.service.mjs +92 -0
  462. package/esm2022/numeric/public-api.mjs +4 -0
  463. package/esm2022/numeric/seniorsistemas-angular-components-numeric.mjs +5 -0
  464. package/esm2022/object-card/lib/object-card/elements/field/object-card-field.component.mjs +51 -0
  465. package/esm2022/object-card/lib/object-card/elements/main/object-card-main.component.mjs +87 -0
  466. package/esm2022/object-card/lib/object-card/object-card.component.mjs +171 -0
  467. package/esm2022/object-card/lib/object-card/object-card.module.mjs +24 -0
  468. package/esm2022/object-card/public-api.mjs +5 -0
  469. package/esm2022/object-card/seniorsistemas-angular-components-object-card.mjs +5 -0
  470. package/esm2022/paginator/lib/models/paginator.models.mjs +2 -0
  471. package/esm2022/paginator/lib/paginator/paginator.component.mjs +138 -0
  472. package/esm2022/paginator/public-api.mjs +2 -0
  473. package/esm2022/paginator/seniorsistemas-angular-components-paginator.mjs +5 -0
  474. package/esm2022/panel/lib/panel/panel.component.mjs +91 -0
  475. package/esm2022/panel/lib/panel/panel.module.mjs +20 -0
  476. package/esm2022/panel/public-api.mjs +3 -0
  477. package/esm2022/panel/seniorsistemas-angular-components-panel.mjs +5 -0
  478. package/esm2022/password-strength/lib/password-strength/password-strength.component.mjs +92 -0
  479. package/esm2022/password-strength/lib/password-strength/password-strength.directive.mjs +210 -0
  480. package/esm2022/password-strength/lib/password-strength/password-strength.module.mjs +19 -0
  481. package/esm2022/password-strength/lib/password-strength/types/password-positions.mjs +2 -0
  482. package/esm2022/password-strength/lib/password-strength/types/password-strengths.mjs +2 -0
  483. package/esm2022/password-strength/public-api.mjs +4 -0
  484. package/esm2022/password-strength/seniorsistemas-angular-components-password-strength.mjs +5 -0
  485. package/esm2022/picklist/lib/picklist/picklist.component.mjs +299 -0
  486. package/esm2022/picklist/lib/picklist/picklist.module.mjs +36 -0
  487. package/esm2022/picklist/lib/picklist/types/index.mjs +2 -0
  488. package/esm2022/picklist/lib/picklist/types/picklist-item.mjs +2 -0
  489. package/esm2022/picklist/lib/picklist/types/picklist-template-types.mjs +2 -0
  490. package/esm2022/picklist/public-api.mjs +5 -0
  491. package/esm2022/picklist/seniorsistemas-angular-components-picklist.mjs +5 -0
  492. package/esm2022/product-header/lib/product-header/product-header.component.mjs +44 -0
  493. package/esm2022/product-header/lib/product-header/product-header.module.mjs +20 -0
  494. package/esm2022/product-header/public-api.mjs +3 -0
  495. package/esm2022/product-header/seniorsistemas-angular-components-product-header.mjs +5 -0
  496. package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/confirmation-texts.mjs +2 -0
  497. package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/cropper-labels-config.mjs +2 -0
  498. package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/file-validation-errors.mjs +2 -0
  499. package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/index.mjs +2 -0
  500. package/esm2022/profile-picture-picker/lib/profile-picture-picker/models/profile-picture-picker-data.mjs +2 -0
  501. package/esm2022/profile-picture-picker/lib/profile-picture-picker/profile-picture-picker.component.mjs +277 -0
  502. package/esm2022/profile-picture-picker/lib/profile-picture-picker/profile-picture-picker.module.mjs +25 -0
  503. package/esm2022/profile-picture-picker/lib/profile-picture-picker/validators/index.mjs +2 -0
  504. package/esm2022/profile-picture-picker/lib/profile-picture-picker/validators/validators.mjs +28 -0
  505. package/esm2022/profile-picture-picker/public-api.mjs +4 -0
  506. package/esm2022/profile-picture-picker/seniorsistemas-angular-components-profile-picture-picker.mjs +5 -0
  507. package/esm2022/progressbar/lib/progressbar/components/progressbar-determinate/progressbar-determinate.component.mjs +60 -0
  508. package/esm2022/progressbar/lib/progressbar/components/progressbar-indeterminate/progressbar-indeterminate.component.mjs +19 -0
  509. package/esm2022/progressbar/lib/progressbar/progressbar.component.mjs +57 -0
  510. package/esm2022/progressbar/lib/progressbar/progressbar.module.mjs +21 -0
  511. package/esm2022/progressbar/lib/progressbar/types/index.mjs +2 -0
  512. package/esm2022/progressbar/lib/progressbar/types/progressbar-colors.mjs +2 -0
  513. package/esm2022/progressbar/lib/progressbar/types/progressbar-mode.mjs +2 -0
  514. package/esm2022/progressbar/public-api.mjs +4 -0
  515. package/esm2022/progressbar/seniorsistemas-angular-components-progressbar.mjs +5 -0
  516. package/esm2022/public-api.mjs +2 -0
  517. package/esm2022/radio-button/lib/radio-button/radio-button.component.mjs +82 -0
  518. package/esm2022/radio-button/lib/radio-button-group/models/radio-button-group.models.mjs +2 -0
  519. package/esm2022/radio-button/lib/radio-button-group/radio-button-group.component.mjs +62 -0
  520. package/esm2022/radio-button/lib/services/radio-button-registry.service.mjs +38 -0
  521. package/esm2022/radio-button/public-api.mjs +3 -0
  522. package/esm2022/radio-button/seniorsistemas-angular-components-radio-button.mjs +5 -0
  523. package/esm2022/rating-scale/lib/rating-scale/models/index.mjs +2 -0
  524. package/esm2022/rating-scale/lib/rating-scale/models/rating-scale-node.mjs +2 -0
  525. package/esm2022/rating-scale/lib/rating-scale/rating-scale.component.mjs +54 -0
  526. package/esm2022/rating-scale/lib/rating-scale/rating-scale.module.mjs +24 -0
  527. package/esm2022/rating-scale/public-api.mjs +3 -0
  528. package/esm2022/rating-scale/seniorsistemas-angular-components-rating-scale.mjs +5 -0
  529. package/esm2022/select/lib/select/components/select-option/select-option.component.mjs +27 -0
  530. package/esm2022/select/lib/select/select.component.mjs +712 -0
  531. package/esm2022/select/public-api.mjs +2 -0
  532. package/esm2022/select/seniorsistemas-angular-components-select.mjs +5 -0
  533. package/esm2022/select-button/lib/select-button/components/select-button-item/select-button-item.component.mjs +28 -0
  534. package/esm2022/select-button/lib/select-button/models/select-button-item.mjs +2 -0
  535. package/esm2022/select-button/lib/select-button/select-button.component.mjs +122 -0
  536. package/esm2022/select-button/lib/select-button/select-button.module.mjs +23 -0
  537. package/esm2022/select-button/public-api.mjs +3 -0
  538. package/esm2022/select-button/seniorsistemas-angular-components-select-button.mjs +5 -0
  539. package/esm2022/seniorsistemas-angular-components.mjs +5 -0
  540. package/esm2022/shared/lib/shared/border-button/border-button.component.mjs +19 -0
  541. package/esm2022/shared/lib/shared/border-button/border-button.module.mjs +19 -0
  542. package/esm2022/shared/lib/shared/helpers.mjs +31 -0
  543. package/esm2022/shared/lib/shared/models/border-button-options.mjs +2 -0
  544. package/esm2022/shared/lib/shared/models/severities.mjs +9 -0
  545. package/esm2022/shared/public-api.mjs +5 -0
  546. package/esm2022/shared/seniorsistemas-angular-components-shared.mjs +5 -0
  547. package/esm2022/sidebar/lib/sidebar/sidebar.component.mjs +114 -0
  548. package/esm2022/sidebar/lib/sidebar/sidebar.module.mjs +20 -0
  549. package/esm2022/sidebar/public-api.mjs +3 -0
  550. package/esm2022/sidebar/seniorsistemas-angular-components-sidebar.mjs +5 -0
  551. package/esm2022/slide-panel/lib/slide-panel/slide-panel.component.mjs +137 -0
  552. package/esm2022/slide-panel/lib/slide-panel/slide-panel.module.mjs +20 -0
  553. package/esm2022/slide-panel/lib/slide-panel/slide-panel.service.mjs +26 -0
  554. package/esm2022/slide-panel/public-api.mjs +4 -0
  555. package/esm2022/slide-panel/seniorsistemas-angular-components-slide-panel.mjs +5 -0
  556. package/esm2022/slider/lib/slider/slider.component.mjs +601 -0
  557. package/esm2022/slider/lib/slider/slider.module.mjs +19 -0
  558. package/esm2022/slider/public-api.mjs +3 -0
  559. package/esm2022/slider/seniorsistemas-angular-components-slider.mjs +5 -0
  560. package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition/speech-recognition.component.mjs +217 -0
  561. package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition.module.mjs +24 -0
  562. package/esm2022/speech-recognition/lib/speech-recognition/speech-recognition.service.mjs +146 -0
  563. package/esm2022/speech-recognition/lib/speech-recognition/text-to-speech.service.mjs +81 -0
  564. package/esm2022/speech-recognition/public-api.mjs +5 -0
  565. package/esm2022/speech-recognition/seniorsistemas-angular-components-speech-recognition.mjs +5 -0
  566. package/esm2022/split-button/lib/split-button/models/index.mjs +2 -0
  567. package/esm2022/split-button/lib/split-button/models/split-button-option.mjs +2 -0
  568. package/esm2022/split-button/lib/split-button/models/split-button-type.mjs +2 -0
  569. package/esm2022/split-button/lib/split-button/split-button.component.mjs +64 -0
  570. package/esm2022/split-button/lib/split-button/split-button.module.mjs +18 -0
  571. package/esm2022/split-button/public-api.mjs +4 -0
  572. package/esm2022/split-button/seniorsistemas-angular-components-split-button.mjs +5 -0
  573. package/esm2022/star-rating/public-api.mjs +2 -0
  574. package/esm2022/star-rating/seniorsistemas-angular-components-star-rating.mjs +5 -0
  575. package/esm2022/star-rating/star-rating/star-rating-models.mjs +2 -0
  576. package/esm2022/star-rating/star-rating/star-rating.component.mjs +63 -0
  577. package/esm2022/stats-card/lib/stats-card/stats-card.component.mjs +119 -0
  578. package/esm2022/stats-card/lib/stats-card/stats-card.module.mjs +19 -0
  579. package/esm2022/stats-card/public-api.mjs +3 -0
  580. package/esm2022/stats-card/seniorsistemas-angular-components-stats-card.mjs +5 -0
  581. package/esm2022/steps/lib/steps/steps.component.mjs +122 -0
  582. package/esm2022/steps/lib/steps/steps.module.mjs +19 -0
  583. package/esm2022/steps/public-api.mjs +3 -0
  584. package/esm2022/steps/seniorsistemas-angular-components-steps.mjs +5 -0
  585. package/esm2022/structure/lib/structure/footer.component.mjs +14 -0
  586. package/esm2022/structure/lib/structure/header.component.mjs +14 -0
  587. package/esm2022/structure/lib/structure/structure.module.mjs +19 -0
  588. package/esm2022/structure/public-api.mjs +5 -0
  589. package/esm2022/structure/seniorsistemas-angular-components-structure.mjs +5 -0
  590. package/esm2022/switch/lib/switch/switch.component.mjs +93 -0
  591. package/esm2022/switch/lib/switch/switch.module.mjs +18 -0
  592. package/esm2022/switch/public-api.mjs +3 -0
  593. package/esm2022/switch/seniorsistemas-angular-components-switch.mjs +5 -0
  594. package/esm2022/table/lib/locale-utils.mjs +15 -0
  595. package/esm2022/table/lib/table/export-utils.mjs +112 -0
  596. package/esm2022/table/lib/table/navigation/navigation.directive.mjs +130 -0
  597. package/esm2022/table/lib/table/row-toggler/row-toggler.directive.mjs +38 -0
  598. package/esm2022/table/lib/table/table-column/index.mjs +3 -0
  599. package/esm2022/table/lib/table/table-column/models/badge-column.interface.mjs +2 -0
  600. package/esm2022/table/lib/table/table-column/models/badge-configs.interface.mjs +2 -0
  601. package/esm2022/table/lib/table/table-column/models/column-colors.mjs +2 -0
  602. package/esm2022/table/lib/table/table-column/models/column-values.interface.mjs +2 -0
  603. package/esm2022/table/lib/table/table-column/models/column.interface.mjs +2 -0
  604. package/esm2022/table/lib/table/table-column/models/dynamic-editable-grid.interface.mjs +2 -0
  605. package/esm2022/table/lib/table/table-column/models/enum-badge-colors.mjs +10 -0
  606. package/esm2022/table/lib/table/table-column/models/enum-column-field-type.mjs +13 -0
  607. package/esm2022/table/lib/table/table-column/models/index.mjs +11 -0
  608. package/esm2022/table/lib/table/table-column/models/locale-options.interface.mjs +2 -0
  609. package/esm2022/table/lib/table/table-column/models/number-locale-options.interface.mjs +2 -0
  610. package/esm2022/table/lib/table/table-column/table-columns.component.mjs +299 -0
  611. package/esm2022/table/lib/table/table-paging/index.mjs +3 -0
  612. package/esm2022/table/lib/table/table-paging/models/custom-action.interface.mjs +2 -0
  613. package/esm2022/table/lib/table/table-paging/models/index.mjs +2 -0
  614. package/esm2022/table/lib/table/table-paging/table-paging.component.mjs +321 -0
  615. package/esm2022/table/lib/table/table.module.mjs +27 -0
  616. package/esm2022/table/public-api.mjs +6 -0
  617. package/esm2022/table/seniorsistemas-angular-components-table.mjs +5 -0
  618. package/esm2022/table-header/lib/table-header/table-header-checkbox.component.mjs +151 -0
  619. package/esm2022/table-header/lib/table-header/table-header-checkox.module.mjs +20 -0
  620. package/esm2022/table-header/public-api.mjs +3 -0
  621. package/esm2022/table-header/seniorsistemas-angular-components-table-header.mjs +5 -0
  622. package/esm2022/tabs/lib/tab-item/tab-item.component.mjs +36 -0
  623. package/esm2022/tabs/lib/tabs/tabs.component.mjs +51 -0
  624. package/esm2022/tabs/public-api.mjs +3 -0
  625. package/esm2022/tabs/seniorsistemas-angular-components-tabs.mjs +5 -0
  626. package/esm2022/template/lib/template/template.directive.mjs +22 -0
  627. package/esm2022/template/lib/template/template.module.mjs +17 -0
  628. package/esm2022/template/public-api.mjs +3 -0
  629. package/esm2022/template/seniorsistemas-angular-components-template.mjs +5 -0
  630. package/esm2022/text-area/lib/text-area/text-area.component.mjs +116 -0
  631. package/esm2022/text-area/lib/text-area.module.mjs +35 -0
  632. package/esm2022/text-area/public-api.mjs +3 -0
  633. package/esm2022/text-area/seniorsistemas-angular-components-text-area.mjs +5 -0
  634. package/esm2022/text-area-ia/lib/services/IAssist/iassist.service.mjs +77 -0
  635. package/esm2022/text-area-ia/lib/services/IAssist/models/iassist-input-data.mjs +3 -0
  636. package/esm2022/text-area-ia/lib/services/IAssist/models/iassist-response.mjs +3 -0
  637. package/esm2022/text-area-ia/lib/text-area-ia/text-area-ia.component.mjs +150 -0
  638. package/esm2022/text-area-ia/lib/text-area-ia/text-area-ia.module.mjs +50 -0
  639. package/esm2022/text-area-ia/public-api.mjs +3 -0
  640. package/esm2022/text-area-ia/seniorsistemas-angular-components-text-area-ia.mjs +5 -0
  641. package/esm2022/thumbnail/lib/thumbnail/thumbnail-size.mjs +2 -0
  642. package/esm2022/thumbnail/lib/thumbnail/thumbnail.component.mjs +77 -0
  643. package/esm2022/thumbnail/lib/thumbnail/thumbnail.module.mjs +20 -0
  644. package/esm2022/thumbnail/lib/thumbnail/thumbnail.service.mjs +62 -0
  645. package/esm2022/thumbnail/public-api.mjs +4 -0
  646. package/esm2022/thumbnail/seniorsistemas-angular-components-thumbnail.mjs +5 -0
  647. package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/components/thumbnail-item-image/thumbnail-item-image.component.mjs +17 -0
  648. package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/components/thumbnail-item-video/thumbnail-item-video.component.mjs +42 -0
  649. package/esm2022/thumbnails/lib/thumbnails/components/thumbnail-item/thumbnail-item.component.mjs +64 -0
  650. package/esm2022/thumbnails/lib/thumbnails/models/thumbnails-item.mjs +2 -0
  651. package/esm2022/thumbnails/lib/thumbnails/thumbnails.component.mjs +48 -0
  652. package/esm2022/thumbnails/lib/thumbnails/thumbnails.module.mjs +24 -0
  653. package/esm2022/thumbnails/public-api.mjs +3 -0
  654. package/esm2022/thumbnails/seniorsistemas-angular-components-thumbnails.mjs +5 -0
  655. package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu/tiered-menu.component.mjs +303 -0
  656. package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-divider/tiered-menu-divider.component.mjs +11 -0
  657. package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-item/tiered-menu-item.component.mjs +73 -0
  658. package/esm2022/tiered-menu/lib/tiered-menu/components/tiered-menu-nested/tiered-menu-nested.component.mjs +179 -0
  659. package/esm2022/tiered-menu/lib/tiered-menu/models/index.mjs +2 -0
  660. package/esm2022/tiered-menu/lib/tiered-menu/models/tiered-menu-item-data.mjs +2 -0
  661. package/esm2022/tiered-menu/lib/tiered-menu/models/tiered-menu-item-internal-data.mjs +2 -0
  662. package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.event.service.mjs +17 -0
  663. package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.global.service.mjs +11 -0
  664. package/esm2022/tiered-menu/lib/tiered-menu/services/tiered-menu.service.mjs +54 -0
  665. package/esm2022/tiered-menu/lib/tiered-menu/tiered-menu.directive.mjs +234 -0
  666. package/esm2022/tiered-menu/lib/tiered-menu/tiered-menu.module.mjs +34 -0
  667. package/esm2022/tiered-menu/public-api.mjs +6 -0
  668. package/esm2022/tiered-menu/seniorsistemas-angular-components-tiered-menu.mjs +5 -0
  669. package/esm2022/tile/lib/tile/tile.component.mjs +65 -0
  670. package/esm2022/tile/lib/tile/tile.module.mjs +20 -0
  671. package/esm2022/tile/public-api.mjs +3 -0
  672. package/esm2022/tile/seniorsistemas-angular-components-tile.mjs +5 -0
  673. package/esm2022/timeline/lib/timeline/components/horizontal-timeline/horizontal-timeline.component.mjs +24 -0
  674. package/esm2022/timeline/lib/timeline/components/horizontal-timeline/horizontal-timeline.module.mjs +20 -0
  675. package/esm2022/timeline/lib/timeline/components/timeline-icon-item/timeline-icon-item.component.mjs +26 -0
  676. package/esm2022/timeline/lib/timeline/components/timeline-icon-item/timeline-icon-item.module.mjs +19 -0
  677. package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.mjs +21 -0
  678. package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.mjs +33 -0
  679. package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/range-line/range-line.component.mjs +11 -0
  680. package/esm2022/timeline/lib/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.mjs +29 -0
  681. package/esm2022/timeline/lib/timeline/components/vertical-timeline/vertical-timeline.component.mjs +60 -0
  682. package/esm2022/timeline/lib/timeline/components/vertical-timeline/vertical-timeline.module.mjs +33 -0
  683. package/esm2022/timeline/lib/timeline/models/timeline-item-severity.mjs +7 -0
  684. package/esm2022/timeline/lib/timeline/models/timeline-item-size.mjs +6 -0
  685. package/esm2022/timeline/lib/timeline/models/timeline-item.mjs +44 -0
  686. package/esm2022/timeline/lib/timeline/timeline.component.mjs +66 -0
  687. package/esm2022/timeline/lib/timeline/timeline.module.mjs +32 -0
  688. package/esm2022/timeline/public-api.mjs +6 -0
  689. package/esm2022/timeline/seniorsistemas-angular-components-timeline.mjs +5 -0
  690. package/esm2022/toast/lib/toast/toast.component.mjs +46 -0
  691. package/esm2022/toast/lib/toast/toast.module.mjs +17 -0
  692. package/esm2022/toast/lib/toast/toast.service.mjs +68 -0
  693. package/esm2022/toast/lib/toast/types/toast.mjs +2 -0
  694. package/esm2022/toast/public-api.mjs +4 -0
  695. package/esm2022/toast/seniorsistemas-angular-components-toast.mjs +5 -0
  696. package/esm2022/token-list/lib/token-list/models/index.mjs +2 -0
  697. package/esm2022/token-list/lib/token-list/models/token.mjs +2 -0
  698. package/esm2022/token-list/lib/token-list/token-list.component.mjs +42 -0
  699. package/esm2022/token-list/lib/token-list/token-list.module.mjs +18 -0
  700. package/esm2022/token-list/public-api.mjs +4 -0
  701. package/esm2022/token-list/seniorsistemas-angular-components-token-list.mjs +5 -0
  702. package/esm2022/tooltip/lib/tooltip/models/mobile-behavior.mjs +2 -0
  703. package/esm2022/tooltip/lib/tooltip/models/tooltip-event.mjs +2 -0
  704. package/esm2022/tooltip/lib/tooltip/models/tooltip-position.mjs +2 -0
  705. package/esm2022/tooltip/lib/tooltip/tooltip.component.mjs +18 -0
  706. package/esm2022/tooltip/lib/tooltip/tooltip.directive.mjs +339 -0
  707. package/esm2022/tooltip/lib/tooltip/tooltip.module.mjs +19 -0
  708. package/esm2022/tooltip/public-api.mjs +3 -0
  709. package/esm2022/tooltip/seniorsistemas-angular-components-tooltip.mjs +5 -0
  710. package/esm2022/utils/lib/utils/breakpoints.mjs +11 -0
  711. package/esm2022/utils/lib/utils/utils.mjs +51 -0
  712. package/esm2022/utils/public-api.mjs +3 -0
  713. package/esm2022/utils/seniorsistemas-angular-components-utils.mjs +5 -0
  714. package/esm2022/workspace-switch/lib/workspace-switch/models/index.mjs +2 -0
  715. package/esm2022/workspace-switch/lib/workspace-switch/models/workspace.mjs +2 -0
  716. package/esm2022/workspace-switch/lib/workspace-switch/workspace-switch.component.mjs +137 -0
  717. package/esm2022/workspace-switch/lib/workspace-switch/workspace-switch.module.mjs +18 -0
  718. package/esm2022/workspace-switch/public-api.mjs +3 -0
  719. package/esm2022/workspace-switch/seniorsistemas-angular-components-workspace-switch.mjs +5 -0
  720. package/fesm2022/seniorsistemas-angular-components-accordion.mjs +10 -10
  721. package/fesm2022/seniorsistemas-angular-components-accordion.mjs.map +1 -1
  722. package/fesm2022/seniorsistemas-angular-components-alert.mjs +7 -7
  723. package/fesm2022/seniorsistemas-angular-components-badge.mjs +7 -7
  724. package/fesm2022/seniorsistemas-angular-components-bignumber-input.mjs +7 -7
  725. package/fesm2022/seniorsistemas-angular-components-breadcrumb.mjs +7 -7
  726. package/fesm2022/seniorsistemas-angular-components-button.mjs +20 -29
  727. package/fesm2022/seniorsistemas-angular-components-button.mjs.map +1 -1
  728. package/fesm2022/seniorsistemas-angular-components-calendar-mask.mjs +7 -7
  729. package/fesm2022/seniorsistemas-angular-components-card.mjs +7 -7
  730. package/fesm2022/seniorsistemas-angular-components-chat.mjs +10 -10
  731. package/fesm2022/seniorsistemas-angular-components-checkbox-list.mjs +7 -7
  732. package/fesm2022/seniorsistemas-angular-components-checkbox.mjs +3 -3
  733. package/fesm2022/seniorsistemas-angular-components-chips.mjs +10 -10
  734. package/fesm2022/seniorsistemas-angular-components-chips.mjs.map +1 -1
  735. package/fesm2022/seniorsistemas-angular-components-code-editor.mjs +11 -11
  736. package/fesm2022/seniorsistemas-angular-components-collapse-link.mjs +7 -7
  737. package/fesm2022/seniorsistemas-angular-components-common.mjs +20 -20
  738. package/fesm2022/seniorsistemas-angular-components-confirm-dialog.mjs +54 -0
  739. package/fesm2022/seniorsistemas-angular-components-confirm-dialog.mjs.map +1 -0
  740. package/fesm2022/seniorsistemas-angular-components-control-errors.mjs +7 -7
  741. package/fesm2022/seniorsistemas-angular-components-country-phone-picker.mjs +10 -10
  742. package/fesm2022/seniorsistemas-angular-components-currency.mjs +3 -3
  743. package/fesm2022/seniorsistemas-angular-components-custom-fields.mjs +10 -10
  744. package/fesm2022/seniorsistemas-angular-components-dialog.mjs +221 -0
  745. package/fesm2022/seniorsistemas-angular-components-dialog.mjs.map +1 -0
  746. package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs +184 -173
  747. package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs.map +1 -1
  748. package/fesm2022/seniorsistemas-angular-components-editable-overlay.mjs +7 -7
  749. package/fesm2022/seniorsistemas-angular-components-empty-state.mjs +10 -10
  750. package/fesm2022/seniorsistemas-angular-components-fieldset.mjs +18 -15
  751. package/fesm2022/seniorsistemas-angular-components-fieldset.mjs.map +1 -1
  752. package/fesm2022/seniorsistemas-angular-components-file-upload.mjs +10 -10
  753. package/fesm2022/seniorsistemas-angular-components-gantt.mjs +10 -10
  754. package/fesm2022/seniorsistemas-angular-components-gantt.mjs.map +1 -1
  755. package/fesm2022/seniorsistemas-angular-components-global-search.mjs +10 -10
  756. package/fesm2022/seniorsistemas-angular-components-grid-menu.mjs +10 -10
  757. package/fesm2022/seniorsistemas-angular-components-help-popover.mjs +10 -10
  758. package/fesm2022/seniorsistemas-angular-components-ia-insight.mjs +16 -16
  759. package/fesm2022/seniorsistemas-angular-components-image-cropper.mjs +22 -17
  760. package/fesm2022/seniorsistemas-angular-components-image-cropper.mjs.map +1 -1
  761. package/fesm2022/seniorsistemas-angular-components-infinite-scroll.mjs +7 -7
  762. package/fesm2022/seniorsistemas-angular-components-info-sign.mjs +10 -10
  763. package/fesm2022/seniorsistemas-angular-components-info-sign.mjs.map +1 -1
  764. package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs +28 -28
  765. package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs.map +1 -1
  766. package/fesm2022/seniorsistemas-angular-components-interactive-content.mjs +8 -3
  767. package/fesm2022/seniorsistemas-angular-components-interactive-content.mjs.map +1 -1
  768. package/fesm2022/seniorsistemas-angular-components-kanban.mjs +19 -19
  769. package/fesm2022/seniorsistemas-angular-components-label-value.mjs +7 -7
  770. package/fesm2022/seniorsistemas-angular-components-loading-state.mjs +16 -16
  771. package/fesm2022/seniorsistemas-angular-components-locale.mjs +34 -34
  772. package/fesm2022/seniorsistemas-angular-components-localized-number-input.mjs +7 -7
  773. package/fesm2022/seniorsistemas-angular-components-mask.mjs +7 -7
  774. package/fesm2022/seniorsistemas-angular-components-mouse-events.mjs +10 -10
  775. package/fesm2022/seniorsistemas-angular-components-navigation-button.mjs +8 -8
  776. package/fesm2022/seniorsistemas-angular-components-navigation-button.mjs.map +1 -1
  777. package/fesm2022/seniorsistemas-angular-components-number-input.mjs +7 -7
  778. package/fesm2022/seniorsistemas-angular-components-numeric.mjs +10 -10
  779. package/fesm2022/seniorsistemas-angular-components-object-card.mjs +13 -13
  780. package/fesm2022/seniorsistemas-angular-components-object-card.mjs.map +1 -1
  781. package/fesm2022/seniorsistemas-angular-components-paginator.mjs +3 -3
  782. package/fesm2022/seniorsistemas-angular-components-paginator.mjs.map +1 -1
  783. package/fesm2022/seniorsistemas-angular-components-panel.mjs +7 -7
  784. package/fesm2022/seniorsistemas-angular-components-password-strength.mjs +10 -10
  785. package/fesm2022/seniorsistemas-angular-components-picklist.mjs +7 -7
  786. package/fesm2022/seniorsistemas-angular-components-product-header.mjs +7 -7
  787. package/fesm2022/seniorsistemas-angular-components-profile-picture-picker.mjs +7 -7
  788. package/fesm2022/seniorsistemas-angular-components-progressbar.mjs +13 -13
  789. package/fesm2022/seniorsistemas-angular-components-radio-button.mjs +182 -0
  790. package/fesm2022/seniorsistemas-angular-components-radio-button.mjs.map +1 -0
  791. package/fesm2022/seniorsistemas-angular-components-rating-scale.mjs +7 -7
  792. package/fesm2022/seniorsistemas-angular-components-select-button.mjs +10 -10
  793. package/fesm2022/seniorsistemas-angular-components-select.mjs +8 -8
  794. package/fesm2022/seniorsistemas-angular-components-select.mjs.map +1 -1
  795. package/fesm2022/seniorsistemas-angular-components-shared.mjs +7 -7
  796. package/fesm2022/seniorsistemas-angular-components-shared.mjs.map +1 -1
  797. package/fesm2022/seniorsistemas-angular-components-sidebar.mjs +42 -23
  798. package/fesm2022/seniorsistemas-angular-components-sidebar.mjs.map +1 -1
  799. package/fesm2022/seniorsistemas-angular-components-slide-panel.mjs +10 -10
  800. package/fesm2022/seniorsistemas-angular-components-slider.mjs +8 -8
  801. package/fesm2022/seniorsistemas-angular-components-slider.mjs.map +1 -1
  802. package/fesm2022/seniorsistemas-angular-components-speech-recognition.mjs +13 -13
  803. package/fesm2022/seniorsistemas-angular-components-split-button.mjs +7 -7
  804. package/fesm2022/seniorsistemas-angular-components-star-rating.mjs +4 -4
  805. package/fesm2022/seniorsistemas-angular-components-star-rating.mjs.map +1 -1
  806. package/fesm2022/seniorsistemas-angular-components-stats-card.mjs +7 -7
  807. package/fesm2022/seniorsistemas-angular-components-stats-card.mjs.map +1 -1
  808. package/fesm2022/seniorsistemas-angular-components-steps.mjs +7 -7
  809. package/fesm2022/seniorsistemas-angular-components-steps.mjs.map +1 -1
  810. package/fesm2022/seniorsistemas-angular-components-structure.mjs +14 -24
  811. package/fesm2022/seniorsistemas-angular-components-structure.mjs.map +1 -1
  812. package/fesm2022/seniorsistemas-angular-components-switch.mjs +7 -7
  813. package/fesm2022/seniorsistemas-angular-components-table-header.mjs +7 -7
  814. package/fesm2022/seniorsistemas-angular-components-table.mjs +16 -16
  815. package/fesm2022/seniorsistemas-angular-components-table.mjs.map +1 -1
  816. package/fesm2022/seniorsistemas-angular-components-tabs.mjs +91 -0
  817. package/fesm2022/seniorsistemas-angular-components-tabs.mjs.map +1 -0
  818. package/fesm2022/seniorsistemas-angular-components-template.mjs +12 -15
  819. package/fesm2022/seniorsistemas-angular-components-template.mjs.map +1 -1
  820. package/fesm2022/seniorsistemas-angular-components-text-area-ia.mjs +32 -25
  821. package/fesm2022/seniorsistemas-angular-components-text-area-ia.mjs.map +1 -1
  822. package/fesm2022/seniorsistemas-angular-components-text-area.mjs +7 -7
  823. package/fesm2022/seniorsistemas-angular-components-thumbnail.mjs +10 -10
  824. package/fesm2022/seniorsistemas-angular-components-thumbnails.mjs +16 -16
  825. package/fesm2022/seniorsistemas-angular-components-tiered-menu.mjs +54 -92
  826. package/fesm2022/seniorsistemas-angular-components-tiered-menu.mjs.map +1 -1
  827. package/fesm2022/seniorsistemas-angular-components-tile.mjs +7 -7
  828. package/fesm2022/seniorsistemas-angular-components-tile.mjs.map +1 -1
  829. package/fesm2022/seniorsistemas-angular-components-timeline.mjs +40 -40
  830. package/fesm2022/seniorsistemas-angular-components-timeline.mjs.map +1 -1
  831. package/fesm2022/seniorsistemas-angular-components-toast.mjs +10 -10
  832. package/fesm2022/seniorsistemas-angular-components-token-list.mjs +7 -7
  833. package/fesm2022/seniorsistemas-angular-components-tooltip.mjs +24 -14
  834. package/fesm2022/seniorsistemas-angular-components-tooltip.mjs.map +1 -1
  835. package/fesm2022/seniorsistemas-angular-components-utils.mjs +13 -4
  836. package/fesm2022/seniorsistemas-angular-components-utils.mjs.map +1 -1
  837. package/fesm2022/seniorsistemas-angular-components-workspace-switch.mjs +7 -7
  838. package/fesm2022/seniorsistemas-angular-components.mjs +1 -0
  839. package/fesm2022/seniorsistemas-angular-components.mjs.map +1 -1
  840. package/fieldset/lib/fieldset/fieldset.component.d.ts +7 -5
  841. package/fieldset/lib/fieldset/fieldset.module.d.ts +1 -2
  842. package/image-cropper/lib/image-cropper/image-cropper.component.d.ts +2 -0
  843. package/image-cropper/lib/image-cropper/image-cropper.module.d.ts +6 -5
  844. package/index.d.ts +5 -0
  845. package/interactive-content/lib/interactive-content/interactive-content.directive.d.ts +2 -1
  846. package/lib/locale/fallback.d.ts +1 -0
  847. package/package.json +25 -87
  848. package/public-api.d.ts +1 -0
  849. package/radio-button/index.d.ts +5 -0
  850. package/radio-button/lib/radio-button/radio-button.component.d.ts +31 -0
  851. package/radio-button/lib/radio-button-group/models/radio-button-group.models.d.ts +5 -0
  852. package/radio-button/lib/radio-button-group/radio-button-group.component.d.ts +25 -0
  853. package/radio-button/lib/services/radio-button-registry.service.d.ts +12 -0
  854. package/radio-button/public-api.d.ts +3 -0
  855. package/select/index.d.ts +5 -0
  856. package/select/lib/select/components/select-option/select-option.component.d.ts +14 -0
  857. package/select/lib/select/select.component.d.ts +275 -0
  858. package/select/public-api.d.ts +1 -0
  859. package/sidebar/lib/sidebar/sidebar.component.d.ts +7 -6
  860. package/src/lib/styles/tailwind.scss +4 -0
  861. package/structure/lib/structure/header.component.d.ts +0 -2
  862. package/tabs/index.d.ts +5 -0
  863. package/tabs/lib/tab-item/tab-item.component.d.ts +18 -0
  864. package/tabs/lib/tabs/tabs.component.d.ts +16 -0
  865. package/tabs/public-api.d.ts +2 -0
  866. package/tailwind.css +475 -371
  867. package/template/lib/template/template.directive.d.ts +2 -3
  868. package/template/lib/template/template.module.d.ts +3 -3
  869. package/text-area-ia/lib/text-area-ia/text-area-ia.module.d.ts +7 -6
  870. package/tooltip/lib/tooltip/tooltip.directive.d.ts +4 -2
  871. package/tooltip/lib/tooltip/tooltip.module.d.ts +3 -3
  872. package/utils/lib/utils/utils.d.ts +2 -0
  873. package/accordion/package.json +0 -3
  874. package/alert/package.json +0 -3
  875. package/badge/package.json +0 -3
  876. package/bignumber-input/package.json +0 -3
  877. package/breadcrumb/package.json +0 -3
  878. package/button/package.json +0 -3
  879. package/calendar-mask/package.json +0 -3
  880. package/card/package.json +0 -3
  881. package/chat/package.json +0 -3
  882. package/checkbox/package.json +0 -3
  883. package/checkbox-list/package.json +0 -3
  884. package/chips/package.json +0 -3
  885. package/code-editor/package.json +0 -3
  886. package/collapse-link/package.json +0 -3
  887. package/common/package.json +0 -3
  888. package/control-errors/package.json +0 -3
  889. package/country-phone-picker/package.json +0 -3
  890. package/currency/package.json +0 -3
  891. package/custom-fields/package.json +0 -3
  892. package/dynamic-form/package.json +0 -3
  893. package/editable-overlay/package.json +0 -3
  894. package/empty-state/package.json +0 -3
  895. package/fieldset/package.json +0 -3
  896. package/file-upload/package.json +0 -3
  897. package/gantt/package.json +0 -3
  898. package/global-search/package.json +0 -3
  899. package/grid-menu/package.json +0 -3
  900. package/help-popover/package.json +0 -3
  901. package/ia-insight/package.json +0 -3
  902. package/image-cropper/package.json +0 -3
  903. package/infinite-scroll/package.json +0 -3
  904. package/info-sign/package.json +0 -3
  905. package/inline-edit/package.json +0 -3
  906. package/interactive-content/package.json +0 -3
  907. package/kanban/package.json +0 -3
  908. package/label-value/package.json +0 -3
  909. package/loading-state/package.json +0 -3
  910. package/locale/package.json +0 -3
  911. package/localized-number-input/package.json +0 -3
  912. package/mask/package.json +0 -3
  913. package/mouse-events/package.json +0 -3
  914. package/navigation-button/package.json +0 -3
  915. package/number-input/package.json +0 -3
  916. package/numeric/package.json +0 -3
  917. package/object-card/package.json +0 -3
  918. package/paginator/package.json +0 -3
  919. package/panel/package.json +0 -3
  920. package/password-strength/package.json +0 -3
  921. package/picklist/package.json +0 -3
  922. package/product-header/package.json +0 -3
  923. package/profile-picture-picker/package.json +0 -3
  924. package/progressbar/package.json +0 -3
  925. package/rating-scale/package.json +0 -3
  926. package/select-button/package.json +0 -3
  927. package/shared/package.json +0 -3
  928. package/sidebar/package.json +0 -3
  929. package/slide-panel/package.json +0 -3
  930. package/slider/package.json +0 -3
  931. package/speech-recognition/package.json +0 -3
  932. package/split-button/package.json +0 -3
  933. package/star-rating/package.json +0 -3
  934. package/stats-card/package.json +0 -3
  935. package/steps/package.json +0 -3
  936. package/structure/package.json +0 -3
  937. package/switch/package.json +0 -3
  938. package/table/package.json +0 -3
  939. package/table-header/package.json +0 -3
  940. package/template/package.json +0 -3
  941. package/text-area/package.json +0 -3
  942. package/text-area-ia/package.json +0 -3
  943. package/thumbnail/package.json +0 -3
  944. package/thumbnails/package.json +0 -3
  945. package/tiered-menu/lib/tiered-menu/utils.d.ts +0 -2
  946. package/tiered-menu/package.json +0 -3
  947. package/tile/package.json +0 -3
  948. package/timeline/package.json +0 -3
  949. package/toast/package.json +0 -3
  950. package/token-list/package.json +0 -3
  951. package/tooltip/package.json +0 -3
  952. package/utils/package.json +0 -3
  953. package/workspace-switch/package.json +0 -3
@@ -0,0 +1,138 @@
1
+ import { Component, computed, effect, input, model, output, signal } from '@angular/core';
2
+ import { FormsModule } from '@angular/forms';
3
+ import { InteractiveContentDirective } from '@seniorsistemas/angular-components/interactive-content';
4
+ import { SelectComponent } from '@seniorsistemas/angular-components/select';
5
+ import { TranslateModule } from '@ngx-translate/core';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "@angular/forms";
8
+ import * as i2 from "@ngx-translate/core";
9
+ export class PaginatorComponent {
10
+ totalRecords = input.required();
11
+ rows = model(10);
12
+ rowsPerPageOptions = input([10, 20, 50, 100, 200]);
13
+ pageChange = output();
14
+ currentPageEffect = effect(() => {
15
+ const page = this.currentPage() - 1;
16
+ this.pageChange.emit({
17
+ page,
18
+ pageCount: this.totalPages(),
19
+ rows: this.rows(),
20
+ first: this.rows() * page,
21
+ });
22
+ });
23
+ MAX_PAGE_BUTTONS = 5;
24
+ hasPreviousPage = computed(() => {
25
+ const previousPage = this.currentPage() - 1;
26
+ return previousPage >= 1;
27
+ });
28
+ hasNextPage = computed(() => {
29
+ const nextPage = this.currentPage() + 1;
30
+ return nextPage <= this.totalPages();
31
+ });
32
+ currentPage = signal(1);
33
+ buttons = computed(() => {
34
+ const navigationPageButtons = [];
35
+ const maxPageButtons = this.MAX_PAGE_BUTTONS;
36
+ const currentPage = this.currentPage();
37
+ const middle = Math.floor(maxPageButtons / 2);
38
+ const _startPage = currentPage - middle;
39
+ let startPage = _startPage < 1 ? 1 : _startPage;
40
+ const _endPage = startPage + maxPageButtons - 1;
41
+ const endPageIsMoreThanTotalPages = _endPage > this.totalPages();
42
+ if (endPageIsMoreThanTotalPages) {
43
+ const diff = _endPage - this.totalPages();
44
+ const canModifyStartPage = startPage - diff >= 1;
45
+ if (canModifyStartPage) {
46
+ startPage = startPage - diff;
47
+ }
48
+ }
49
+ const endPage = endPageIsMoreThanTotalPages ? this.totalPages() : _endPage;
50
+ for (let i = startPage; i <= endPage; i++) {
51
+ navigationPageButtons.push({
52
+ clicked: (page) => this.goToPage(page.pageIndex),
53
+ pageIndex: i,
54
+ });
55
+ }
56
+ return [
57
+ this.FIRST_PAGE_BUTTON,
58
+ this.PREVIOUS_PAGE_BUTTON,
59
+ ...navigationPageButtons,
60
+ this.NEXT_PAGE_BUTTON,
61
+ this.LAST_PAGE_BUTTON,
62
+ ];
63
+ });
64
+ FIRST_PAGE_BUTTON = {
65
+ clicked: this.goFirstPage.bind(this),
66
+ icon: 'fas fa-step-backward',
67
+ validate: computed(() => {
68
+ return !this.hasPreviousPage();
69
+ }),
70
+ };
71
+ PREVIOUS_PAGE_BUTTON = {
72
+ clicked: this.goPreviousPage.bind(this),
73
+ icon: 'fas fa-caret-left',
74
+ validate: computed(() => {
75
+ return !this.hasPreviousPage();
76
+ }),
77
+ };
78
+ LAST_PAGE_BUTTON = {
79
+ clicked: this.goLastPage.bind(this),
80
+ icon: 'fas fa-step-forward',
81
+ validate: computed(() => {
82
+ return !this.hasNextPage();
83
+ }),
84
+ };
85
+ NEXT_PAGE_BUTTON = {
86
+ clicked: this.goNextPage.bind(this),
87
+ icon: 'fas fa-caret-right',
88
+ validate: computed(() => {
89
+ return !this.hasNextPage();
90
+ }),
91
+ };
92
+ totalPages = computed(() => {
93
+ const totalRecords = this.totalRecords();
94
+ const _pages = totalRecords / this.rows();
95
+ const pages = Math.ceil(_pages);
96
+ const isExactPages = _pages === pages;
97
+ return isExactPages ? pages : pages + 1;
98
+ });
99
+ ngOnDestroy() {
100
+ this.currentPageEffect.destroy();
101
+ }
102
+ rowsPerPageChange() {
103
+ if (this.currentPage() !== 1) {
104
+ this.goToPage(1);
105
+ }
106
+ }
107
+ activatedButton(button) {
108
+ button.clicked(button);
109
+ }
110
+ goFirstPage() {
111
+ this.goToPage(1);
112
+ }
113
+ goNextPage() {
114
+ if (!this.hasNextPage()) {
115
+ return;
116
+ }
117
+ this.currentPage.update((value) => value + 1);
118
+ }
119
+ goPreviousPage() {
120
+ if (!this.hasPreviousPage()) {
121
+ return;
122
+ }
123
+ this.currentPage.update((value) => value - 1);
124
+ }
125
+ goLastPage() {
126
+ this.goToPage(this.totalPages());
127
+ }
128
+ goToPage(pageIndex) {
129
+ this.currentPage.set(pageIndex);
130
+ }
131
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PaginatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
132
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: PaginatorComponent, isStandalone: true, selector: "s-paginator", inputs: { totalRecords: { classPropertyName: "totalRecords", publicName: "totalRecords", isSignal: true, isRequired: true, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, rowsPerPageOptions: { classPropertyName: "rowsPerPageOptions", publicName: "rowsPerPageOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { rows: "rowsChange", pageChange: "pageChange" }, ngImport: i0, template: "<div class=\"flex justify-between\">\n <section class=\"flex items-center gap-2\">\n <div\n class=\"inline-block h-8 divide-x divide-grayscale-30 overflow-hidden rounded-md border border-grayscale-30\"\n >\n @for (btn of buttons(); track $index) {\n @let active = btn.pageIndex === currentPage();\n <button\n [class.bg-criticality-blue]=\"active\"\n [class.text-grayscale-0]=\"active\"\n [class.text-criticality-blue]=\"!active\"\n (sInteractiveContent)=\"activatedButton(btn)\"\n [disabled]=\"btn.disabled || (btn.validate && btn.validate()) || false\"\n class=\"group h-8 w-8 hover:bg-grayscale-20 hover:text-grayscale-100 disabled:hover:bg-[transparent] disabled:hover:text-criticality-blue\"\n >\n <div class=\"group-disabled:opacity-50\">\n @let page = btn.pageIndex;\n @let icon = btn.icon;\n @if (page !== undefined) {\n {{ page }}\n }\n @if (icon) {\n <i [class]=\"icon\"></i>\n }\n </div>\n </button>\n }\n </div>\n <s-select\n [options]=\"rowsPerPageOptions()\"\n [(ngModel)]=\"rows\"\n (ngModelChange)=\"rowsPerPageChange()\"\n ></s-select>\n </section>\n <section class=\"flex items-center gap-2\">\n @let text =\n totalRecords() === 0\n ? 'platform.angular_components.total_record'\n : 'platform.angular_components.total_records';\n <p class=\"text-[14px] text-[#212533]\">\n {{ text | translate: { count: totalRecords() } }}\n </p>\n <ng-content></ng-content>\n </section>\n</div>\n", dependencies: [{ kind: "directive", type: InteractiveContentDirective, selector: "[sInteractiveContent]", inputs: ["focusable", "disabled", "stopPropagation"], outputs: ["sInteractiveContent"] }, { kind: "component", type: SelectComponent, selector: "s-select", inputs: ["placeholder", "multiple", "options", "optionLabel", "optionValue", "showClear", "filter", "checkmark", "filterBy", "group", "virtualScroll", "virtualScrollItemSize", "emptyMessage", "useRawValue", "dataKey", "disabled"], outputs: ["disabledChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i2.TranslatePipe, name: "translate" }] });
133
+ }
134
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PaginatorComponent, decorators: [{
135
+ type: Component,
136
+ args: [{ selector: 's-paginator', standalone: true, imports: [InteractiveContentDirective, SelectComponent, FormsModule, TranslateModule], template: "<div class=\"flex justify-between\">\n <section class=\"flex items-center gap-2\">\n <div\n class=\"inline-block h-8 divide-x divide-grayscale-30 overflow-hidden rounded-md border border-grayscale-30\"\n >\n @for (btn of buttons(); track $index) {\n @let active = btn.pageIndex === currentPage();\n <button\n [class.bg-criticality-blue]=\"active\"\n [class.text-grayscale-0]=\"active\"\n [class.text-criticality-blue]=\"!active\"\n (sInteractiveContent)=\"activatedButton(btn)\"\n [disabled]=\"btn.disabled || (btn.validate && btn.validate()) || false\"\n class=\"group h-8 w-8 hover:bg-grayscale-20 hover:text-grayscale-100 disabled:hover:bg-[transparent] disabled:hover:text-criticality-blue\"\n >\n <div class=\"group-disabled:opacity-50\">\n @let page = btn.pageIndex;\n @let icon = btn.icon;\n @if (page !== undefined) {\n {{ page }}\n }\n @if (icon) {\n <i [class]=\"icon\"></i>\n }\n </div>\n </button>\n }\n </div>\n <s-select\n [options]=\"rowsPerPageOptions()\"\n [(ngModel)]=\"rows\"\n (ngModelChange)=\"rowsPerPageChange()\"\n ></s-select>\n </section>\n <section class=\"flex items-center gap-2\">\n @let text =\n totalRecords() === 0\n ? 'platform.angular_components.total_record'\n : 'platform.angular_components.total_records';\n <p class=\"text-[14px] text-[#212533]\">\n {{ text | translate: { count: totalRecords() } }}\n </p>\n <ng-content></ng-content>\n </section>\n</div>\n" }]
137
+ }] });
138
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdG9yLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9wYWdpbmF0b3Ivc3JjL2xpYi9wYWdpbmF0b3IvcGFnaW5hdG9yLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9wYWdpbmF0b3Ivc3JjL2xpYi9wYWdpbmF0b3IvcGFnaW5hdG9yLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsUUFBUSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFhLE1BQU0sRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDckcsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRTdDLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLHdEQUF3RCxDQUFDO0FBQ3JHLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwyQ0FBMkMsQ0FBQztBQUM1RSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7QUFTdEQsTUFBTSxPQUFPLGtCQUFrQjtJQUMzQixZQUFZLEdBQUcsS0FBSyxDQUFDLFFBQVEsRUFBVSxDQUFDO0lBQ3hDLElBQUksR0FBRyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7SUFDakIsa0JBQWtCLEdBQUcsS0FBSyxDQUFXLENBQUMsRUFBRSxFQUFFLEVBQUUsRUFBRSxFQUFFLEVBQUUsR0FBRyxFQUFFLEdBQUcsQ0FBQyxDQUFDLENBQUM7SUFDN0QsVUFBVSxHQUFHLE1BQU0sRUFBYyxDQUFDO0lBRWpCLGlCQUFpQixHQUFHLE1BQU0sQ0FBQyxHQUFHLEVBQUU7UUFDN0MsTUFBTSxJQUFJLEdBQUcsSUFBSSxDQUFDLFdBQVcsRUFBRSxHQUFHLENBQUMsQ0FBQztRQUNwQyxJQUFJ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UUFDOUIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxHQUFHLENBQUMsU0FBUyxDQUFDLENBQUM7SUFDcEMsQ0FBQzt3R0E3SVEsa0JBQWtCOzRGQUFsQixrQkFBa0IsOGlCQ2QvQiwyOERBNkNBLDRDRGxDYywyQkFBMkIsMEpBQUUsZUFBZSx3VEFBRSxXQUFXLDhWQUFFLGVBQWU7OzRGQUczRSxrQkFBa0I7a0JBTjlCLFNBQVM7K0JBQ0ksYUFBYSxjQUNYLElBQUksV0FDUCxDQUFDLDJCQUEyQixFQUFFLGVBQWUsRUFBRSxXQUFXLEVBQUUsZUFBZSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBjb21wdXRlZCwgZWZmZWN0LCBpbnB1dCwgbW9kZWwsIE9uRGVzdHJveSwgb3V0cHV0LCBzaWduYWwgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5pbXBvcnQgeyBJbnRlcmFjdGl2ZUNvbnRlbnREaXJlY3RpdmUgfSBmcm9tICdAc2VuaW9yc2lzdGVtYXMvYW5ndWxhci1jb21wb25lbnRzL2ludGVyYWN0aXZlLWNvbnRlbnQnO1xuaW1wb3J0IHsgU2VsZWN0Q29tcG9uZW50IH0gZnJvbSAnQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy9zZWxlY3QnO1xuaW1wb3J0IHsgVHJhbnNsYXRlTW9kdWxlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5cbmltcG9ydCB7IFBhZ2VDaGFuZ2UsIFBhZ2luYXRvckludGVybmFsQnV0dG9uIH0gZnJvbSAnLi4vbW9kZWxzL3BhZ2luYXRvci5tb2RlbHMnO1xuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdzLXBhZ2luYXRvcicsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBpbXBvcnRzOiBbSW50ZXJhY3RpdmVDb250ZW50RGlyZWN0aXZlLCBTZWxlY3RDb21wb25lbnQsIEZvcm1zTW9kdWxlLCBUcmFuc2xhdGVNb2R1bGVdLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9wYWdpbmF0b3IuY29tcG9uZW50Lmh0bWwnLFxufSlcbmV4cG9ydCBjbGFzcyBQYWdpbmF0b3JDb21wb25lbnQgaW1wbGVtZW50cyBPbkRlc3Ryb3kge1xuICAgIHRvdGFsUmVjb3JkcyA9IGlucHV0LnJlcXVpcmVkPG51bWJlcj4oKTtcbiAgICByb3dzID0gbW9kZWwoMTApO1xuICAgIHJvd3NQZXJQYWdlT3B0aW9ucyA9IGlucHV0PG51bWJlcltdPihbMTAsIDIwLCA1MCwgMTAwLCAyMDBdKTtcbiAgICBwYWdlQ2hhbmdlID0gb3V0cHV0PFBhZ2VDaGFuZ2U+KCk7XG5cbiAgICBwcml2YXRlIHJlYWRvbmx5IGN1cnJlbnRQYWdlRWZmZWN0ID0gZWZmZWN0KCgpID0+IHtcbiAgICAgICAgY29uc3QgcGFnZSA9IHRoaXMuY3VycmVudFBhZ2UoKSAtIDE7XG4gICAgICAgIHRoaXMucGFnZUNoYW5nZS5lbWl0KHtcbiAgICAgICAgICAgIHBhZ2UsXG4gICAgICAgICAgICBwYWdlQ291bnQ6IHRoaXMudG90YWxQYWdlcygpLFxuICAgICAgICAgICAgcm93czogdGhpcy5yb3dzKCksXG4gICAgICAgICAgICBmaXJzdDogdGhpcy5yb3dzKCkgKiBwYWdlLFxuICAgICAgICB9KTtcbiAgICB9KTtcbiAgICBwcml2YXRlIHJlYWRvbmx5IE1BWF9QQUdFX0JVVFRPTlMgPSA1O1xuICAgIHByaXZhdGUgcmVhZG9ubHkgaGFzUHJldmlvdXNQYWdlID0gY29tcHV0ZWQoKCkgPT4ge1xuICAgICAgICBjb25zdCBwcmV2aW91c1BhZ2UgPSB0aGlzLmN1cnJlbnRQYWdlKCkgLSAxO1xuICAgICAgICByZXR1cm4gcHJldmlvdXNQYWdlID49IDE7XG4gICAgfSk7XG5cbiAgICBwcml2YXRlIHJlYWRvbmx5IGhhc05leHRQYWdlID0gY29tcHV0ZWQoKCkgPT4ge1xuICAgICAgICBjb25zdCBuZXh0UGFnZSA9IHRoaXMuY3VycmVudFBhZ2UoKSArIDE7XG4gICAgICAgIHJldHVybiBuZXh0UGFnZSA8PSB0aGlzLnRvdGFsUGFnZXMoKTtcbiAgICB9KTtcblxuICAgIHByb3RlY3RlZCByZWFkb25seSBjdXJyZW50UGFnZSA9IHNpZ25hbCgxKTtcblxuICAgIHByb3RlY3RlZCBidXR0b25zID0gY29tcHV0ZWQoKCkgPT4ge1xuICAgICAgICBjb25zdCBuYXZpZ2F0aW9uUGFnZUJ1dHRvbnM6IFBhZ2luYXRvckludGVybmFsQnV0dG9uW10gPSBbXTtcbiAgICAgICAgY29uc3QgbWF4UGFnZUJ1dHRvbnMgPSB0aGlzLk1BWF9QQUdFX0JVVFRPTlM7XG4gICAgICAgIGNvbnN0IGN1cnJlbnRQYWdlID0gdGhpcy5jdXJyZW50UGFnZSgpO1xuICAgICAgICBjb25zdCBtaWRkbGUgPSBNYXRoLmZsb29yKG1heFBhZ2VCdXR0b25zIC8gMik7XG4gICAgICAgIGNvbnN0IF9zdGFydFBhZ2UgPSBjdXJyZW50UGFnZSAtIG1pZGRsZTtcbiAgICAgICAgbGV0IHN0YXJ0UGFnZSA9IF9zdGFydFBhZ2UgPCAxID8gMSA6IF9zdGFydFBhZ2U7XG4gICAgICAgIGNvbnN0IF9lbmRQYWdlID0gc3RhcnRQYWdlICsgbWF4UGFnZUJ1dHRvbnMgLSAxO1xuICAgICAgICBjb25zdCBlbmRQYWdlSXNNb3JlVGhhblRvdGFsUGFnZXMgPSBfZW5kUGFnZSA+IHRoaXMudG90YWxQYWdlcygpO1xuXG4gICAgICAgIGlmIChlbmRQYWdlSXNNb3JlVGhhblRvdGFsUGFnZXMpIHtcbiAgICAgICAgICAgIGNvbnN0IGRpZmYgPSBfZW5kUGFnZSAtIHRoaXMudG90YWxQYWdlcygpO1xuICAgICAgICAgICAgY29uc3QgY2FuTW9kaWZ5U3RhcnRQYWdlID0gc3RhcnRQYWdlIC0gZGlmZiA+PSAxO1xuICAgICAgICAgICAgaWYgKGNhbk1vZGlmeVN0YXJ0UGFnZSkge1xuICAgICAgICAgICAgICAgIHN0YXJ0UGFnZSA9IHN0YXJ0UGFnZSAtIGRpZmY7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgICAgY29uc3QgZW5kUGFnZSA9IGVuZFBhZ2VJc01vcmVUaGFuVG90YWxQYWdlcyA/IHRoaXMudG90YWxQYWdlcygpIDogX2VuZFBhZ2U7XG5cbiAgICAgICAgZm9yIChsZXQgaSA9IHN0YXJ0UGFnZTsgaSA8PSBlbmRQYWdlOyBpKyspIHtcbiAgICAgICAgICAgIG5hdmlnYXRpb25QYWdlQnV0dG9ucy5wdXNoKHtcbiAgICAgICAgICAgICAgICBjbGlja2VkOiAocGFnZSkgPT4gdGhpcy5nb1RvUGFnZShwYWdlLnBhZ2VJbmRleCBhcyBudW1iZXIpLFxuICAgICAgICAgICAgICAgIHBhZ2VJbmRleDogaSxcbiAgICAgICAgICAgIH0pO1xuICAgICAgICB9XG5cbiAgICAgICAgcmV0dXJuIFtcbiAgICAgICAgICAgIHRoaXMuRklSU1RfUEFHRV9CVVRUT04sXG4gICAgICAgICAgICB0aGlzLlBSRVZJT1VTX1BBR0VfQlVUVE9OLFxuICAgICAgICAgICAgLi4ubmF2aWdhdGlvblBhZ2VCdXR0b25zLFxuICAgICAgICAgICAgdGhpcy5ORVhUX1BBR0VfQlVUVE9OLFxuICAgICAgICAgICAgdGhpcy5MQVNUX1BBR0VfQlVUVE9OLFxuICAgICAgICBdO1xuICAgIH0pO1xuXG4gICAgcHJpdmF0ZSByZWFkb25seSBGSVJTVF9QQUdFX0JVVFRPTjogUGFnaW5hdG9ySW50ZXJuYWxCdXR0b24gPSB7XG4gICAgICAgIGNsaWNrZWQ6IHRoaXMuZ29GaXJzdFBhZ2UuYmluZCh0aGlzKSxcbiAgICAgICAgaWNvbjogJ2ZhcyBmYS1zdGVwLWJhY2t3YXJkJyxcbiAgICAgICAgdmFsaWRhdGU6IGNvbXB1dGVkKCgpID0+IHtcbiAgICAgICAgICAgIHJldHVybiAhdGhpcy5oYXNQcmV2aW91c1BhZ2UoKTtcbiAgICAgICAgfSksXG4gICAgfTtcblxuICAgIHByaXZhdGUgcmVhZG9ubHkgUFJFVklPVVNfUEFHRV9CVVRUT046IFBhZ2luYXRvckludGVybmFsQnV0dG9uID0ge1xuICAgICAgICBjbGlja2VkOiB0aGlzLmdvUHJldmlvdXNQYWdlLmJpbmQodGhpcyksXG4gICAgICAgIGljb246ICdmYXMgZmEtY2FyZXQtbGVmdCcsXG4gICAgICAgIHZhbGlkYXRlOiBjb21wdXRlZCgoKSA9PiB7XG4gICAgICAgICAgICByZXR1cm4gIXRoaXMuaGFzUHJldmlvdXNQYWdlKCk7XG4gICAgICAgIH0pLFxuICAgIH07XG5cbiAgICBwcml2YXRlIHJlYWRvbmx5IExBU1RfUEFHRV9CVVRUT046IFBhZ2luYXRvckludGVybmFsQnV0dG9uID0ge1xuICAgICAgICBjbGlja2VkOiB0aGlzLmdvTGFzdFBhZ2UuYmluZCh0aGlzKSxcbiAgICAgICAgaWNvbjogJ2ZhcyBmYS1zdGVwLWZvcndhcmQnLFxuICAgICAgICB2YWxpZGF0ZTogY29tcHV0ZWQoKCkgPT4ge1xuICAgICAgICAgICAgcmV0dXJuICF0aGlzLmhhc05leHRQYWdlKCk7XG4gICAgICAgIH0pLFxuICAgIH07XG5cbiAgICBwcml2YXRlIHJlYWRvbmx5IE5FWFRfUEFHRV9CVVRUT046IFBhZ2luYXRvckludGVybmFsQnV0dG9uID0ge1xuICAgICAgICBjbGlja2VkOiB0aGlzLmdvTmV4dFBhZ2UuYmluZCh0aGlzKSxcbiAgICAgICAgaWNvbjogJ2ZhcyBmYS1jYXJldC1yaWdodCcsXG4gICAgICAgIHZhbGlkYXRlOiBjb21wdXRlZCgoKSA9PiB7XG4gICAgICAgICAgICByZXR1cm4gIXRoaXMuaGFzTmV4dFBhZ2UoKTtcbiAgICAgICAgfSksXG4gICAgfTtcblxuICAgIHByaXZhdGUgdG90YWxQYWdlcyA9IGNvbXB1dGVkKCgpID0+IHtcbiAgICAgICAgY29uc3QgdG90YWxSZWNvcmRzID0gdGhpcy50b3RhbFJlY29yZHMoKTtcbiAgICAgICAgY29uc3QgX3BhZ2VzID0gdG90YWxSZWNvcmRzIC8gdGhpcy5yb3dzKCk7XG4gICAgICAgIGNvbnN0IHBhZ2VzID0gTWF0aC5jZWlsKF9wYWdlcyk7XG4gICAgICAgIGNvbnN0IGlzRXhhY3RQYWdlcyA9IF9wYWdlcyA9PT0gcGFnZXM7XG4gICAgICAgIHJldHVybiBpc0V4YWN0UGFnZXMgPyBwYWdlcyA6IHBhZ2VzICsgMTtcbiAgICB9KTtcblxuICAgIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5jdXJyZW50UGFnZUVmZmVjdC5kZXN0cm95KCk7XG4gICAgfVxuXG4gICAgcHJvdGVjdGVkIHJvd3NQZXJQYWdlQ2hhbmdlKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5jdXJyZW50UGFnZSgpICE9PSAxKSB7XG4gICAgICAgICAgICB0aGlzLmdvVG9QYWdlKDEpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHJvdGVjdGVkIGFjdGl2YXRlZEJ1dHRvbihidXR0b246IFBhZ2luYXRvckludGVybmFsQnV0dG9uKTogdm9pZCB7XG4gICAgICAgIGJ1dHRvbi5jbGlja2VkKGJ1dHRvbik7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBnb0ZpcnN0UGFnZSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5nb1RvUGFnZSgxKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGdvTmV4dFBhZ2UoKTogdm9pZCB7XG4gICAgICAgIGlmICghdGhpcy5oYXNOZXh0UGFnZSgpKSB7XG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cbiAgICAgICAgdGhpcy5jdXJyZW50UGFnZS51cGRhdGUoKHZhbHVlKSA9PiB2YWx1ZSArIDEpO1xuICAgIH1cblxuICAgIHByaXZhdGUgZ29QcmV2aW91c1BhZ2UoKTogdm9pZCB7XG4gICAgICAgIGlmICghdGhpcy5oYXNQcmV2aW91c1BhZ2UoKSkge1xuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB9XG4gICAgICAgIHRoaXMuY3VycmVudFBhZ2UudXBkYXRlKCh2YWx1ZSkgPT4gdmFsdWUgLSAxKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGdvTGFzdFBhZ2UoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuZ29Ub1BhZ2UodGhpcy50b3RhbFBhZ2VzKCkpO1xuICAgIH1cblxuICAgIHByaXZhdGUgZ29Ub1BhZ2UocGFnZUluZGV4OiBudW1iZXIpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5jdXJyZW50UGFnZS5zZXQocGFnZUluZGV4KTtcbiAgICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiZmxleCBqdXN0aWZ5LWJldHdlZW5cIj5cbiAgICA8c2VjdGlvbiBjbGFzcz1cImZsZXggaXRlbXMtY2VudGVyIGdhcC0yXCI+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICAgIGNsYXNzPVwiaW5saW5lLWJsb2NrIGgtOCBkaXZpZGUteCBkaXZpZGUtZ3JheXNjYWxlLTMwIG92ZXJmbG93LWhpZGRlbiByb3VuZGVkLW1kIGJvcmRlciBib3JkZXItZ3JheXNjYWxlLTMwXCJcbiAgICAgICAgPlxuICAgICAgICAgICAgQGZvciAoYnRuIG9mIGJ1dHRvbnMoKTsgdHJhY2sgJGluZGV4KSB7XG4gICAgICAgICAgICAgICAgQGxldCBhY3RpdmUgPSBidG4ucGFnZUluZGV4ID09PSBjdXJyZW50UGFnZSgpO1xuICAgICAgICAgICAgICAgIDxidXR0b25cbiAgICAgICAgICAgICAgICAgICAgW2NsYXNzLmJnLWNyaXRpY2FsaXR5LWJsdWVdPVwiYWN0aXZlXCJcbiAgICAgICAgICAgICAgICAgICAgW2NsYXNzLnRleHQtZ3JheXNjYWxlLTBdPVwiYWN0aXZlXCJcbiAgICAgICAgICAgICAgICAgICAgW2NsYXNzLnRleHQtY3JpdGljYWxpdHktYmx1ZV09XCIhYWN0aXZlXCJcbiAgICAgICAgICAgICAgICAgICAgKHNJbnRlcmFjdGl2ZUNvbnRlbnQpPVwiYWN0aXZhdGVkQnV0dG9uKGJ0bilcIlxuICAgICAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwiYnRuLmRpc2FibGVkIHx8IChidG4udmFsaWRhdGUgJiYgYnRuLnZhbGlkYXRlKCkpIHx8IGZhbHNlXCJcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJncm91cCBoLTggdy04IGhvdmVyOmJnLWdyYXlzY2FsZS0yMCBob3Zlcjp0ZXh0LWdyYXlzY2FsZS0xMDAgZGlzYWJsZWQ6aG92ZXI6YmctW3RyYW5zcGFyZW50XSBkaXNhYmxlZDpob3Zlcjp0ZXh0LWNyaXRpY2FsaXR5LWJsdWVcIlxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImdyb3VwLWRpc2FibGVkOm9wYWNpdHktNTBcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgIEBsZXQgcGFnZSA9IGJ0bi5wYWdlSW5kZXg7XG4gICAgICAgICAgICAgICAgICAgICAgICBAbGV0IGljb24gPSBidG4uaWNvbjtcbiAgICAgICAgICAgICAgICAgICAgICAgIEBpZiAocGFnZSAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAge3sgcGFnZSB9fVxuICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgQGlmIChpY29uKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGkgW2NsYXNzXT1cImljb25cIj48L2k+XG4gICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICAgICAgfVxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPHMtc2VsZWN0XG4gICAgICAgICAgICBbb3B0aW9uc109XCJyb3dzUGVyUGFnZU9wdGlvbnMoKVwiXG4gICAgICAgICAgICBbKG5nTW9kZWwpXT1cInJvd3NcIlxuICAgICAgICAgICAgKG5nTW9kZWxDaGFuZ2UpPVwicm93c1BlclBhZ2VDaGFuZ2UoKVwiXG4gICAgICAgID48L3Mtc2VsZWN0PlxuICAgIDwvc2VjdGlvbj5cbiAgICA8c2VjdGlvbiBjbGFzcz1cImZsZXggaXRlbXMtY2VudGVyIGdhcC0yXCI+XG4gICAgICAgIEBsZXQgdGV4dCA9XG4gICAgICAgICAgICB0b3RhbFJlY29yZHMoKSA9PT0gMFxuICAgICAgICAgICAgICAgID8gJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy50b3RhbF9yZWNvcmQnXG4gICAgICAgICAgICAgICAgOiAncGxhdGZvcm0uYW5ndWxhcl9jb21wb25lbnRzLnRvdGFsX3JlY29yZHMnO1xuICAgICAgICA8cCBjbGFzcz1cInRleHQtWzE0cHhdIHRleHQtWyMyMTI1MzNdXCI+XG4gICAgICAgICAgICB7eyB0ZXh0IHwgdHJhbnNsYXRlOiB7IGNvdW50OiB0b3RhbFJlY29yZHMoKSB9IH19XG4gICAgICAgIDwvcD5cbiAgICAgICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuICAgIDwvc2VjdGlvbj5cbjwvZGl2PlxuIl19
@@ -0,0 +1,2 @@
1
+ export { PaginatorComponent } from "./lib/paginator/paginator.component";
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9wYWdpbmF0b3Ivc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0scUNBQXFDLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgeyBQYWdpbmF0b3JDb21wb25lbnQgfSBmcm9tIFwiLi9saWIvcGFnaW5hdG9yL3BhZ2luYXRvci5jb21wb25lbnRcIlxuZXhwb3J0IHsgdHlwZSBQYWdlQ2hhbmdlIH0gZnJvbSBcIi4vbGliL21vZGVscy9wYWdpbmF0b3IubW9kZWxzXCJcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VuaW9yc2lzdGVtYXMtYW5ndWxhci1jb21wb25lbnRzLXBhZ2luYXRvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9wYWdpbmF0b3Ivc3JjL3NlbmlvcnNpc3RlbWFzLWFuZ3VsYXItY29tcG9uZW50cy1wYWdpbmF0b3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,91 @@
1
+ import { animate, style, transition, trigger } from "@angular/animations";
2
+ import { Component, ContentChildren, EventEmitter, Input, Output } from "@angular/core";
3
+ import { EnumSeverity } from "@seniorsistemas/angular-components/shared";
4
+ import { TemplateDirective } from "@seniorsistemas/angular-components/template";
5
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "@angular/common";
7
+ import * as i2 from "@seniorsistemas/angular-components/shared";
8
+ export class PanelComponent {
9
+ header;
10
+ toggleable = false;
11
+ collapsed = false;
12
+ severity = 'default';
13
+ borderButtonOptions;
14
+ class = '';
15
+ collapsedChange = new EventEmitter();
16
+ templates = null;
17
+ headerTemplate = null;
18
+ bodyTemplate = null;
19
+ footerTemplate = null;
20
+ EnumSeverity = EnumSeverity;
21
+ ngAfterContentInit() {
22
+ this._getTemplates();
23
+ }
24
+ toggleCollapsed() {
25
+ this.collapsed = !this.collapsed;
26
+ this.collapsedChange.emit(this.collapsed);
27
+ }
28
+ _getCustomTemplate(type) {
29
+ return this.templates?.find((template) => template.type === type)?.template;
30
+ }
31
+ _getHeaderTemplate() {
32
+ return this._getCustomTemplate("header") ?? null;
33
+ }
34
+ _getBodyTemplate() {
35
+ return this._getCustomTemplate("body") ?? null;
36
+ }
37
+ _getFooterTemplate() {
38
+ return this._getCustomTemplate("footer") ?? null;
39
+ }
40
+ _getTemplates() {
41
+ this.headerTemplate = this._getHeaderTemplate();
42
+ this.bodyTemplate = this._getBodyTemplate();
43
+ this.footerTemplate = this._getFooterTemplate();
44
+ }
45
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
46
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: PanelComponent, selector: "s-panel", inputs: { header: "header", toggleable: "toggleable", collapsed: "collapsed", severity: "severity", borderButtonOptions: "borderButtonOptions", class: "class" }, outputs: { collapsedChange: "collapsedChange" }, queries: [{ propertyName: "templates", predicate: TemplateDirective }], ngImport: i0, template: "<div\n [class]=\"class\"\n [ngClass]=\"{\n 'panel': true,\n 'panel--success': severity === EnumSeverity.Success,\n 'panel--info': severity === EnumSeverity.Info,\n 'panel--warn': severity === EnumSeverity.Warn,\n 'panel--error': severity === EnumSeverity.Error,\n 'panel--collapsed': collapsed\n }\">\n @if (borderButtonOptions?.visible ? borderButtonOptions?.visible(severity) : false) {\n <s-border-button\n [severity]=\"severity\"\n [options]=\"borderButtonOptions\"\n class=\"border-button\"\n [@BorderButtonAnimation]\n >\n </s-border-button>\n }\n\n <div class=\"header\">\n <div class=\"header-content\">\n @if (headerTemplate) {\n <ng-container *ngTemplateOutlet=\"headerTemplate\"></ng-container>\n } @else {\n <span>{{ header }}</span>\n }\n </div>\n\n @if (toggleable) {\n <button\n class=\"collapse-button fas\"\n [ngClass]=\"{\n 'fa-plus': collapsed,\n 'fa-minus': !collapsed,\n }\"\n (click)=\"toggleCollapsed()\"\n ></button>\n }\n </div>\n\n @if (!toggleable || !collapsed) {\n <div class=\"panel-content\">\n <div class=\"body\">\n <ng-content></ng-content>\n <ng-container *ngTemplateOutlet=\"bodyTemplate\"></ng-container>\n </div>\n\n @if (footerTemplate) {\n <div class=\"footer\">\n <ng-container *ngTemplateOutlet=\"footerTemplate\"></ng-container>\n </div>\n }\n </div>\n }\n</div>\n", styles: [".panel{background-color:#fff;border:1px solid #dedce5;padding:20px;position:relative;transition:border-color .5s ease}.panel .border-button{position:absolute;right:15px;top:-12px;z-index:10}.panel .header{border-bottom:1px solid #dedce5;display:flex;justify-content:space-between;padding-bottom:12px;text-transform:uppercase}.panel .header-content{flex-grow:1}.panel .header .collapse-button{background-color:transparent;border:none;color:#212533;cursor:pointer;height:24px;width:24px}.panel .panel-content .body{padding:20px 0}.panel .panel-content .footer{border-top:1px solid #dedce5;padding-top:12px}.panel--success{border-color:#0c9348}.panel--info{border-color:#428bca}.panel--warn{border-color:#f8931f}.panel--error{border-color:#c13018}.panel--collapsed .header{border:none;padding:0}\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.BorderButtonComponent, selector: "s-border-button", inputs: ["severity", "options"] }], animations: [
47
+ trigger("BorderButtonAnimation", [
48
+ transition(":enter", [
49
+ style({ transform: "scaleY(0)", opacity: 0 }),
50
+ animate("300ms ease", style({ transform: "scaleY(1)", opacity: 1 })),
51
+ ]),
52
+ transition(":leave", [
53
+ style({ transform: "scaleY(1)", opacity: 1 }),
54
+ animate("300ms ease", style({ transform: "scaleY(0)", opacity: 0 })),
55
+ ]),
56
+ ]),
57
+ ] });
58
+ }
59
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PanelComponent, decorators: [{
60
+ type: Component,
61
+ args: [{ selector: "s-panel", animations: [
62
+ trigger("BorderButtonAnimation", [
63
+ transition(":enter", [
64
+ style({ transform: "scaleY(0)", opacity: 0 }),
65
+ animate("300ms ease", style({ transform: "scaleY(1)", opacity: 1 })),
66
+ ]),
67
+ transition(":leave", [
68
+ style({ transform: "scaleY(1)", opacity: 1 }),
69
+ animate("300ms ease", style({ transform: "scaleY(0)", opacity: 0 })),
70
+ ]),
71
+ ]),
72
+ ], template: "<div\n [class]=\"class\"\n [ngClass]=\"{\n 'panel': true,\n 'panel--success': severity === EnumSeverity.Success,\n 'panel--info': severity === EnumSeverity.Info,\n 'panel--warn': severity === EnumSeverity.Warn,\n 'panel--error': severity === EnumSeverity.Error,\n 'panel--collapsed': collapsed\n }\">\n @if (borderButtonOptions?.visible ? borderButtonOptions?.visible(severity) : false) {\n <s-border-button\n [severity]=\"severity\"\n [options]=\"borderButtonOptions\"\n class=\"border-button\"\n [@BorderButtonAnimation]\n >\n </s-border-button>\n }\n\n <div class=\"header\">\n <div class=\"header-content\">\n @if (headerTemplate) {\n <ng-container *ngTemplateOutlet=\"headerTemplate\"></ng-container>\n } @else {\n <span>{{ header }}</span>\n }\n </div>\n\n @if (toggleable) {\n <button\n class=\"collapse-button fas\"\n [ngClass]=\"{\n 'fa-plus': collapsed,\n 'fa-minus': !collapsed,\n }\"\n (click)=\"toggleCollapsed()\"\n ></button>\n }\n </div>\n\n @if (!toggleable || !collapsed) {\n <div class=\"panel-content\">\n <div class=\"body\">\n <ng-content></ng-content>\n <ng-container *ngTemplateOutlet=\"bodyTemplate\"></ng-container>\n </div>\n\n @if (footerTemplate) {\n <div class=\"footer\">\n <ng-container *ngTemplateOutlet=\"footerTemplate\"></ng-container>\n </div>\n }\n </div>\n }\n</div>\n", styles: [".panel{background-color:#fff;border:1px solid #dedce5;padding:20px;position:relative;transition:border-color .5s ease}.panel .border-button{position:absolute;right:15px;top:-12px;z-index:10}.panel .header{border-bottom:1px solid #dedce5;display:flex;justify-content:space-between;padding-bottom:12px;text-transform:uppercase}.panel .header-content{flex-grow:1}.panel .header .collapse-button{background-color:transparent;border:none;color:#212533;cursor:pointer;height:24px;width:24px}.panel .panel-content .body{padding:20px 0}.panel .panel-content .footer{border-top:1px solid #dedce5;padding-top:12px}.panel--success{border-color:#0c9348}.panel--info{border-color:#428bca}.panel--warn{border-color:#f8931f}.panel--error{border-color:#c13018}.panel--collapsed .header{border:none;padding:0}\n"] }]
73
+ }], propDecorators: { header: [{
74
+ type: Input
75
+ }], toggleable: [{
76
+ type: Input
77
+ }], collapsed: [{
78
+ type: Input
79
+ }], severity: [{
80
+ type: Input
81
+ }], borderButtonOptions: [{
82
+ type: Input
83
+ }], class: [{
84
+ type: Input
85
+ }], collapsedChange: [{
86
+ type: Output
87
+ }], templates: [{
88
+ type: ContentChildren,
89
+ args: [TemplateDirective]
90
+ }] } });
91
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFuZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL3BhbmVsL3NyYy9saWIvcGFuZWwvcGFuZWwuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL3BhbmVsL3NyYy9saWIvcGFuZWwvcGFuZWwuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLE9BQU8sRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLE9BQU8sRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQzFFLE9BQU8sRUFBb0IsU0FBUyxFQUFFLGVBQWUsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBMEIsTUFBTSxlQUFlLENBQUM7QUFDbEksT0FBTyxFQUF1QixZQUFZLEVBQWMsTUFBTSwyQ0FBMkMsQ0FBQztBQUMxRyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQzs7OztBQW1CaEYsTUFBTSxPQUFPLGNBQWM7SUFFaEIsTUFBTSxDQUFVO0lBR2hCLFVBQVUsR0FBRyxLQUFLLENBQUM7SUFHbkIsU0FBUyxHQUFHLEtBQUssQ0FBQztJQUdsQixRQUFRLEdBQWUsU0FBUyxDQUFDO0lBR2pDLG1CQUFtQixDQUF1QjtJQUcxQyxLQUFLLEdBQVcsRUFBRSxDQUFDO0lBR25CLGVBQWUsR0FBRyxJQUFJLFlBQVksRUFBVyxDQUFDO0lBRzlDLFNBQVMsR0FBd0MsSUFBSSxDQUFDO0lBRXRELGNBQWMsR0FBZ0MsSUFBSSxDQUFDO0lBRW5ELFlBQVksR0FBZ0MsSUFBSSxDQUFDO0lBRWpELGNBQWMsR0FBZ0MsSUFBSSxDQUFDO0lBRWpELFlBQVksR0FBRyxZQUFZLENBQUM7SUFFOUIsa0JBQWtCO1FBQ3JCLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUN6QixDQUFDO0lBRU0s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O3NCQURYLEtBQUs7Z0JBSUMsZUFBZTtzQkFEckIsTUFBTTtnQkFJQSxTQUFTO3NCQURmLGVBQWU7dUJBQUMsaUJBQWlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYW5pbWF0ZSwgc3R5bGUsIHRyYW5zaXRpb24sIHRyaWdnZXIgfSBmcm9tIFwiQGFuZ3VsYXIvYW5pbWF0aW9uc1wiO1xuaW1wb3J0IHsgQWZ0ZXJDb250ZW50SW5pdCwgQ29tcG9uZW50LCBDb250ZW50Q2hpbGRyZW4sIEV2ZW50RW1pdHRlciwgSW5wdXQsIE91dHB1dCwgUXVlcnlMaXN0LCBUZW1wbGF0ZVJlZiB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XG5pbXBvcnQgeyBCb3JkZXJCdXR0b25PcHRpb25zLCBFbnVtU2V2ZXJpdHksIFNldmVyaXRpZXMgfSBmcm9tIFwiQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy9zaGFyZWRcIjtcbmltcG9ydCB7IFRlbXBsYXRlRGlyZWN0aXZlIH0gZnJvbSBcIkBzZW5pb3JzaXN0ZW1hcy9hbmd1bGFyLWNvbXBvbmVudHMvdGVtcGxhdGVcIjtcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6IFwicy1wYW5lbFwiLFxuICAgIHRlbXBsYXRlVXJsOiBcIi4vcGFuZWwuY29tcG9uZW50Lmh0bWxcIixcbiAgICBzdHlsZVVybHM6IFtcIi4vcGFuZWwuY29tcG9uZW50LnNjc3NcIl0sXG4gICAgYW5pbWF0aW9uczogW1xuICAgICAgICB0cmlnZ2VyKFwiQm9yZGVyQnV0dG9uQW5pbWF0aW9uXCIsIFtcbiAgICAgICAgICAgIHRyYW5zaXRpb24oXCI6ZW50ZXJcIiwgW1xuICAgICAgICAgICAgICAgIHN0eWxlKHsgdHJhbnNmb3JtOiBcInNjYWxlWSgwKVwiLCBvcGFjaXR5OiAwIH0pLFxuICAgICAgICAgICAgICAgIGFuaW1hdGUoXCIzMDBtcyBlYXNlXCIsIHN0eWxlKHsgdHJhbnNmb3JtOiBcInNjYWxlWSgxKVwiLCBvcGFjaXR5OiAxIH0pKSxcbiAgICAgICAgICAgIF0pLFxuICAgICAgICAgICAgdHJhbnNpdGlvbihcIjpsZWF2ZVwiLCBbXG4gICAgICAgICAgICAgICAgc3R5bGUoeyB0cmFuc2Zvcm06IFwic2NhbGVZKDEpXCIsIG9wYWNpdHk6IDEgfSksXG4gICAgICAgICAgICAgICAgYW5pbWF0ZShcIjMwMG1zIGVhc2VcIiwgc3R5bGUoeyB0cmFuc2Zvcm06IFwic2NhbGVZKDApXCIsIG9wYWNpdHk6IDAgfSkpLFxuICAgICAgICAgICAgXSksXG4gICAgICAgIF0pLFxuICAgIF0sXG59KVxuZXhwb3J0IGNsYXNzIFBhbmVsQ29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJDb250ZW50SW5pdCB7XG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgaGVhZGVyPzogc3RyaW5nO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgdG9nZ2xlYWJsZSA9IGZhbHNlO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgY29sbGFwc2VkID0gZmFsc2U7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBzZXZlcml0eTogU2V2ZXJpdGllcyA9ICdkZWZhdWx0JztcblxuICAgIEBJbnB1dCgpXG4gICAgcHVibGljIGJvcmRlckJ1dHRvbk9wdGlvbnM/OiBCb3JkZXJCdXR0b25PcHRpb25zO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgY2xhc3M6IHN0cmluZyA9ICcnO1xuXG4gICAgQE91dHB1dCgpXG4gICAgcHVibGljIGNvbGxhcHNlZENoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcblxuICAgIEBDb250ZW50Q2hpbGRyZW4oVGVtcGxhdGVEaXJlY3RpdmUpXG4gICAgcHVibGljIHRlbXBsYXRlczogUXVlcnlMaXN0PFRlbXBsYXRlRGlyZWN0aXZlPiB8IG51bGwgPSBudWxsO1xuXG4gICAgcHVibGljIGhlYWRlclRlbXBsYXRlOiBUZW1wbGF0ZVJlZjx1bmtub3duPiB8IG51bGwgPSBudWxsO1xuXG4gICAgcHVibGljIGJvZHlUZW1wbGF0ZTogVGVtcGxhdGVSZWY8dW5rbm93bj4gfCBudWxsID0gbnVsbDtcblxuICAgIHB1YmxpYyBmb290ZXJUZW1wbGF0ZTogVGVtcGxhdGVSZWY8dW5rbm93bj4gfCBudWxsID0gbnVsbDtcblxuICAgIHJlYWRvbmx5IEVudW1TZXZlcml0eSA9IEVudW1TZXZlcml0eTtcblxuICAgIHB1YmxpYyBuZ0FmdGVyQ29udGVudEluaXQoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuX2dldFRlbXBsYXRlcygpO1xuICAgIH1cblxuICAgIHB1YmxpYyB0b2dnbGVDb2xsYXBzZWQoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuY29sbGFwc2VkID0gIXRoaXMuY29sbGFwc2VkO1xuICAgICAgICB0aGlzLmNvbGxhcHNlZENoYW5nZS5lbWl0KHRoaXMuY29sbGFwc2VkKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIF9nZXRDdXN0b21UZW1wbGF0ZSh0eXBlOiBzdHJpbmcpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMudGVtcGxhdGVzPy5maW5kKCh0ZW1wbGF0ZTogVGVtcGxhdGVEaXJlY3RpdmUpID0+IHRlbXBsYXRlLnR5cGUgPT09IHR5cGUpPy50ZW1wbGF0ZTtcbiAgICB9XG5cbiAgICBwcml2YXRlIF9nZXRIZWFkZXJUZW1wbGF0ZSgpOiBUZW1wbGF0ZVJlZjx1bmtub3duPiB8IG51bGwge1xuICAgICAgICByZXR1cm4gdGhpcy5fZ2V0Q3VzdG9tVGVtcGxhdGUoXCJoZWFkZXJcIikgPz8gbnVsbDtcbiAgICB9XG5cbiAgICBwcml2YXRlIF9nZXRCb2R5VGVtcGxhdGUoKTogVGVtcGxhdGVSZWY8dW5rbm93bj4gfCBudWxsIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2dldEN1c3RvbVRlbXBsYXRlKFwiYm9keVwiKSA/PyBudWxsO1xuICAgIH1cblxuICAgIHByaXZhdGUgX2dldEZvb3RlclRlbXBsYXRlKCk6IFRlbXBsYXRlUmVmPHVua25vd24+IHwgbnVsbCB7XG4gICAgICAgIHJldHVybiB0aGlzLl9nZXRDdXN0b21UZW1wbGF0ZShcImZvb3RlclwiKSA/PyBudWxsO1xuICAgIH1cblxuICAgIHByaXZhdGUgX2dldFRlbXBsYXRlcygpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5oZWFkZXJUZW1wbGF0ZSA9IHRoaXMuX2dldEhlYWRlclRlbXBsYXRlKCk7XG4gICAgICAgIHRoaXMuYm9keVRlbXBsYXRlID0gdGhpcy5fZ2V0Qm9keVRlbXBsYXRlKCk7XG4gICAgICAgIHRoaXMuZm9vdGVyVGVtcGxhdGUgPSB0aGlzLl9nZXRGb290ZXJUZW1wbGF0ZSgpO1xuICAgIH1cbn1cbiIsIjxkaXZcbiAgICBbY2xhc3NdPVwiY2xhc3NcIlxuICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgJ3BhbmVsJzogdHJ1ZSxcbiAgICAgICAgJ3BhbmVsLS1zdWNjZXNzJzogc2V2ZXJpdHkgPT09IEVudW1TZXZlcml0eS5TdWNjZXNzLFxuICAgICAgICAncGFuZWwtLWluZm8nOiBzZXZlcml0eSA9PT0gRW51bVNldmVyaXR5LkluZm8sXG4gICAgICAgICdwYW5lbC0td2Fybic6IHNldmVyaXR5ID09PSBFbnVtU2V2ZXJpdHkuV2FybixcbiAgICAgICAgJ3BhbmVsLS1lcnJvcic6IHNldmVyaXR5ID09PSBFbnVtU2V2ZXJpdHkuRXJyb3IsXG4gICAgICAgICdwYW5lbC0tY29sbGFwc2VkJzogY29sbGFwc2VkXG4gICAgfVwiPlxuICAgIEBpZiAoYm9yZGVyQnV0dG9uT3B0aW9ucz8udmlzaWJsZSA/IGJvcmRlckJ1dHRvbk9wdGlvbnM/LnZpc2libGUoc2V2ZXJpdHkpIDogZmFsc2UpIHtcbiAgICAgICAgPHMtYm9yZGVyLWJ1dHRvblxuICAgICAgICAgICAgW3NldmVyaXR5XT1cInNldmVyaXR5XCJcbiAgICAgICAgICAgIFtvcHRpb25zXT1cImJvcmRlckJ1dHRvbk9wdGlvbnNcIlxuICAgICAgICAgICAgY2xhc3M9XCJib3JkZXItYnV0dG9uXCJcbiAgICAgICAgICAgIFtAQm9yZGVyQnV0dG9uQW5pbWF0aW9uXVxuICAgICAgICA+XG4gICAgICAgIDwvcy1ib3JkZXItYnV0dG9uPlxuICAgIH1cblxuICAgIDxkaXYgY2xhc3M9XCJoZWFkZXJcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImhlYWRlci1jb250ZW50XCI+XG4gICAgICAgICAgICBAaWYgKGhlYWRlclRlbXBsYXRlKSB7XG4gICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImhlYWRlclRlbXBsYXRlXCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICB9IEBlbHNlIHtcbiAgICAgICAgICAgICAgICA8c3Bhbj57eyBoZWFkZXIgfX08L3NwYW4+XG4gICAgICAgICAgICB9XG4gICAgICAgIDwvZGl2PlxuXG4gICAgICAgIEBpZiAodG9nZ2xlYWJsZSkge1xuICAgICAgICAgICAgPGJ1dHRvblxuICAgICAgICAgICAgICAgIGNsYXNzPVwiY29sbGFwc2UtYnV0dG9uIGZhc1wiXG4gICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgICAgICAgICAnZmEtcGx1cyc6IGNvbGxhcHNlZCxcbiAgICAgICAgICAgICAgICAgICAgJ2ZhLW1pbnVzJzogIWNvbGxhcHNlZCxcbiAgICAgICAgICAgICAgICB9XCJcbiAgICAgICAgICAgICAgICAoY2xpY2spPVwidG9nZ2xlQ29sbGFwc2VkKClcIlxuICAgICAgICAgICAgPjwvYnV0dG9uPlxuICAgICAgICB9XG4gICAgPC9kaXY+XG5cbiAgICBAaWYgKCF0b2dnbGVhYmxlIHx8ICFjb2xsYXBzZWQpIHtcbiAgICAgICAgPGRpdiBjbGFzcz1cInBhbmVsLWNvbnRlbnRcIj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJib2R5XCI+XG4gICAgICAgICAgICAgICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJib2R5VGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgIDwvZGl2PlxuXG4gICAgICAgICAgICBAaWYgKGZvb3RlclRlbXBsYXRlKSB7XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZvb3RlclwiPlxuICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiZm9vdGVyVGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIH1cbiAgICAgICAgPC9kaXY+XG4gICAgfVxuPC9kaXY+XG4iXX0=
@@ -0,0 +1,20 @@
1
+ import { NgModule } from "@angular/core";
2
+ import { CommonModule } from "@angular/common";
3
+ import { PanelComponent } from "./panel.component";
4
+ import { TemplateModule } from "@seniorsistemas/angular-components/template";
5
+ import { BorderButtonModule } from "@seniorsistemas/angular-components/shared";
6
+ import * as i0 from "@angular/core";
7
+ export class PanelModule {
8
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PanelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: PanelModule, declarations: [PanelComponent], imports: [CommonModule, BorderButtonModule], exports: [PanelComponent, TemplateModule] });
10
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PanelModule, imports: [CommonModule, BorderButtonModule, TemplateModule] });
11
+ }
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PanelModule, decorators: [{
13
+ type: NgModule,
14
+ args: [{
15
+ imports: [CommonModule, BorderButtonModule],
16
+ declarations: [PanelComponent],
17
+ exports: [PanelComponent, TemplateModule],
18
+ }]
19
+ }] });
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFuZWwubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL3BhbmVsL3NyYy9saWIvcGFuZWwvcGFuZWwubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRS9DLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFDN0UsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sMkNBQTJDLENBQUM7O0FBTy9FLE1BQU0sT0FBTyxXQUFXO3dHQUFYLFdBQVc7eUdBQVgsV0FBVyxpQkFITCxjQUFjLGFBRG5CLFlBQVksRUFBRSxrQkFBa0IsYUFFaEMsY0FBYyxFQUFFLGNBQWM7eUdBRS9CLFdBQVcsWUFKVixZQUFZLEVBQUUsa0JBQWtCLEVBRWhCLGNBQWM7OzRGQUUvQixXQUFXO2tCQUx2QixRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxrQkFBa0IsQ0FBQztvQkFDM0MsWUFBWSxFQUFFLENBQUMsY0FBYyxDQUFDO29CQUM5QixPQUFPLEVBQUUsQ0FBQyxjQUFjLEVBQUUsY0FBYyxDQUFDO2lCQUM1QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gXCJAYW5ndWxhci9jb21tb25cIjtcblxuaW1wb3J0IHsgUGFuZWxDb21wb25lbnQgfSBmcm9tIFwiLi9wYW5lbC5jb21wb25lbnRcIjtcbmltcG9ydCB7IFRlbXBsYXRlTW9kdWxlIH0gZnJvbSBcIkBzZW5pb3JzaXN0ZW1hcy9hbmd1bGFyLWNvbXBvbmVudHMvdGVtcGxhdGVcIjtcbmltcG9ydCB7IEJvcmRlckJ1dHRvbk1vZHVsZSB9IGZyb20gXCJAc2VuaW9yc2lzdGVtYXMvYW5ndWxhci1jb21wb25lbnRzL3NoYXJlZFwiO1xuXG5ATmdNb2R1bGUoe1xuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEJvcmRlckJ1dHRvbk1vZHVsZV0sXG4gICAgZGVjbGFyYXRpb25zOiBbUGFuZWxDb21wb25lbnRdLFxuICAgIGV4cG9ydHM6IFtQYW5lbENvbXBvbmVudCwgVGVtcGxhdGVNb2R1bGVdLFxufSlcbmV4cG9ydCBjbGFzcyBQYW5lbE1vZHVsZSB7IH1cbiJdfQ==
@@ -0,0 +1,3 @@
1
+ export { PanelComponent } from "./lib/panel/panel.component";
2
+ export { PanelModule } from "./lib/panel/panel.module";
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9wYW5lbC9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDN0QsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLDBCQUEwQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgUGFuZWxDb21wb25lbnQgfSBmcm9tIFwiLi9saWIvcGFuZWwvcGFuZWwuY29tcG9uZW50XCI7XG5leHBvcnQgeyBQYW5lbE1vZHVsZSB9IGZyb20gXCIuL2xpYi9wYW5lbC9wYW5lbC5tb2R1bGVcIjtcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VuaW9yc2lzdGVtYXMtYW5ndWxhci1jb21wb25lbnRzLXBhbmVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL3BhbmVsL3NyYy9zZW5pb3JzaXN0ZW1hcy1hbmd1bGFyLWNvbXBvbmVudHMtcGFuZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,92 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@ngx-translate/core";
4
+ import * as i2 from "@angular/common";
5
+ export class PasswordStrengthComponent {
6
+ translate;
7
+ weakTitle;
8
+ mediumTitle;
9
+ strongTitle;
10
+ description;
11
+ title;
12
+ position = 'right';
13
+ left = 0;
14
+ top = 0;
15
+ visible = false;
16
+ constructor(translate) {
17
+ this.translate = translate;
18
+ }
19
+ ngOnInit() {
20
+ this.title = this.weakTitle;
21
+ }
22
+ setPasswordStrengthPosition() {
23
+ const passwordStrength = document.querySelector('.password-strength');
24
+ if (!passwordStrength) {
25
+ return;
26
+ }
27
+ switch (this.position) {
28
+ case 'top':
29
+ passwordStrength.classList.add('password-strength--top');
30
+ break;
31
+ case 'right':
32
+ passwordStrength.classList.add('password-strength--right');
33
+ break;
34
+ case 'left':
35
+ passwordStrength.classList.add('password-strength--left');
36
+ break;
37
+ }
38
+ }
39
+ updateIndicators(passwordStrength) {
40
+ const strengthIndicator1 = document.querySelector('#strength-indicator-1');
41
+ const strengthIndicator2 = document.querySelector('#strength-indicator-2');
42
+ const strengthIndicator3 = document.querySelector('#strength-indicator-3');
43
+ const onIndicators = [];
44
+ const indicators = [strengthIndicator1, strengthIndicator2, strengthIndicator3];
45
+ let strengthClass;
46
+ switch (passwordStrength) {
47
+ case 'veryWeak':
48
+ this.title = this.weakTitle ?? this.translate.instant('platform.angular_components.weak');
49
+ break;
50
+ case 'weak':
51
+ this.title = this.weakTitle ?? this.translate.instant('platform.angular_components.weak');
52
+ strengthClass = 'strength-indicator--weak';
53
+ onIndicators.push(strengthIndicator1);
54
+ break;
55
+ case 'medium':
56
+ this.title = this.mediumTitle ?? this.translate.instant('platform.angular_components.medium');
57
+ strengthClass = 'strength-indicator--medium';
58
+ onIndicators.push(strengthIndicator1);
59
+ onIndicators.push(strengthIndicator2);
60
+ break;
61
+ case 'strong':
62
+ this.title = this.strongTitle ?? this.translate.instant('platform.angular_components.strong');
63
+ strengthClass = 'strength-indicator--strong';
64
+ onIndicators.push(strengthIndicator1);
65
+ onIndicators.push(strengthIndicator2);
66
+ onIndicators.push(strengthIndicator3);
67
+ break;
68
+ }
69
+ indicators.forEach((indicator) => {
70
+ indicator?.classList.remove('strength-indicator--weak', 'strength-indicator--medium', 'strength-indicator--strong');
71
+ });
72
+ onIndicators.forEach((indicator) => {
73
+ indicator?.classList.add(strengthClass);
74
+ });
75
+ }
76
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PasswordStrengthComponent, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Component });
77
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: PasswordStrengthComponent, selector: "ng-component", inputs: { weakTitle: "weakTitle", mediumTitle: "mediumTitle", strongTitle: "strongTitle", description: "description" }, ngImport: i0, template: "<div\n class=\"password-strength\"\n [ngStyle]=\"{\n left: left + 'px',\n top: top + 'px',\n }\"\n [ngClass]=\"['password-strength--' + position]\"\n>\n <span class=\"password-strength-title\">{{ title }}</span>\n <div class=\"strength-indicators\">\n <span\n class=\"strength-indicator\"\n id=\"strength-indicator-1\"\n ></span>\n <span\n class=\"strength-indicator\"\n id=\"strength-indicator-2\"\n ></span>\n <span\n class=\"strength-indicator\"\n id=\"strength-indicator-3\"\n ></span>\n </div>\n <span class=\"content\">{{ description }}</span>\n</div>\n", styles: [".password-strength{position:fixed;transform:translate(-50%);background-color:#fff;border-radius:2px;box-shadow:0 0 5px 1px #ccc;padding:10px;width:232px;z-index:99999}.password-strength:after{content:\"\";position:absolute}.password-strength-title{font-family:Open Sans,sans-serif;font-size:14px;font-weight:700;line-height:150%}.password-strength .strength-indicators{display:flex;justify-content:space-between;padding:10px 0}.password-strength .strength-indicators .strength-indicator{background-color:#ccc;border-radius:2px;display:inline-block;height:3px;width:64px}.password-strength .strength-indicators .strength-indicator--weak{background-color:#c13018}.password-strength .strength-indicators .strength-indicator--medium{background-color:#fcbf10}.password-strength .strength-indicators .strength-indicator--strong{background-color:#0c9348}.password-strength .content{font-family:Open Sans,sans-serif;font-size:12px;font-weight:400;line-height:150%}.password-strength--top{transform:translate(-50%,-100%)}.password-strength--top:after{top:100%;right:calc(50% - 4px);border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #fff}.password-strength--right{transform:translateY(-50%)}.password-strength--right:after{bottom:calc(50% - 8px);left:-8px;border-top:8px solid transparent;border-right:8px solid #fff;border-bottom:8px solid transparent}.password-strength--left{transform:translate(-100%,-50%)}.password-strength--left:after{bottom:calc(50% - 8px);right:-8px;border-top:8px solid transparent;border-left:8px solid #fff;border-bottom:8px solid transparent}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
78
+ }
79
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PasswordStrengthComponent, decorators: [{
80
+ type: Component,
81
+ args: [{ template: "<div\n class=\"password-strength\"\n [ngStyle]=\"{\n left: left + 'px',\n top: top + 'px',\n }\"\n [ngClass]=\"['password-strength--' + position]\"\n>\n <span class=\"password-strength-title\">{{ title }}</span>\n <div class=\"strength-indicators\">\n <span\n class=\"strength-indicator\"\n id=\"strength-indicator-1\"\n ></span>\n <span\n class=\"strength-indicator\"\n id=\"strength-indicator-2\"\n ></span>\n <span\n class=\"strength-indicator\"\n id=\"strength-indicator-3\"\n ></span>\n </div>\n <span class=\"content\">{{ description }}</span>\n</div>\n", styles: [".password-strength{position:fixed;transform:translate(-50%);background-color:#fff;border-radius:2px;box-shadow:0 0 5px 1px #ccc;padding:10px;width:232px;z-index:99999}.password-strength:after{content:\"\";position:absolute}.password-strength-title{font-family:Open Sans,sans-serif;font-size:14px;font-weight:700;line-height:150%}.password-strength .strength-indicators{display:flex;justify-content:space-between;padding:10px 0}.password-strength .strength-indicators .strength-indicator{background-color:#ccc;border-radius:2px;display:inline-block;height:3px;width:64px}.password-strength .strength-indicators .strength-indicator--weak{background-color:#c13018}.password-strength .strength-indicators .strength-indicator--medium{background-color:#fcbf10}.password-strength .strength-indicators .strength-indicator--strong{background-color:#0c9348}.password-strength .content{font-family:Open Sans,sans-serif;font-size:12px;font-weight:400;line-height:150%}.password-strength--top{transform:translate(-50%,-100%)}.password-strength--top:after{top:100%;right:calc(50% - 4px);border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #fff}.password-strength--right{transform:translateY(-50%)}.password-strength--right:after{bottom:calc(50% - 8px);left:-8px;border-top:8px solid transparent;border-right:8px solid #fff;border-bottom:8px solid transparent}.password-strength--left{transform:translate(-100%,-50%)}.password-strength--left:after{bottom:calc(50% - 8px);right:-8px;border-top:8px solid transparent;border-left:8px solid #fff;border-bottom:8px solid transparent}\n"] }]
82
+ }], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { weakTitle: [{
83
+ type: Input
84
+ }], mediumTitle: [{
85
+ type: Input
86
+ }], strongTitle: [{
87
+ type: Input
88
+ }], description: [{
89
+ type: Input,
90
+ args: [{ required: true }]
91
+ }] } });
92
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFzc3dvcmQtc3RyZW5ndGguY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL3Bhc3N3b3JkLXN0cmVuZ3RoL3NyYy9saWIvcGFzc3dvcmQtc3RyZW5ndGgvcGFzc3dvcmQtc3RyZW5ndGguY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL3Bhc3N3b3JkLXN0cmVuZ3RoL3NyYy9saWIvcGFzc3dvcmQtc3RyZW5ndGgvcGFzc3dvcmQtc3RyZW5ndGguY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7Ozs7QUFXekQsTUFBTSxPQUFPLHlCQUF5QjtJQW1CTDtJQWpCdEIsU0FBUyxDQUFVO0lBR25CLFdBQVcsQ0FBVTtJQUdyQixXQUFXLENBQVU7SUFHckIsV0FBVyxDQUFVO0lBRXJCLEtBQUssQ0FBVTtJQUNmLFFBQVEsR0FBOEIsT0FBTyxDQUFDO0lBQzlDLElBQUksR0FBRyxDQUFDLENBQUM7SUFDVCxHQUFHLEdBQUcsQ0FBQyxDQUFDO0lBQ1IsT0FBTyxHQUFHLEtBQUssQ0FBQztJQUV2QixZQUE2QixTQUEyQjtRQUEzQixjQUFTLEdBQVQsU0FBUyxDQUFrQjtJQUFHLENBQUM7SUFFckQsUUFBUTtRQUNYLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQztJQUNoQyxDQUFDO0lBRU0sMkJBQTJCO1FBQzlCLE1BQU0sZ0JBQWdCLEdBQUcsUUFBUSxDQUFDLGFBQWEsQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO1FBRXRFLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO1lBQ3BCLE9BQU87UUFDWCxDQUFDO1FBRUQsUUFBUSxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7WUFDcEIsS0FBSyxLQUFLO2dCQUNOLGdCQUFnQixDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsd0JBQXdCLENBQUMsQ0FBQztnQkFDekQsTUFBTTtZQUNWLEtBQUssT0FBTztnQkFDUixnQkFBZ0IsQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLDBCQUEwQixDQUFDLENBQUM7Z0JBQzNELE1BQU07WUFDVixLQUFLLE1BQU07Z0JBQ1AsZ0JBQWdCLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyx5QkFBeUIsQ0FBQyxDQUFDO2dCQUMxRCxNQUFNO1FBQ2QsQ0FBQztJQUNMLENBQUM7SUFFTSxnQkFBZ0IsQ0FBQyxnQkFBbUM7UUFDdkQsTUFBTSxrQkFBa0IsR0FBRyxRQUFRLENBQUMsYUFBYSxDQUFDLHVCQUF1QixDQUFDLENBQUM7UUFDM0UsTUFBTSxrQkFBa0IsR0FBRyxRQUFRLENBQUMsYUFBYSxDQUFDLHVCQUF1QixDQUFDLENBQUM7UUFDM0UsTUFBTSxrQkFBa0IsR0FBRyxRQUFRLENBQUMsYUFBYSxDQUFDLHVCQUF1QixDQUFDLENBQUM7UUFFM0UsTUFBTSxZQUFZLEdBQUcsRUFBRSxDQUFDO1FBQ3hCLE1BQU0sVUFBVSxHQUFHLENBQUMsa0JBQWtCLEVBQUUsa0JBQWtCLEVBQUUsa0JBQWtCLENBQUMsQ0FBQztRQUVoRixJQUFJLGFBQXFCLENBQUM7UUFFMUIsUUFBUSxnQkFBZ0IsRUFBRSxDQUFDO1lBQ3ZCLEtBQUssVUFBVTtnQkFDWCxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxTQUFTLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsa0NBQWtDLENBQUMsQ0FBQztnQkFDMUYsTUFBTTtZQUNWLEtBQUssTUFBTTtnQkFDUCxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxTQUFTLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsa0NBQWtDLENBQUMsQ0FBQztnQkFDMUYsYUFBYSxHQUFHLDBCQUEwQixDQUFDO2dCQUMzQyxZQUFZLENBQUMsSUFBSSxDQUFDLGtCQUFrQixDQUFDLENBQUM7Z0JBQ3RDLE1BQU07WUFDVixLQUFLLFFBQVE7Z0JBQ1QsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsV0FBVyxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLG9DQUFvQyxDQUFDLENBQUM7Z0JBQzlGLGFBQWEsR0FBRyw0QkFBNEIsQ0FBQztnQkFDN0MsWUFBWSxDQUFDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO2dCQUN0QyxZQUFZLENBQUMsSUFBSSxDQUFDLGtCQUFrQixDQUFDLENBQUM7Z0JBQ3RDLE1BQU07WUFDVixLQUFLLFFBQVE7Z0JBQ1QsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsV0FBVyxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLG9DQUFvQyxDQUFDLENBQUM7Z0JBQzlGLGFBQWEsR0FBRyw0QkFBNEIsQ0FBQztnQkFDN0MsWUFBWSxDQUFDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO2dCQUN0QyxZQUFZLENBQUMsSUFBSSxDQUFDLGtCQUFrQixDQUFDLENBQUM7Z0JBQ3RDLFlBQVksQ0FBQyxJQUFJLENBQUMsa0JBQWtCLENBQUMsQ0FBQztnQkFDdEMsTUFBTTtRQUNkLENBQUM7UUFFRCxVQUFVLENBQUMsT0FBTyxDQUFDLENBQUMsU0FBUyxFQUFFLEVBQUU7WUFDN0IsU0FBUyxFQUFFLFNBQVMsQ0FBQyxNQUFNLENBQ3ZCLDBCQUEwQixFQUMxQiw0QkFBNEIsRUFDNUIsNEJBQTRCLENBQy9CLENBQUM7UUFDTixDQUFDLENBQUMsQ0FBQztRQUVILFlBQVksQ0FBQyxPQUFPLENBQUMsQ0FBQyxTQUFTLEVBQUUsRUFBRTtZQUMvQixTQUFTLEVBQUUsU0FBUyxDQUFDLEdBQUcsQ0FBQyxhQUFhLENBQUMsQ0FBQztRQUM1QyxDQUFDLENBQUMsQ0FBQztJQUNQLENBQUM7d0dBMUZRLHlCQUF5Qjs0RkFBekIseUJBQXlCLDRLQ1h0Qyxtc0JBeUJBOzs0RkRkYSx5QkFBeUI7a0JBSnJDLFNBQVM7O3FGQU1DLFNBQVM7c0JBRGYsS0FBSztnQkFJQyxXQUFXO3NCQURqQixLQUFLO2dCQUlDLFdBQVc7c0JBRGpCLEtBQUs7Z0JBSUMsV0FBVztzQkFEakIsS0FBSzt1QkFBQyxFQUFFLFFBQVEsRUFBRSxJQUFJLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgVHJhbnNsYXRlU2VydmljZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xuXG5pbXBvcnQgeyBQYXNzd29yZFN0cmVuZ3RoUG9zaXRpb25zIH0gZnJvbSAnLi90eXBlcy9wYXNzd29yZC1wb3NpdGlvbnMnO1xuaW1wb3J0IHsgUGFzc3dvcmRTdHJlbmd0aHMgfSBmcm9tICcuL3R5cGVzL3Bhc3N3b3JkLXN0cmVuZ3Rocyc7XG5cbkBDb21wb25lbnQoe1xuICAgIHRlbXBsYXRlVXJsOiAnLi9wYXNzd29yZC1zdHJlbmd0aC5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vcGFzc3dvcmQtc3RyZW5ndGguY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgUGFzc3dvcmRTdHJlbmd0aENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgd2Vha1RpdGxlPzogc3RyaW5nO1xuXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgbWVkaXVtVGl0bGU/OiBzdHJpbmc7XG5cbiAgICBASW5wdXQoKVxuICAgIHB1YmxpYyBzdHJvbmdUaXRsZT86IHN0cmluZztcblxuICAgIEBJbnB1dCh7IHJlcXVpcmVkOiB0cnVlIH0pXG4gICAgcHVibGljIGRlc2NyaXB0aW9uITogc3RyaW5nO1xuXG4gICAgcHVibGljIHRpdGxlPzogc3RyaW5nO1xuICAgIHB1YmxpYyBwb3NpdGlvbjogUGFzc3dvcmRTdHJlbmd0aFBvc2l0aW9ucyA9ICdyaWdodCc7XG4gICAgcHVibGljIGxlZnQgPSAwO1xuICAgIHB1YmxpYyB0b3AgPSAwO1xuICAgIHB1YmxpYyB2aXNpYmxlID0gZmFsc2U7XG5cbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIHJlYWRvbmx5IHRyYW5zbGF0ZTogVHJhbnNsYXRlU2VydmljZSkge31cblxuICAgIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy50aXRsZSA9IHRoaXMud2Vha1RpdGxlO1xuICAgIH1cblxuICAgIHB1YmxpYyBzZXRQYXNzd29yZFN0cmVuZ3RoUG9zaXRpb24oKSB7XG4gICAgICAgIGNvbnN0IHBhc3N3b3JkU3RyZW5ndGggPSBkb2N1bWVudC5xdWVyeVNlbGVjdG9yKCcucGFzc3dvcmQtc3RyZW5ndGgnKTtcblxuICAgICAgICBpZiAoIXBhc3N3b3JkU3RyZW5ndGgpIHtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuXG4gICAgICAgIHN3aXRjaCAodGhpcy5wb3NpdGlvbikge1xuICAgICAgICAgICAgY2FzZSAndG9wJzpcbiAgICAgICAgICAgICAgICBwYXNzd29yZFN0cmVuZ3RoLmNsYXNzTGlzdC5hZGQoJ3Bhc3N3b3JkLXN0cmVuZ3RoLS10b3AnKTtcbiAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgICAgIGNhc2UgJ3JpZ2h0JzpcbiAgICAgICAgICAgICAgICBwYXNzd29yZFN0cmVuZ3RoLmNsYXNzTGlzdC5hZGQoJ3Bhc3N3b3JkLXN0cmVuZ3RoLS1yaWdodCcpO1xuICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgY2FzZSAnbGVmdCc6XG4gICAgICAgICAgICAgICAgcGFzc3dvcmRTdHJlbmd0aC5jbGFzc0xpc3QuYWRkKCdwYXNzd29yZC1zdHJlbmd0aC0tbGVmdCcpO1xuICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIHVwZGF0ZUluZGljYXRvcnMocGFzc3dvcmRTdHJlbmd0aDogUGFzc3dvcmRTdHJlbmd0aHMpIHtcbiAgICAgICAgY29uc3Qgc3RyZW5ndGhJbmRpY2F0b3IxID0gZG9jdW1lbnQucXVlcnlTZWxlY3RvcignI3N0cmVuZ3RoLWluZGljYXRvci0xJyk7XG4gICAgICAgIGNvbnN0IHN0cmVuZ3RoSW5kaWNhdG9yMiA9IGRvY3VtZW50LnF1ZXJ5U2VsZWN0b3IoJyNzdHJlbmd0aC1pbmRpY2F0b3ItMicpO1xuICAgICAgICBjb25zdCBzdHJlbmd0aEluZGljYXRvcjMgPSBkb2N1bWVudC5xdWVyeVNlbGVjdG9yKCcjc3RyZW5ndGgtaW5kaWNhdG9yLTMnKTtcblxuICAgICAgICBjb25zdCBvbkluZGljYXRvcnMgPSBbXTtcbiAgICAgICAgY29uc3QgaW5kaWNhdG9ycyA9IFtzdHJlbmd0aEluZGljYXRvcjEsIHN0cmVuZ3RoSW5kaWNhdG9yMiwgc3RyZW5ndGhJbmRpY2F0b3IzXTtcblxuICAgICAgICBsZXQgc3RyZW5ndGhDbGFzczogc3RyaW5nO1xuXG4gICAgICAgIHN3aXRjaCAocGFzc3dvcmRTdHJlbmd0aCkge1xuICAgICAgICAgICAgY2FzZSAndmVyeVdlYWsnOlxuICAgICAgICAgICAgICAgIHRoaXMudGl0bGUgPSB0aGlzLndlYWtUaXRsZSA/PyB0aGlzLnRyYW5zbGF0ZS5pbnN0YW50KCdwbGF0Zm9ybS5hbmd1bGFyX2NvbXBvbmVudHMud2VhaycpO1xuICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgY2FzZSAnd2Vhayc6XG4gICAgICAgICAgICAgICAgdGhpcy50aXRsZSA9IHRoaXMud2Vha1RpdGxlID8/IHRoaXMudHJhbnNsYXRlLmluc3RhbnQoJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy53ZWFrJyk7XG4gICAgICAgICAgICAgICAgc3RyZW5ndGhDbGFzcyA9ICdzdHJlbmd0aC1pbmRpY2F0b3ItLXdlYWsnO1xuICAgICAgICAgICAgICAgIG9uSW5kaWNhdG9ycy5wdXNoKHN0cmVuZ3RoSW5kaWNhdG9yMSk7XG4gICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICBjYXNlICdtZWRpdW0nOlxuICAgICAgICAgICAgICAgIHRoaXMudGl0bGUgPSB0aGlzLm1lZGl1bVRpdGxlID8/IHRoaXMudHJhbnNsYXRlLmluc3RhbnQoJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5tZWRpdW0nKTtcbiAgICAgICAgICAgICAgICBzdHJlbmd0aENsYXNzID0gJ3N0cmVuZ3RoLWluZGljYXRvci0tbWVkaXVtJztcbiAgICAgICAgICAgICAgICBvbkluZGljYXRvcnMucHVzaChzdHJlbmd0aEluZGljYXRvcjEpO1xuICAgICAgICAgICAgICAgIG9uSW5kaWNhdG9ycy5wdXNoKHN0cmVuZ3RoSW5kaWNhdG9yMik7XG4gICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICBjYXNlICdzdHJvbmcnOlxuICAgICAgICAgICAgICAgIHRoaXMudGl0bGUgPSB0aGlzLnN0cm9uZ1RpdGxlID8/IHRoaXMudHJhbnNsYXRlLmluc3RhbnQoJ3BsYXRmb3JtLmFuZ3VsYXJfY29tcG9uZW50cy5zdHJvbmcnKTtcbiAgICAgICAgICAgICAgICBzdHJlbmd0aENsYXNzID0gJ3N0cmVuZ3RoLWluZGljYXRvci0tc3Ryb25nJztcbiAgICAgICAgICAgICAgICBvbkluZGljYXRvcnMucHVzaChzdHJlbmd0aEluZGljYXRvcjEpO1xuICAgICAgICAgICAgICAgIG9uSW5kaWNhdG9ycy5wdXNoKHN0cmVuZ3RoSW5kaWNhdG9yMik7XG4gICAgICAgICAgICAgICAgb25JbmRpY2F0b3JzLnB1c2goc3RyZW5ndGhJbmRpY2F0b3IzKTtcbiAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgfVxuXG4gICAgICAgIGluZGljYXRvcnMuZm9yRWFjaCgoaW5kaWNhdG9yKSA9PiB7XG4gICAgICAgICAgICBpbmRpY2F0b3I/LmNsYXNzTGlzdC5yZW1vdmUoXG4gICAgICAgICAgICAgICAgJ3N0cmVuZ3RoLWluZGljYXRvci0td2VhaycsXG4gICAgICAgICAgICAgICAgJ3N0cmVuZ3RoLWluZGljYXRvci0tbWVkaXVtJyxcbiAgICAgICAgICAgICAgICAnc3RyZW5ndGgtaW5kaWNhdG9yLS1zdHJvbmcnLFxuICAgICAgICAgICAgKTtcbiAgICAgICAgfSk7XG5cbiAgICAgICAgb25JbmRpY2F0b3JzLmZvckVhY2goKGluZGljYXRvcikgPT4ge1xuICAgICAgICAgICAgaW5kaWNhdG9yPy5jbGFzc0xpc3QuYWRkKHN0cmVuZ3RoQ2xhc3MpO1xuICAgICAgICB9KTtcbiAgICB9XG59XG4iLCI8ZGl2XG4gICAgY2xhc3M9XCJwYXNzd29yZC1zdHJlbmd0aFwiXG4gICAgW25nU3R5bGVdPVwie1xuICAgICAgICBsZWZ0OiBsZWZ0ICsgJ3B4JyxcbiAgICAgICAgdG9wOiB0b3AgKyAncHgnLFxuICAgIH1cIlxuICAgIFtuZ0NsYXNzXT1cIlsncGFzc3dvcmQtc3RyZW5ndGgtLScgKyBwb3NpdGlvbl1cIlxuPlxuICAgIDxzcGFuIGNsYXNzPVwicGFzc3dvcmQtc3RyZW5ndGgtdGl0bGVcIj57eyB0aXRsZSB9fTwvc3Bhbj5cbiAgICA8ZGl2IGNsYXNzPVwic3RyZW5ndGgtaW5kaWNhdG9yc1wiPlxuICAgICAgICA8c3BhblxuICAgICAgICAgICAgY2xhc3M9XCJzdHJlbmd0aC1pbmRpY2F0b3JcIlxuICAgICAgICAgICAgaWQ9XCJzdHJlbmd0aC1pbmRpY2F0b3ItMVwiXG4gICAgICAgID48L3NwYW4+XG4gICAgICAgIDxzcGFuXG4gICAgICAgICAgICBjbGFzcz1cInN0cmVuZ3RoLWluZGljYXRvclwiXG4gICAgICAgICAgICBpZD1cInN0cmVuZ3RoLWluZGljYXRvci0yXCJcbiAgICAgICAgPjwvc3Bhbj5cbiAgICAgICAgPHNwYW5cbiAgICAgICAgICAgIGNsYXNzPVwic3RyZW5ndGgtaW5kaWNhdG9yXCJcbiAgICAgICAgICAgIGlkPVwic3RyZW5ndGgtaW5kaWNhdG9yLTNcIlxuICAgICAgICA+PC9zcGFuPlxuICAgIDwvZGl2PlxuICAgIDxzcGFuIGNsYXNzPVwiY29udGVudFwiPnt7IGRlc2NyaXB0aW9uIH19PC9zcGFuPlxuPC9kaXY+XG4iXX0=