robbyson-frontend-library 1.0.1 → 1.0.3

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 (620) hide show
  1. package/dist/constants/index.js +1 -0
  2. package/dist/constants/upload.constants.js +20 -0
  3. package/dist/models/get-user-to-register.model.js +24 -0
  4. package/dist/models/profile-info.model.js +12 -0
  5. package/dist/models/send-user-to-register.model.js +24 -0
  6. package/dist/models/update-password.model.js +6 -0
  7. package/dist/repositories/base.repository.js +32 -22
  8. package/dist/repositories/profile.repository.interface.js +1 -0
  9. package/dist/services/dtos/index.js +1 -0
  10. package/dist/services/dtos/profile.dto.js +1 -0
  11. package/dist/services/profile.service.interface.js +1 -0
  12. package/dist/services/upload.service.interface.js +1 -0
  13. package/dist/utils/cache-control.js +27 -16
  14. package/dist/utils/index.js +5 -4
  15. package/dist/utils/resize-image.js +98 -0
  16. package/docs/.nojekyll +1 -0
  17. package/docs/assets/highlight.css +106 -0
  18. package/docs/assets/main.js +59 -0
  19. package/docs/assets/navigation.js +1 -0
  20. package/docs/assets/search.js +1 -0
  21. package/docs/assets/style.css +1414 -0
  22. package/docs/classes/constants_layout_dimensions_constants.LayoutDimensions.html +3 -0
  23. package/docs/classes/factories_base_factory.BaseFactory.html +2 -0
  24. package/docs/classes/factories_query_params_factory.QueryParamsFactory.html +4 -0
  25. package/docs/classes/factories_response_factory.ResponseFactory.html +4 -0
  26. package/docs/classes/factories_response_factory.ResponseStatusLogMessages.html +4 -0
  27. package/docs/classes/factories_response_factory.RobbysonResponse.html +4 -0
  28. package/docs/classes/factories_response_factory.RobbysonResponseError.html +6 -0
  29. package/docs/classes/index.BaseAppPage.html +123 -0
  30. package/docs/classes/ioc.IoC.html +5 -0
  31. package/docs/classes/models_agenda_invited_users_model.AgendaInvitedUsersModel.html +14 -0
  32. package/docs/classes/models_agenda_model.AgendaModel.html +15 -0
  33. package/docs/classes/models_angel_friend_status_model.AngelFriendStatusModel.html +4 -0
  34. package/docs/classes/models_base_repository_model.BaseRepositoryModel.html +2 -0
  35. package/docs/classes/models_chat_model.ChatModel.html +12 -0
  36. package/docs/classes/models_document_model.DocumentModel.html +19 -0
  37. package/docs/classes/models_get_user_to_register_model.GetUserToRegisterModel.html +19 -0
  38. package/docs/classes/models_guidance_category_model.GuidanceCategoryModel.html +6 -0
  39. package/docs/classes/models_guidance_model.GuidanceFileObject.html +5 -0
  40. package/docs/classes/models_guidance_model.GuidanceModel.html +32 -0
  41. package/docs/classes/models_guidance_query_model.GuidanceQueryListModel.html +9 -0
  42. package/docs/classes/models_http_response_model.HttpListResponse.html +4 -0
  43. package/docs/classes/models_humor_list_model.HumorListModel.html +8 -0
  44. package/docs/classes/models_humor_register_model.HumorLastModel.html +6 -0
  45. package/docs/classes/models_humor_register_model.HumorRegisterModel.html +5 -0
  46. package/docs/classes/models_humor_register_model.HumorRegisterResponseModel.html +6 -0
  47. package/docs/classes/models_profile_info_model.ProfileImageModel.html +3 -0
  48. package/docs/classes/models_profile_info_model.ProfileInfoModel.html +8 -0
  49. package/docs/classes/models_quiz_answered_model.QuizAnsweredModel.html +4 -0
  50. package/docs/classes/models_quiz_model.QuizModel.html +23 -0
  51. package/docs/classes/models_quiz_not_answered_model.QuizNotAnsweredModel.html +3 -0
  52. package/docs/classes/models_result_level_model.ResultLevelModel.html +4 -0
  53. package/docs/classes/models_send_user_to_login_model.SendUserToAuthModel.html +7 -0
  54. package/docs/classes/models_send_user_to_register_model.SendUserToRegisterModel.html +12 -0
  55. package/docs/classes/models_term_of_use_model.TermsOfUseModel.html +4 -0
  56. package/docs/classes/models_theme_base.ThemeBase.html +8 -0
  57. package/docs/classes/models_update_password_model.UpdatePasswordModel.html +5 -0
  58. package/docs/classes/models_user_list_model.UserListModel.html +20 -0
  59. package/docs/classes/models_user_mirror_model.UserMirrorModel.html +8 -0
  60. package/docs/classes/models_user_model.UserModel.html +15 -0
  61. package/docs/classes/models_user_session_model.UserSessionModel.html +26 -0
  62. package/docs/classes/repositories_base_repository.BaseRepository.html +19 -0
  63. package/docs/classes/utils_build_error_buildError_util.BuildError.html +3 -0
  64. package/docs/classes/utils_cache_control.CacheControl.html +9 -0
  65. package/docs/classes/utils_date_utils.DateUtils.html +6 -0
  66. package/docs/classes/utils_layout_utils.LayoutUtils.html +3 -0
  67. package/docs/classes/utils_query_params.QueryParams.html +3 -0
  68. package/docs/classes/utils_robbyson_navigate.RobbysonNavigate.html +14 -0
  69. package/docs/classes/utils_timer_utils.TimerUtils.html +4 -0
  70. package/docs/enums/constants_upload_constants.EImageAnchor.html +10 -0
  71. package/docs/enums/constants_upload_constants.EImageMode.html +6 -0
  72. package/docs/enums/types_tree_tree_types.TreeActionTypes.html +2 -0
  73. package/docs/enums/types_tree_tree_types.UnitType.html +7 -0
  74. package/docs/functions/components_pages_base_app_page_styles.Block.html +209 -0
  75. package/docs/functions/components_pages_base_app_page_styles.Content.html +209 -0
  76. package/docs/functions/components_pages_base_app_page_styles.ContextMenu.html +209 -0
  77. package/docs/functions/components_pages_base_app_page_styles.Header.html +209 -0
  78. package/docs/functions/components_pages_base_app_page_styles.LeftArrowLarge.html +209 -0
  79. package/docs/functions/components_pages_base_app_page_styles.PageContainer.html +209 -0
  80. package/docs/functions/components_pages_base_app_page_styles.Title.html +209 -0
  81. package/docs/functions/utils_resize_image.getCroppedImg.html +1 -0
  82. package/docs/hierarchy.html +1 -0
  83. package/docs/index.html +193 -0
  84. package/docs/interfaces/components_accordion_accordion_interface.IAccordionProps.html +5 -0
  85. package/docs/interfaces/components_accordion_accordion_interface.IAccordionState.html +2 -0
  86. package/docs/interfaces/components_accordion_accordion_interface.IOptionsAccordion.html +7 -0
  87. package/docs/interfaces/components_accordion_accordion_interface.IOptionsContentAccordion.html +5 -0
  88. package/docs/interfaces/components_assets_assets_interfaces.IAssetsProps.html +166 -0
  89. package/docs/interfaces/components_badge_badge_interface.IBadgeProps.html +390 -0
  90. package/docs/interfaces/components_balloon_balloon_interface.IBalloonProps.html +389 -0
  91. package/docs/interfaces/components_base_component_prop_interface.IBaseComponentProp.html +2 -0
  92. package/docs/interfaces/components_base_page_prop_interface.IBasePageProp.html +2 -0
  93. package/docs/interfaces/components_base_test_prop_interface.IBaseTestProp.html +2 -0
  94. package/docs/interfaces/components_basic_button_basic_button_interface.IBasicButtonProps.html +400 -0
  95. package/docs/interfaces/components_checkbox_checkbox_interface.ICheckboxProps.html +421 -0
  96. package/docs/interfaces/components_circular_general_level_circular_general_level_interface.ICircularGeneralLevelProps.html +9 -0
  97. package/docs/interfaces/components_circular_indicator_goal_circular_indicator_goal_interface.ICircularIndicatorGoalProps.html +9 -0
  98. package/docs/interfaces/components_circular_progress_circular_progress_interface.ICircularProgressProps.html +8 -0
  99. package/docs/interfaces/components_colors_colors_interfaces.IColorsProps.html +166 -0
  100. package/docs/interfaces/components_context_menu_context_menu_interface.CheckboxItem.html +1 -0
  101. package/docs/interfaces/components_context_menu_context_menu_interface.DefaultItem.html +3 -0
  102. package/docs/interfaces/components_context_menu_context_menu_interface.IContextMenuProps.html +7 -0
  103. package/docs/interfaces/components_context_menu_context_menu_interface.IContextMenuState.html +2 -0
  104. package/docs/interfaces/components_daily_chart_daily_chart_interface.IDailyChartProps.html +10 -0
  105. package/docs/interfaces/components_date_picker_date_picker_interface.IDatePickerProps.html +6 -0
  106. package/docs/interfaces/components_date_picker_date_picker_interface.IDatePickerState.html +2 -0
  107. package/docs/interfaces/components_divider_divider_interface.IDividerProps.html +386 -0
  108. package/docs/interfaces/components_drawer_drawer_interface.IDrawerProps.html +8 -0
  109. package/docs/interfaces/components_dropdown_dropdown_interface.IDropdownProps.html +432 -0
  110. package/docs/interfaces/components_dropdown_dropdown_interface.IDropdownState.html +2 -0
  111. package/docs/interfaces/components_filter.IFilter.html +7 -0
  112. package/docs/interfaces/components_filter.IFilterProps.html +9 -0
  113. package/docs/interfaces/components_filter.IFilterReturn.html +1 -0
  114. package/docs/interfaces/components_filter.IFilterState.html +8 -0
  115. package/docs/interfaces/components_filter.IOption.html +8 -0
  116. package/docs/interfaces/components_header_context_menu_header_context_menu_interface.IHeaderContextMenuProps.html +5 -0
  117. package/docs/interfaces/components_header_context_menu_header_context_menu_interface.IHeaderContextMenuState.html +2 -0
  118. package/docs/interfaces/components_icon_button_icon_button_interface.IIconButtonProps.html +397 -0
  119. package/docs/interfaces/components_image_progress_graph_image_progress_graph_interface.IImageProgressGraphProps.html +10 -0
  120. package/docs/interfaces/components_insight_chart_insight_chart_interface.IInsightChartProps.html +13 -0
  121. package/docs/interfaces/components_loading_loading_interface.ILoadingProps.html +4 -0
  122. package/docs/interfaces/components_loading_loading_interface.ILoadingState.html +2 -0
  123. package/docs/interfaces/components_menu_interface.IMenuProps.html +2 -0
  124. package/docs/interfaces/components_menu_interface.IMenuState.html +3 -0
  125. package/docs/interfaces/components_modal_modal_interface.IModalActions.html +4 -0
  126. package/docs/interfaces/components_modal_modal_interface.IModalProps.html +12 -0
  127. package/docs/interfaces/components_modal_modal_interface.IModalState.html +2 -0
  128. package/docs/interfaces/components_mood_button_mood_button_interface.IMoodButtonProps.html +397 -0
  129. package/docs/interfaces/components_mountain_chart_mountain_chart_interface.IMountainChartProps.html +8 -0
  130. package/docs/interfaces/components_overlay_overlay_interface.IOverlayProps.html +387 -0
  131. package/docs/interfaces/components_pagination_pagination_interface.IPaginationProps.html +6 -0
  132. package/docs/interfaces/components_pagination_pagination_interface.IPaginationState.html +7 -0
  133. package/docs/interfaces/components_pdf_viewer_pdf_viewer_interface.IPDFViewerProps.html +3 -0
  134. package/docs/interfaces/components_primary_tag_primary_tag_interface.IPrimaryTagProps.html +396 -0
  135. package/docs/interfaces/components_primary_tag_primary_tag_interface.IPrimaryTagState.html +2 -0
  136. package/docs/interfaces/components_profile_image_profile_image_interface.IProfileImageProps.html +4 -0
  137. package/docs/interfaces/components_progress_bar_progress_bar_interface.IProgressBarProps.html +8 -0
  138. package/docs/interfaces/components_progress_bar_progress_bar_interface.IProgressBarState.html +1 -0
  139. package/docs/interfaces/components_progress_bar_progress_bar_interface.IProgressBarValue.html +3 -0
  140. package/docs/interfaces/components_progress_tracker_progress_tracker_interface.IProgressTrackerProps.html +387 -0
  141. package/docs/interfaces/components_radio_button_radio_button_interface.IRadioButtonProps.html +417 -0
  142. package/docs/interfaces/components_range_date_picker_range_date_picker_interface.IRangeDatePickerProps.html +6 -0
  143. package/docs/interfaces/components_range_date_picker_range_date_picker_interface.IRangeDatePickerState.html +3 -0
  144. package/docs/interfaces/components_result_chart_result_chart_interface.IResultChartProps.html +13 -0
  145. package/docs/interfaces/components_scroll_box_scroll_box_interface.IScrollBoxProps.html +9 -0
  146. package/docs/interfaces/components_search_input_search_input_interfaces.ISearchInputProps.html +432 -0
  147. package/docs/interfaces/components_search_input_search_input_interfaces.ISearchInputState.html +7 -0
  148. package/docs/interfaces/components_select_select_interface.ISelectOptionsProps.html +2 -0
  149. package/docs/interfaces/components_select_select_interface.ISelectProps.html +398 -0
  150. package/docs/interfaces/components_select_select_interface.ISelectState.html +3 -0
  151. package/docs/interfaces/components_sidebar_sidebar_interface.ISidebarProps.html +15 -0
  152. package/docs/interfaces/components_sidebar_sidebar_interface.ISidebarState.html +2 -0
  153. package/docs/interfaces/components_sort_sort_interface.ISortProps.html +14 -0
  154. package/docs/interfaces/components_sort_sort_interface.ISortState.html +3 -0
  155. package/docs/interfaces/components_speed_dial_speed_dial_interface.ISpeedDialProps.html +3 -0
  156. package/docs/interfaces/components_speed_dial_speed_dial_interface.ISpeedDialState.html +2 -0
  157. package/docs/interfaces/components_spin_edit_spin_edit_interface.ISpinEditProps.html +6 -0
  158. package/docs/interfaces/components_spin_edit_spin_edit_interface.ISpinEditState.html +2 -0
  159. package/docs/interfaces/components_switch_switch_interface.ISwitchProps.html +418 -0
  160. package/docs/interfaces/components_tab_tab_interface.ITabProps.html +5 -0
  161. package/docs/interfaces/components_tag_expand_tag_expand_interface.ITagExpandProps.html +7 -0
  162. package/docs/interfaces/components_tag_tag_interface.ITagProps.html +6 -0
  163. package/docs/interfaces/components_terms_of_use.ITermsOfUseProps.html +5 -0
  164. package/docs/interfaces/components_terms_of_use.ITermsOfUseState.html +3 -0
  165. package/docs/interfaces/components_text_area_text_area_interface.ITextAreaProps.html +432 -0
  166. package/docs/interfaces/components_text_field_text_field_interface.ITextFieldProps.html +432 -0
  167. package/docs/interfaces/components_text_field_text_field_interface.ITextFieldState.html +2 -0
  168. package/docs/interfaces/components_time_picker_time_picker_interface.ITimePickerProps.html +8 -0
  169. package/docs/interfaces/components_time_picker_time_picker_interface.ITimePickerState.html +2 -0
  170. package/docs/interfaces/components_timer_timer_interface.ITimerProps.html +4 -0
  171. package/docs/interfaces/components_timer_timer_interface.ITimerState.html +3 -0
  172. package/docs/interfaces/components_toggle_icon_button_toggle_icon_button_interface.IToggleIconButtonProps.html +400 -0
  173. package/docs/interfaces/components_tooltip_tooltip_interface.ITooltipProps.html +13 -0
  174. package/docs/interfaces/components_tooltip_tooltip_interface.ITooltipState.html +2 -0
  175. package/docs/interfaces/components_transitions_transitions_interfaces.ITransitionsProps.html +166 -0
  176. package/docs/interfaces/components_tree_date_picker_tree_date_picker_interface.ITreeDatePickerProps.html +7 -0
  177. package/docs/interfaces/components_tree_date_picker_tree_date_picker_interface.ITreeDatePickerState.html +5 -0
  178. package/docs/interfaces/components_typography_typography_interfaces.ITypographyProps.html +166 -0
  179. package/docs/interfaces/components_upload_upload_interface.INewFile.html +11 -0
  180. package/docs/interfaces/components_upload_upload_interface.IUploadProps.html +423 -0
  181. package/docs/interfaces/components_upload_upload_interface.IUploadState.html +2 -0
  182. package/docs/interfaces/components_weekly_chart_weekly_chart_interface.IWeeklyChartProps.html +13 -0
  183. package/docs/interfaces/components_weekly_chart_weekly_chart_interface.IWeeklyData.html +4 -0
  184. package/docs/interfaces/models_friendship_team_list_model.FriendShipTeamListModel.html +17 -0
  185. package/docs/interfaces/models_humor_list_model.IHumorFrases.html +3 -0
  186. package/docs/interfaces/models_humor_list_model.IHumorMotives.html +6 -0
  187. package/docs/interfaces/models_humor_register_model.IRegistersHumor.html +5 -0
  188. package/docs/interfaces/repositories_agenda_repository_interface.IAgendaRepository.html +7 -0
  189. package/docs/interfaces/repositories_angel_friend_repository_interface.IAngelFriendRepository.html +2 -0
  190. package/docs/interfaces/repositories_authentication_repository_interface.IAuthenticationRepository.html +6 -0
  191. package/docs/interfaces/repositories_chat_repository_interface.IChatRepository.html +6 -0
  192. package/docs/interfaces/repositories_configuration_repository_interface.IConfigurationRepository.html +2 -0
  193. package/docs/interfaces/repositories_document_repository_interface.IDocumentRepository.html +3 -0
  194. package/docs/interfaces/repositories_friendship_repository_interface.IFriendshipRepository.html +2 -0
  195. package/docs/interfaces/repositories_guidance_repository_interface.IGuidanceRepository.html +8 -0
  196. package/docs/interfaces/repositories_humor_repository_interface.IHumorRepository.html +5 -0
  197. package/docs/interfaces/repositories_locale_repository_interface.ILocaleRepository.html +3 -0
  198. package/docs/interfaces/repositories_profile_repository_interface.IProfileRepository.html +2 -0
  199. package/docs/interfaces/repositories_quiz_repository_interface.IQuizRepository.html +7 -0
  200. package/docs/interfaces/repositories_results_repository_interface.IResultsRepository.html +2 -0
  201. package/docs/interfaces/repositories_terms_of_use_repository_interface.ITermsOfUseRepository.html +3 -0
  202. package/docs/interfaces/repositories_theme_repository_interface.IThemeRepository.html +2 -0
  203. package/docs/interfaces/repositories_user_repository_interface.IUserRepository.html +6 -0
  204. package/docs/interfaces/services_agenda_service_interface.IAgendaService.html +12 -0
  205. package/docs/interfaces/services_angel_friend_service_interface.IAngelFriendService.html +1 -0
  206. package/docs/interfaces/services_authentication_service_interface.IAuthenticationService.html +14 -0
  207. package/docs/interfaces/services_chat_service_interface.IChatService.html +6 -0
  208. package/docs/interfaces/services_document_service_interface.IDocumentService.html +5 -0
  209. package/docs/interfaces/services_dtos_agenda_dto.ICreateOrGetConversationDTO.html +5 -0
  210. package/docs/interfaces/services_dtos_agenda_dto.IInsertAppointmentDTO.html +10 -0
  211. package/docs/interfaces/services_dtos_agenda_dto.IUpdateAppointmentDTO.html +13 -0
  212. package/docs/interfaces/services_dtos_chat_dto.ICreateConversationDTO.html +8 -0
  213. package/docs/interfaces/services_dtos_chat_dto.IGetConversationDTO.html +9 -0
  214. package/docs/interfaces/services_dtos_example_dto.ExempleDTO.html +1 -0
  215. package/docs/interfaces/services_dtos_friendship_dto.IGetTeamListDTO.html +5 -0
  216. package/docs/interfaces/services_dtos_profile_dto.IGetProfileImageDTO.html +3 -0
  217. package/docs/interfaces/services_dtos_profile_dto.IUpdateProfileDTO.html +3 -0
  218. package/docs/interfaces/services_dtos_user_dto.GetUserDTO.html +15 -0
  219. package/docs/interfaces/services_dtos_user_dto.IGetUserListDTO.html +6 -0
  220. package/docs/interfaces/services_friendship_service_interface.IFriendshipService.html +2 -0
  221. package/docs/interfaces/services_guidance_service_interface.IGuidanceService.html +8 -0
  222. package/docs/interfaces/services_humor_service_interface.IHumorService.html +7 -0
  223. package/docs/interfaces/services_locale_service_interface.ILocaleService.html +3 -0
  224. package/docs/interfaces/services_profile_service_interface.IProfileService.html +2 -0
  225. package/docs/interfaces/services_quiz_service_interface.IQuizService.html +9 -0
  226. package/docs/interfaces/services_results_service_interface.IResultsService.html +2 -0
  227. package/docs/interfaces/services_terms_of_use_service_interface.ITermsOfUseService.html +4 -0
  228. package/docs/interfaces/services_theme_service_interface.IThemeService.html +6 -0
  229. package/docs/interfaces/services_tree_service_interface.ITreeService.html +2 -0
  230. package/docs/interfaces/services_upload_service_interface.IUploadService.html +3 -0
  231. package/docs/interfaces/services_user_service_interface.IUserService.html +6 -0
  232. package/docs/interfaces/services_validations_service_interface.IValidationsService.html +5 -0
  233. package/docs/interfaces/states_main_container_app_state_interface.IAppState.html +2 -0
  234. package/docs/interfaces/states_main_container_plataform_state_interface.IPlatformState.html +2 -0
  235. package/docs/interfaces/states_main_container_root_app_state_interface.IRootApp.html +16 -0
  236. package/docs/interfaces/utils_build_error_buildError_util_interface.IBuildError.html +2 -0
  237. package/docs/interfaces/utils_cache_control.CacheConfig.html +45 -0
  238. package/docs/modules/components.html +8 -0
  239. package/docs/modules/components_accordion.html +5 -0
  240. package/docs/modules/components_accordion_accordion_interface.html +5 -0
  241. package/docs/modules/components_accordion_accordion_types.html +2 -0
  242. package/docs/modules/components_assets.html +2 -0
  243. package/docs/modules/components_assets_assets_interfaces.html +2 -0
  244. package/docs/modules/components_assets_assets_types.html +2 -0
  245. package/docs/modules/components_badge.html +2 -0
  246. package/docs/modules/components_badge_badge_interface.html +2 -0
  247. package/docs/modules/components_badge_badge_types.html +2 -0
  248. package/docs/modules/components_balloon.html +2 -0
  249. package/docs/modules/components_balloon_balloon_interface.html +2 -0
  250. package/docs/modules/components_balloon_balloon_types.html +2 -0
  251. package/docs/modules/components_base_component_prop_interface.html +2 -0
  252. package/docs/modules/components_base_page_prop_interface.html +2 -0
  253. package/docs/modules/components_base_test_prop_interface.html +2 -0
  254. package/docs/modules/components_basic_button.html +3 -0
  255. package/docs/modules/components_basic_button_basic_button_interface.html +3 -0
  256. package/docs/modules/components_basic_button_basic_button_types.html +2 -0
  257. package/docs/modules/components_checkbox.html +2 -0
  258. package/docs/modules/components_checkbox_checkbox_interface.html +2 -0
  259. package/docs/modules/components_checkbox_checkbox_types.html +2 -0
  260. package/docs/modules/components_circular_general_level.html +2 -0
  261. package/docs/modules/components_circular_general_level_circular_general_level_interface.html +2 -0
  262. package/docs/modules/components_circular_general_level_circular_general_level_types.html +2 -0
  263. package/docs/modules/components_circular_indicator_goal.html +2 -0
  264. package/docs/modules/components_circular_indicator_goal_circular_indicator_goal_interface.html +2 -0
  265. package/docs/modules/components_circular_indicator_goal_circular_indicator_goal_types.html +2 -0
  266. package/docs/modules/components_circular_progress.html +2 -0
  267. package/docs/modules/components_circular_progress_circular_progress_interface.html +2 -0
  268. package/docs/modules/components_circular_progress_circular_progress_types.html +2 -0
  269. package/docs/modules/components_colors.html +2 -0
  270. package/docs/modules/components_colors_colors_interfaces.html +2 -0
  271. package/docs/modules/components_colors_colors_types.html +2 -0
  272. package/docs/modules/components_context_menu.html +5 -0
  273. package/docs/modules/components_context_menu_context_menu_interface.html +5 -0
  274. package/docs/modules/components_context_menu_context_menu_types.html +2 -0
  275. package/docs/modules/components_daily_chart.html +3 -0
  276. package/docs/modules/components_daily_chart_daily_chart_interface.html +3 -0
  277. package/docs/modules/components_daily_chart_daily_chart_types.html +2 -0
  278. package/docs/modules/components_date_picker.html +3 -0
  279. package/docs/modules/components_date_picker_date_picker_interface.html +3 -0
  280. package/docs/modules/components_date_picker_date_picker_types.html +2 -0
  281. package/docs/modules/components_divider.html +2 -0
  282. package/docs/modules/components_divider_divider_interface.html +2 -0
  283. package/docs/modules/components_divider_divider_types.html +2 -0
  284. package/docs/modules/components_drawer.html +2 -0
  285. package/docs/modules/components_drawer_drawer_interface.html +2 -0
  286. package/docs/modules/components_drawer_drawer_types.html +2 -0
  287. package/docs/modules/components_dropdown.html +5 -0
  288. package/docs/modules/components_dropdown_dropdown_interface.html +5 -0
  289. package/docs/modules/components_dropdown_dropdown_types.html +2 -0
  290. package/docs/modules/components_filter.html +7 -0
  291. package/docs/modules/components_filter_basic_button_types.html +2 -0
  292. package/docs/modules/components_header_context_menu.html +4 -0
  293. package/docs/modules/components_header_context_menu_header_context_menu_interface.html +4 -0
  294. package/docs/modules/components_header_context_menu_header_context_menu_types.html +2 -0
  295. package/docs/modules/components_icon_button.html +2 -0
  296. package/docs/modules/components_icon_button_icon_button_interface.html +2 -0
  297. package/docs/modules/components_icon_button_icon_button_types.html +2 -0
  298. package/docs/modules/components_image_progress_graph.html +2 -0
  299. package/docs/modules/components_image_progress_graph_image_progress_graph_interface.html +2 -0
  300. package/docs/modules/components_image_progress_graph_image_progress_graph_types.html +2 -0
  301. package/docs/modules/components_insight_chart.html +3 -0
  302. package/docs/modules/components_insight_chart_insight_chart_interface.html +3 -0
  303. package/docs/modules/components_insight_chart_insight_chart_types.html +2 -0
  304. package/docs/modules/components_loading.html +3 -0
  305. package/docs/modules/components_loading_loading_interface.html +3 -0
  306. package/docs/modules/components_loading_loading_types.html +2 -0
  307. package/docs/modules/components_menu_interface.html +4 -0
  308. package/docs/modules/components_modal.html +4 -0
  309. package/docs/modules/components_modal_modal_interface.html +4 -0
  310. package/docs/modules/components_modal_modal_types.html +2 -0
  311. package/docs/modules/components_mood_button.html +2 -0
  312. package/docs/modules/components_mood_button_mood_button_interface.html +2 -0
  313. package/docs/modules/components_mood_button_mood_button_types.html +2 -0
  314. package/docs/modules/components_mountain_chart.html +2 -0
  315. package/docs/modules/components_mountain_chart_mountain_chart_interface.html +2 -0
  316. package/docs/modules/components_mountain_chart_mountain_chart_types.html +2 -0
  317. package/docs/modules/components_overlay.html +2 -0
  318. package/docs/modules/components_overlay_overlay_interface.html +2 -0
  319. package/docs/modules/components_overlay_overlay_types.html +2 -0
  320. package/docs/modules/components_pages_base_app_page_styles.html +8 -0
  321. package/docs/modules/components_pagination.html +3 -0
  322. package/docs/modules/components_pagination_pagination_interface.html +3 -0
  323. package/docs/modules/components_pagination_pagination_types.html +2 -0
  324. package/docs/modules/components_pdf_viewer.html +2 -0
  325. package/docs/modules/components_pdf_viewer_pdf_viewer_interface.html +2 -0
  326. package/docs/modules/components_pdf_viewer_pdf_viewer_types.html +2 -0
  327. package/docs/modules/components_primary_tag.html +3 -0
  328. package/docs/modules/components_primary_tag_primary_tag_interface.html +3 -0
  329. package/docs/modules/components_primary_tag_primary_tag_types.html +2 -0
  330. package/docs/modules/components_profile_image.html +2 -0
  331. package/docs/modules/components_profile_image_profile_image_interface.html +2 -0
  332. package/docs/modules/components_profile_image_profile_image_types.html +2 -0
  333. package/docs/modules/components_progress_bar.html +4 -0
  334. package/docs/modules/components_progress_bar_progress_bar_interface.html +4 -0
  335. package/docs/modules/components_progress_bar_progress_bar_types.html +2 -0
  336. package/docs/modules/components_progress_tracker.html +2 -0
  337. package/docs/modules/components_progress_tracker_progress_tracker_interface.html +2 -0
  338. package/docs/modules/components_progress_tracker_progress_tracker_types.html +2 -0
  339. package/docs/modules/components_radio_button.html +2 -0
  340. package/docs/modules/components_radio_button_radio_button_interface.html +2 -0
  341. package/docs/modules/components_radio_button_radio_button_types.html +2 -0
  342. package/docs/modules/components_range_date_picker.html +3 -0
  343. package/docs/modules/components_range_date_picker_range_date_picker_interface.html +3 -0
  344. package/docs/modules/components_range_date_picker_range_date_picker_types.html +2 -0
  345. package/docs/modules/components_result_chart.html +2 -0
  346. package/docs/modules/components_result_chart_result_chart_interface.html +2 -0
  347. package/docs/modules/components_result_chart_result_chart_types.html +2 -0
  348. package/docs/modules/components_scroll_box.html +2 -0
  349. package/docs/modules/components_scroll_box_scroll_box_interface.html +2 -0
  350. package/docs/modules/components_scroll_box_scroll_box_types.html +2 -0
  351. package/docs/modules/components_search_input.html +3 -0
  352. package/docs/modules/components_search_input_search_input_interfaces.html +3 -0
  353. package/docs/modules/components_search_input_search_input_types.html +2 -0
  354. package/docs/modules/components_select.html +4 -0
  355. package/docs/modules/components_select_select_interface.html +4 -0
  356. package/docs/modules/components_select_select_types.html +2 -0
  357. package/docs/modules/components_sidebar.html +3 -0
  358. package/docs/modules/components_sidebar_sidebar_interface.html +3 -0
  359. package/docs/modules/components_sidebar_sidebar_types.html +2 -0
  360. package/docs/modules/components_sort.html +3 -0
  361. package/docs/modules/components_sort_sort_interface.html +3 -0
  362. package/docs/modules/components_sort_sort_types.html +2 -0
  363. package/docs/modules/components_speed_dial.html +3 -0
  364. package/docs/modules/components_speed_dial_speed_dial_interface.html +3 -0
  365. package/docs/modules/components_speed_dial_speed_dial_types.html +2 -0
  366. package/docs/modules/components_spin_edit.html +3 -0
  367. package/docs/modules/components_spin_edit_spin_edit_interface.html +3 -0
  368. package/docs/modules/components_spin_edit_spin_edit_types.html +2 -0
  369. package/docs/modules/components_switch.html +2 -0
  370. package/docs/modules/components_switch_switch_interface.html +2 -0
  371. package/docs/modules/components_switch_switch_types.html +2 -0
  372. package/docs/modules/components_tab.html +2 -0
  373. package/docs/modules/components_tab_tab_interface.html +2 -0
  374. package/docs/modules/components_tab_tab_types.html +2 -0
  375. package/docs/modules/components_tag.html +2 -0
  376. package/docs/modules/components_tag_expand.html +2 -0
  377. package/docs/modules/components_tag_expand_tag_expand_interface.html +2 -0
  378. package/docs/modules/components_tag_expand_tag_expand_types.html +2 -0
  379. package/docs/modules/components_tag_tag_interface.html +2 -0
  380. package/docs/modules/components_tag_tag_types.html +2 -0
  381. package/docs/modules/components_terms_of_use.html +3 -0
  382. package/docs/modules/components_terms_of_use_terms_of_use_types.html +2 -0
  383. package/docs/modules/components_text_area.html +2 -0
  384. package/docs/modules/components_text_area_text_area_interface.html +2 -0
  385. package/docs/modules/components_text_area_text_area_types.html +2 -0
  386. package/docs/modules/components_text_field.html +3 -0
  387. package/docs/modules/components_text_field_text_field_interface.html +3 -0
  388. package/docs/modules/components_text_field_text_field_types.html +2 -0
  389. package/docs/modules/components_time_picker.html +3 -0
  390. package/docs/modules/components_time_picker_time_picker_interface.html +3 -0
  391. package/docs/modules/components_time_picker_time_picker_types.html +2 -0
  392. package/docs/modules/components_timer.html +3 -0
  393. package/docs/modules/components_timer_timer_interface.html +3 -0
  394. package/docs/modules/components_timer_timer_types.html +2 -0
  395. package/docs/modules/components_toggle_icon_button.html +3 -0
  396. package/docs/modules/components_toggle_icon_button_toggle_icon_button_interface.html +3 -0
  397. package/docs/modules/components_toggle_icon_button_toggle_icon_button_types.html +2 -0
  398. package/docs/modules/components_tooltip.html +4 -0
  399. package/docs/modules/components_tooltip_tooltip_interface.html +4 -0
  400. package/docs/modules/components_tooltip_tooltip_types.html +2 -0
  401. package/docs/modules/components_transitions.html +2 -0
  402. package/docs/modules/components_transitions_transitions_interfaces.html +2 -0
  403. package/docs/modules/components_transitions_transitions_types.html +2 -0
  404. package/docs/modules/components_tree_date_picker.html +5 -0
  405. package/docs/modules/components_tree_date_picker_tree_date_picker_interface.html +5 -0
  406. package/docs/modules/components_tree_date_picker_tree_date_picker_types.html +2 -0
  407. package/docs/modules/components_typography.html +2 -0
  408. package/docs/modules/components_typography_typography_interfaces.html +2 -0
  409. package/docs/modules/components_typography_typography_types.html +2 -0
  410. package/docs/modules/components_upload.html +4 -0
  411. package/docs/modules/components_upload_upload_interface.html +4 -0
  412. package/docs/modules/components_upload_upload_types.html +2 -0
  413. package/docs/modules/components_weekly_chart.html +3 -0
  414. package/docs/modules/components_weekly_chart_weekly_chart_interface.html +3 -0
  415. package/docs/modules/components_weekly_chart_weekly_chart_types.html +2 -0
  416. package/docs/modules/constants.html +3 -0
  417. package/docs/modules/constants_layout_dimensions_constants.html +2 -0
  418. package/docs/modules/constants_upload_constants.html +3 -0
  419. package/docs/modules/factories.html +6 -0
  420. package/docs/modules/factories_base_factory.html +2 -0
  421. package/docs/modules/factories_query_params_factory.html +2 -0
  422. package/docs/modules/factories_response_factory.html +5 -0
  423. package/docs/modules/index.html +63 -0
  424. package/docs/modules/ioc.html +2 -0
  425. package/docs/modules/models.html +37 -0
  426. package/docs/modules/models_agenda_invited_users_model.html +2 -0
  427. package/docs/modules/models_agenda_model.html +2 -0
  428. package/docs/modules/models_angel_friend_status_model.html +2 -0
  429. package/docs/modules/models_base_repository_model.html +2 -0
  430. package/docs/modules/models_chat_model.html +2 -0
  431. package/docs/modules/models_document_model.html +2 -0
  432. package/docs/modules/models_friendship_team_list_model.html +2 -0
  433. package/docs/modules/models_get_user_to_register_model.html +2 -0
  434. package/docs/modules/models_guidance_category_model.html +2 -0
  435. package/docs/modules/models_guidance_model.html +3 -0
  436. package/docs/modules/models_guidance_query_model.html +2 -0
  437. package/docs/modules/models_http_response_model.html +2 -0
  438. package/docs/modules/models_humor_list_model.html +4 -0
  439. package/docs/modules/models_humor_register_model.html +5 -0
  440. package/docs/modules/models_profile_info_model.html +3 -0
  441. package/docs/modules/models_quiz_answered_model.html +2 -0
  442. package/docs/modules/models_quiz_model.html +2 -0
  443. package/docs/modules/models_quiz_not_answered_model.html +2 -0
  444. package/docs/modules/models_result_level_model.html +2 -0
  445. package/docs/modules/models_send_user_to_login_model.html +2 -0
  446. package/docs/modules/models_send_user_to_register_model.html +2 -0
  447. package/docs/modules/models_term_of_use_model.html +2 -0
  448. package/docs/modules/models_theme_base.html +4 -0
  449. package/docs/modules/models_update_password_model.html +2 -0
  450. package/docs/modules/models_user_list_model.html +2 -0
  451. package/docs/modules/models_user_mirror_model.html +2 -0
  452. package/docs/modules/models_user_model.html +2 -0
  453. package/docs/modules/models_user_session_model.html +2 -0
  454. package/docs/modules/repositories.html +17 -0
  455. package/docs/modules/repositories_agenda_repository_interface.html +2 -0
  456. package/docs/modules/repositories_angel_friend_repository_interface.html +2 -0
  457. package/docs/modules/repositories_authentication_repository_interface.html +2 -0
  458. package/docs/modules/repositories_base_repository.html +2 -0
  459. package/docs/modules/repositories_chat_repository_interface.html +2 -0
  460. package/docs/modules/repositories_configuration_repository_interface.html +2 -0
  461. package/docs/modules/repositories_document_repository_interface.html +2 -0
  462. package/docs/modules/repositories_friendship_repository_interface.html +2 -0
  463. package/docs/modules/repositories_guidance_repository_interface.html +2 -0
  464. package/docs/modules/repositories_humor_repository_interface.html +2 -0
  465. package/docs/modules/repositories_locale_repository_interface.html +2 -0
  466. package/docs/modules/repositories_profile_repository_interface.html +2 -0
  467. package/docs/modules/repositories_quiz_repository_interface.html +2 -0
  468. package/docs/modules/repositories_results_repository_interface.html +2 -0
  469. package/docs/modules/repositories_terms_of_use_repository_interface.html +2 -0
  470. package/docs/modules/repositories_theme_repository_interface.html +2 -0
  471. package/docs/modules/repositories_user_repository_interface.html +2 -0
  472. package/docs/modules/services.html +26 -0
  473. package/docs/modules/services_agenda_service_interface.html +2 -0
  474. package/docs/modules/services_angel_friend_service_interface.html +2 -0
  475. package/docs/modules/services_authentication_service_interface.html +2 -0
  476. package/docs/modules/services_chat_service_interface.html +2 -0
  477. package/docs/modules/services_document_service_interface.html +2 -0
  478. package/docs/modules/services_dtos.html +8 -0
  479. package/docs/modules/services_dtos_agenda_dto.html +4 -0
  480. package/docs/modules/services_dtos_chat_dto.html +4 -0
  481. package/docs/modules/services_dtos_example_dto.html +2 -0
  482. package/docs/modules/services_dtos_friendship_dto.html +2 -0
  483. package/docs/modules/services_dtos_profile_dto.html +3 -0
  484. package/docs/modules/services_dtos_quiz_dto.html +2 -0
  485. package/docs/modules/services_dtos_user_dto.html +3 -0
  486. package/docs/modules/services_friendship_service_interface.html +2 -0
  487. package/docs/modules/services_guidance_service_interface.html +2 -0
  488. package/docs/modules/services_humor_service_interface.html +2 -0
  489. package/docs/modules/services_locale_service_interface.html +2 -0
  490. package/docs/modules/services_profile_service_interface.html +2 -0
  491. package/docs/modules/services_quiz_service_interface.html +2 -0
  492. package/docs/modules/services_results_service_interface.html +2 -0
  493. package/docs/modules/services_terms_of_use_service_interface.html +2 -0
  494. package/docs/modules/services_theme_service_interface.html +2 -0
  495. package/docs/modules/services_tree_service_interface.html +2 -0
  496. package/docs/modules/services_upload_service_interface.html +2 -0
  497. package/docs/modules/services_user_service_interface.html +2 -0
  498. package/docs/modules/services_validations_service_interface.html +2 -0
  499. package/docs/modules/states.html +4 -0
  500. package/docs/modules/states_main_container_app_state_interface.html +2 -0
  501. package/docs/modules/states_main_container_plataform_state_interface.html +2 -0
  502. package/docs/modules/states_main_container_root_app_state_interface.html +2 -0
  503. package/docs/modules/types.html +4 -0
  504. package/docs/modules/types_tree.html +4 -0
  505. package/docs/modules/types_tree_tree_types.html +4 -0
  506. package/docs/modules/utils.html +13 -0
  507. package/docs/modules/utils_build_error_buildError_util.html +2 -0
  508. package/docs/modules/utils_build_error_buildError_util_interface.html +2 -0
  509. package/docs/modules/utils_cache_control.html +5 -0
  510. package/docs/modules/utils_date_utils.html +2 -0
  511. package/docs/modules/utils_layout_utils.html +2 -0
  512. package/docs/modules/utils_query_params.html +2 -0
  513. package/docs/modules/utils_resize_image.html +2 -0
  514. package/docs/modules/utils_robbyson_navigate.html +2 -0
  515. package/docs/modules/utils_timer_utils.html +2 -0
  516. package/docs/types/components_basic_button_basic_button_interface.BasicButtonVariant.html +1 -0
  517. package/docs/types/components_daily_chart_daily_chart_interface.IChartData.html +1 -0
  518. package/docs/types/components_dropdown_dropdown_interface.DropdownOptions.html +1 -0
  519. package/docs/types/components_dropdown_dropdown_interface.ValuesDropdownData.html +1 -0
  520. package/docs/types/components_filter.IOptionsByCategories.html +1 -0
  521. package/docs/types/components_header_context_menu_header_context_menu_interface.IHeaderContextMenuButtons.html +1 -0
  522. package/docs/types/components_insight_chart_insight_chart_interface.ChartData.html +1 -0
  523. package/docs/types/components_menu_interface.MenuItem.html +1 -0
  524. package/docs/types/components_toggle_icon_button_toggle_icon_button_interface.ToggleActualState.html +1 -0
  525. package/docs/types/components_tooltip_tooltip_interface.TooltipPosition.html +1 -0
  526. package/docs/types/components_tree_date_picker_tree_date_picker_interface.Week.html +1 -0
  527. package/docs/types/components_tree_date_picker_tree_date_picker_interface.Weeks.html +1 -0
  528. package/docs/types/models_theme_base.IconHandle.html +1 -0
  529. package/docs/types/services_dtos_chat_dto.ConversationType.html +1 -0
  530. package/docs/types/services_dtos_quiz_dto.QuestionAnswerDTO.html +1 -0
  531. package/docs/types/types_tree_tree_types.JWT.html +1 -0
  532. package/docs/types/utils_cache_control.Cache.html +1 -0
  533. package/docs/types/utils_cache_control.MaxAge.html +1 -0
  534. package/docs/variables/components_accordion_accordion_types.default.html +1 -0
  535. package/docs/variables/components_assets_assets_types.default.html +1 -0
  536. package/docs/variables/components_badge_badge_types.default.html +1 -0
  537. package/docs/variables/components_balloon_balloon_types.default.html +1 -0
  538. package/docs/variables/components_basic_button_basic_button_types.default.html +1 -0
  539. package/docs/variables/components_checkbox_checkbox_types.default.html +1 -0
  540. package/docs/variables/components_circular_general_level_circular_general_level_types.default.html +1 -0
  541. package/docs/variables/components_circular_indicator_goal_circular_indicator_goal_types.default.html +1 -0
  542. package/docs/variables/components_circular_progress_circular_progress_types.default.html +1 -0
  543. package/docs/variables/components_colors_colors_types.default.html +1 -0
  544. package/docs/variables/components_context_menu_context_menu_types.default.html +1 -0
  545. package/docs/variables/components_daily_chart_daily_chart_types.default.html +1 -0
  546. package/docs/variables/components_date_picker_date_picker_types.default.html +1 -0
  547. package/docs/variables/components_divider_divider_types.default.html +1 -0
  548. package/docs/variables/components_drawer_drawer_types.default.html +1 -0
  549. package/docs/variables/components_dropdown_dropdown_types.default.html +1 -0
  550. package/docs/variables/components_filter_basic_button_types.default.html +1 -0
  551. package/docs/variables/components_header_context_menu_header_context_menu_types.default.html +1 -0
  552. package/docs/variables/components_icon_button_icon_button_types.default.html +1 -0
  553. package/docs/variables/components_image_progress_graph_image_progress_graph_types.default.html +1 -0
  554. package/docs/variables/components_insight_chart_insight_chart_types.default.html +1 -0
  555. package/docs/variables/components_loading_loading_types.default.html +1 -0
  556. package/docs/variables/components_modal_modal_types.default.html +1 -0
  557. package/docs/variables/components_mood_button_mood_button_types.default.html +1 -0
  558. package/docs/variables/components_mountain_chart_mountain_chart_types.default.html +1 -0
  559. package/docs/variables/components_overlay_overlay_types.default.html +1 -0
  560. package/docs/variables/components_pagination_pagination_types.default.html +1 -0
  561. package/docs/variables/components_pdf_viewer_pdf_viewer_types.default.html +1 -0
  562. package/docs/variables/components_primary_tag_primary_tag_types.default.html +1 -0
  563. package/docs/variables/components_profile_image_profile_image_types.default.html +1 -0
  564. package/docs/variables/components_progress_bar_progress_bar_types.default.html +1 -0
  565. package/docs/variables/components_progress_tracker_progress_tracker_types.default.html +1 -0
  566. package/docs/variables/components_radio_button_radio_button_types.default.html +1 -0
  567. package/docs/variables/components_range_date_picker_range_date_picker_types.default.html +1 -0
  568. package/docs/variables/components_result_chart_result_chart_types.default.html +1 -0
  569. package/docs/variables/components_scroll_box_scroll_box_types.default.html +1 -0
  570. package/docs/variables/components_search_input_search_input_types.default.html +1 -0
  571. package/docs/variables/components_select_select_types.default.html +1 -0
  572. package/docs/variables/components_sidebar_sidebar_types.default.html +1 -0
  573. package/docs/variables/components_sort_sort_types.default.html +1 -0
  574. package/docs/variables/components_speed_dial_speed_dial_types.default.html +1 -0
  575. package/docs/variables/components_spin_edit_spin_edit_types.default.html +1 -0
  576. package/docs/variables/components_switch_switch_types.default.html +1 -0
  577. package/docs/variables/components_tab_tab_types.default.html +1 -0
  578. package/docs/variables/components_tag_expand_tag_expand_types.default.html +1 -0
  579. package/docs/variables/components_tag_tag_types.default.html +1 -0
  580. package/docs/variables/components_terms_of_use_terms_of_use_types.default.html +1 -0
  581. package/docs/variables/components_text_area_text_area_types.default.html +1 -0
  582. package/docs/variables/components_text_field_text_field_types.default.html +1 -0
  583. package/docs/variables/components_time_picker_time_picker_types.default.html +1 -0
  584. package/docs/variables/components_timer_timer_types.default.html +1 -0
  585. package/docs/variables/components_toggle_icon_button_toggle_icon_button_types.default.html +1 -0
  586. package/docs/variables/components_tooltip_tooltip_types.default.html +1 -0
  587. package/docs/variables/components_transitions_transitions_types.default.html +1 -0
  588. package/docs/variables/components_tree_date_picker_tree_date_picker_types.default.html +1 -0
  589. package/docs/variables/components_typography_typography_types.default.html +1 -0
  590. package/docs/variables/components_upload_upload_types.default.html +1 -0
  591. package/docs/variables/components_weekly_chart_weekly_chart_types.default.html +1 -0
  592. package/docs/variables/models_theme_base.ICON_HANDLES.html +1 -0
  593. package/package.json +44 -42
  594. package/src/components/header-context-menu/header-context-menu.interface.ts +1 -1
  595. package/src/components/tooltip/tooltip.interface.ts +1 -0
  596. package/src/constants/index.ts +2 -1
  597. package/src/constants/upload.constants.ts +19 -0
  598. package/src/models/get-user-to-register.model.ts +24 -0
  599. package/src/models/index.d.ts +7 -3
  600. package/src/models/profile-info.model.ts +12 -0
  601. package/src/models/send-user-to-register.model.ts +14 -0
  602. package/src/models/update-password.model.ts +5 -0
  603. package/src/models/user-session.model.ts +1 -0
  604. package/src/repositories/authentication.repository.interface.ts +16 -3
  605. package/src/repositories/base.repository.ts +86 -52
  606. package/src/repositories/configuration.repository.interface.ts +1 -3
  607. package/src/repositories/index.d.ts +1 -0
  608. package/src/repositories/profile.repository.interface.ts +7 -0
  609. package/src/repositories/user.repository.interface.ts +9 -9
  610. package/src/services/authentication.service.interface.ts +7 -4
  611. package/src/services/dtos/index.ts +1 -0
  612. package/src/services/dtos/profile.dto.ts +9 -0
  613. package/src/services/index.d.ts +2 -0
  614. package/src/services/profile.service.interface.ts +8 -0
  615. package/src/services/upload.service.interface.ts +12 -0
  616. package/src/services/user.service.interface.ts +3 -1
  617. package/src/utils/{cache-control.tsx → cache-control.ts} +8 -9
  618. package/src/utils/index.ts +5 -4
  619. package/src/utils/resize-image.ts +74 -0
  620. package/typedoc.json +6 -0
@@ -0,0 +1,8 @@
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>IDrawerProps | Robbyson Frontend Library</title><meta name="description" content="Documentation for Robbyson Frontend Library"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">Robbyson Frontend Library</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../index.html">Robbyson Frontend Library</a></li><li><a href="../modules/components_drawer_drawer_interface.html">components/drawer/drawer.interface</a></li><li><a href="components_drawer_drawer_interface.IDrawerProps.html">IDrawerProps</a></li></ul><h1>Interface IDrawerProps</h1></div><div class="tsd-signature"><span class="tsd-signature-keyword">interface </span><span class="tsd-kind-interface">IDrawerProps</span> <span class="tsd-signature-symbol">{ </span><br/><span>    </span><a class="tsd-kind-property" href="components_drawer_drawer_interface.IDrawerProps.html#children">children</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ReactNode</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><a class="tsd-kind-property" href="components_drawer_drawer_interface.IDrawerProps.html#dataTestId">dataTestId</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><a class="tsd-kind-property" href="components_drawer_drawer_interface.IDrawerProps.html#overlayZindex">overlayZindex</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><a class="tsd-kind-property" href="components_drawer_drawer_interface.IDrawerProps.html#scrollBoxHeight">scrollBoxHeight</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><a class="tsd-kind-property" href="components_drawer_drawer_interface.IDrawerProps.html#showOverlay">showOverlay</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><a class="tsd-kind-property" href="components_drawer_drawer_interface.IDrawerProps.html#titleLocaleHandle">titleLocaleHandle</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span>    </span><a class="tsd-kind-call-signature" href="components_drawer_drawer_interface.IDrawerProps.html#onClick.onClick-1">onClick</a><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div><section class="tsd-panel tsd-hierarchy"><h4>Hierarchy (<a class="link" href="../hierarchy.html#components/drawer/drawer.interface.IDrawerProps">view full</a>)</h4><ul class="tsd-hierarchy"><li><a href="components_base_component_prop_interface.IBaseComponentProp.html" class="tsd-signature-type tsd-kind-interface">IBaseComponentProp</a><ul class="tsd-hierarchy"><li><span class="target">IDrawerProps</span></li></ul></li></ul></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/Robbyson/Robbyson/-/blob/d7c1fc24f3/Frontends/frontend-platform/robbyson-frontend-library/src/components/drawer/drawer.interface.ts#L3">src/components/drawer/drawer.interface.ts:3</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="components_drawer_drawer_interface.IDrawerProps.html#children" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>children</span></a>
2
+ <a href="components_drawer_drawer_interface.IDrawerProps.html#dataTestId" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>data<wbr/>Test<wbr/>Id</span></a>
3
+ <a href="components_drawer_drawer_interface.IDrawerProps.html#overlayZindex" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>overlay<wbr/>Zindex?</span></a>
4
+ <a href="components_drawer_drawer_interface.IDrawerProps.html#scrollBoxHeight" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>scroll<wbr/>Box<wbr/>Height</span></a>
5
+ <a href="components_drawer_drawer_interface.IDrawerProps.html#showOverlay" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>show<wbr/>Overlay</span></a>
6
+ <a href="components_drawer_drawer_interface.IDrawerProps.html#titleLocaleHandle" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>title<wbr/>Locale<wbr/>Handle?</span></a>
7
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Methods</h3><div class="tsd-index-list"><a href="components_drawer_drawer_interface.IDrawerProps.html#onClick" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>on<wbr/>Click</span></a>
8
+ </div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Properties</h2><section class="tsd-panel tsd-member"><a id="children" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>children</span><a href="#children" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">children</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">ReactNode</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/Robbyson/Robbyson/-/blob/d7c1fc24f3/Frontends/frontend-platform/robbyson-frontend-library/src/components/drawer/drawer.interface.ts#L7">src/components/drawer/drawer.interface.ts:7</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-inherited"><a id="dataTestId" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>data<wbr/>Test<wbr/>Id</span><a href="#dataTestId" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">data<wbr/>Test<wbr/>Id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><p>Inherited from <a href="components_base_component_prop_interface.IBaseComponentProp.html">IBaseComponentProp</a>.<a href="components_base_component_prop_interface.IBaseComponentProp.html#dataTestId">dataTestId</a></p><ul><li>Defined in <a href="https://gitlab.com/Robbyson/Robbyson/-/blob/d7c1fc24f3/Frontends/frontend-platform/robbyson-frontend-library/src/components/base-test.prop.interface.ts#L2">src/components/base-test.prop.interface.ts:2</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="overlayZindex" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>overlay<wbr/>Zindex</span><a href="#overlayZindex" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">overlay<wbr/>Zindex</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/Robbyson/Robbyson/-/blob/d7c1fc24f3/Frontends/frontend-platform/robbyson-frontend-library/src/components/drawer/drawer.interface.ts#L8">src/components/drawer/drawer.interface.ts:8</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="scrollBoxHeight" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>scroll<wbr/>Box<wbr/>Height</span><a href="#scrollBoxHeight" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">scroll<wbr/>Box<wbr/>Height</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/Robbyson/Robbyson/-/blob/d7c1fc24f3/Frontends/frontend-platform/robbyson-frontend-library/src/components/drawer/drawer.interface.ts#L6">src/components/drawer/drawer.interface.ts:6</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="showOverlay" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>show<wbr/>Overlay</span><a href="#showOverlay" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">show<wbr/>Overlay</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/Robbyson/Robbyson/-/blob/d7c1fc24f3/Frontends/frontend-platform/robbyson-frontend-library/src/components/drawer/drawer.interface.ts#L4">src/components/drawer/drawer.interface.ts:4</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="titleLocaleHandle" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>title<wbr/>Locale<wbr/>Handle</span><a href="#titleLocaleHandle" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">title<wbr/>Locale<wbr/>Handle</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/Robbyson/Robbyson/-/blob/d7c1fc24f3/Frontends/frontend-platform/robbyson-frontend-library/src/components/drawer/drawer.interface.ts#L9">src/components/drawer/drawer.interface.ts:9</a></li></ul></aside></section></section><section class="tsd-panel-group tsd-member-group"><h2>Methods</h2><section class="tsd-panel tsd-member"><a id="onClick" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>on<wbr/>Click</span><a href="#onClick" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="onClick.onClick-1" class="tsd-anchor"></a><span class="tsd-kind-call-signature">on<wbr/>Click</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#onClick.onClick-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li><li class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/Robbyson/Robbyson/-/blob/d7c1fc24f3/Frontends/frontend-platform/robbyson-frontend-library/src/components/drawer/drawer.interface.ts#L5">src/components/drawer/drawer.interface.ts:5</a></li></ul></aside></li></ul></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><ul><li><a href="#children" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>children</span></a></li><li><a href="#dataTestId" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>data<wbr/>Test<wbr/>Id</span></a></li><li><a href="#overlayZindex" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>overlay<wbr/>Zindex</span></a></li><li><a href="#scrollBoxHeight" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>scroll<wbr/>Box<wbr/>Height</span></a></li><li><a href="#showOverlay" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>show<wbr/>Overlay</span></a></li><li><a href="#titleLocaleHandle" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>title<wbr/>Locale<wbr/>Handle</span></a></li><li><a href="#onClick" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>on<wbr/>Click</span></a></li></ul></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1"></use></svg><span>Robbyson Frontend Library</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li><a href="../modules/components.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>components</a></li><li><a href="../modules/constants.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>constants</a></li><li><a href="../modules/factories.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>factories</a></li><li><a href="../modules/index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>index</a></li><li><a href="../modules/ioc.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>ioc</a></li><li><a href="../modules/models.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>models</a></li><li><a href="../modules/repositories.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>repositories</a></li><li><a href="../modules/services.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>services</a></li><li><a href="../modules/states.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>states</a></li><li><a href="../modules/types.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>types</a></li><li><a href="../modules/utils.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2"></use></svg>utils</a></li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><svg style="display: none"><g id="icon-1"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-module)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g><g id="icon-2"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-module)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g><g id="icon-16"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-32"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-variable)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.106 16L8.85 7.24H9.966L11.454 13.192C11.558 13.608 11.646 13.996 11.718 14.356C11.79 14.708 11.842 14.976 11.874 15.16C11.906 14.976 11.954 14.708 12.018 14.356C12.09 13.996 12.178 13.608 12.282 13.192L13.758 7.24H14.85L12.582 16H11.106Z" fill="var(--color-text)"></path></g><g id="icon-64"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g><g id="icon-128"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g><g id="icon-512"><rect fill="var(--color-icon-background)" stroke="#4D7FFF" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g><g id="icon-1024"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-2048"><rect fill="var(--color-icon-background)" stroke="#FF4DB8" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g><g id="icon-4096"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g><g id="icon-8192"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-16384"><rect fill="var(--color-icon-background)" stroke="#4D7FFF" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g><g id="icon-32768"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-65536"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g><g id="icon-131072"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g><g id="icon-262144"><rect fill="var(--color-icon-background)" stroke="#FF4D4D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M8.85 16L11.13 7.24H12.582L14.85 16H13.758L13.182 13.672H10.53L9.954 16H8.85ZM10.746 12.76H12.954L12.282 10.06C12.154 9.548 12.054 9.12 11.982 8.776C11.91 8.432 11.866 8.208 11.85 8.104C11.834 8.208 11.79 8.432 11.718 8.776C11.646 9.12 11.546 9.544 11.418 10.048L10.746 12.76Z" fill="var(--color-text)"></path></g><g id="icon-524288"><rect fill="var(--color-icon-background)" stroke="#FF4D4D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M8.85 16L11.13 7.24H12.582L14.85 16H13.758L13.182 13.672H10.53L9.954 16H8.85ZM10.746 12.76H12.954L12.282 10.06C12.154 9.548 12.054 9.12 11.982 8.776C11.91 8.432 11.866 8.208 11.85 8.104C11.834 8.208 11.79 8.432 11.718 8.776C11.646 9.12 11.546 9.544 11.418 10.048L10.746 12.76Z" fill="var(--color-text)"></path></g><g id="icon-1048576"><rect fill="var(--color-icon-background)" stroke="#FF4D4D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M8.85 16L11.13 7.24H12.582L14.85 16H13.758L13.182 13.672H10.53L9.954 16H8.85ZM10.746 12.76H12.954L12.282 10.06C12.154 9.548 12.054 9.12 11.982 8.776C11.91 8.432 11.866 8.208 11.85 8.104C11.834 8.208 11.79 8.432 11.718 8.776C11.646 9.12 11.546 9.544 11.418 10.048L10.746 12.76Z" fill="var(--color-text)"></path></g><g id="icon-2097152"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g><g id="icon-4194304"><rect fill="var(--color-icon-background)" stroke="#FF4D82" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M10.354 17V8.24H13.066C13.586 8.24 14.042 8.348 14.434 8.564C14.826 8.772 15.13 9.064 15.346 9.44C15.562 9.816 15.67 10.256 15.67 10.76C15.67 11.352 15.514 11.86 15.202 12.284C14.898 12.708 14.482 13 13.954 13.16L15.79 17H14.518L12.838 13.28H11.434V17H10.354ZM11.434 12.308H13.066C13.514 12.308 13.874 12.168 14.146 11.888C14.418 11.6 14.554 11.224 14.554 10.76C14.554 10.288 14.418 9.912 14.146 9.632C13.874 9.352 13.514 9.212 13.066 9.212H11.434V12.308Z" fill="var(--color-text)"></path></g><g id="icon-chevronDown"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></g><g id="icon-chevronSmall"><path d="M1.5 5.50969L8 11.6609L14.5 5.50969L12.5466 3.66086L8 7.96494L3.45341 3.66086L1.5 5.50969Z" fill="var(--color-text)"></path></g><g id="icon-menu"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></g><g id="icon-search"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></g><g id="icon-anchor"><g stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></g></g></svg></body></html>