@sync-in/server 1.11.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1040) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/LICENSE +1 -1
  3. package/README.md +3 -11
  4. package/environment/environment.dist.min.yaml +1 -1
  5. package/environment/environment.dist.yaml +173 -28
  6. package/package.json +17 -16
  7. package/server/app.bootstrap.js +1 -5
  8. package/server/app.bootstrap.js.map +1 -1
  9. package/server/app.constants.js +1 -5
  10. package/server/app.constants.js.map +1 -1
  11. package/server/app.e2e-spec.js +1 -5
  12. package/server/app.e2e-spec.js.map +1 -1
  13. package/server/app.functions.js +1 -5
  14. package/server/app.functions.js.map +1 -1
  15. package/server/app.module.js +1 -5
  16. package/server/app.module.js.map +1 -1
  17. package/server/app.service.js +1 -5
  18. package/server/app.service.js.map +1 -1
  19. package/server/app.service.spec.js +2 -6
  20. package/server/app.service.spec.js.map +1 -1
  21. package/server/applications/admin/admin.module.js +1 -5
  22. package/server/applications/admin/admin.module.js.map +1 -1
  23. package/server/applications/admin/constants/routes.js +1 -5
  24. package/server/applications/admin/constants/routes.js.map +1 -1
  25. package/server/applications/admin/interfaces/check-update.interfaces.js +1 -5
  26. package/server/applications/admin/interfaces/check-update.interfaces.js.map +1 -1
  27. package/server/applications/admin/services/admin-scheduler.service.js +1 -5
  28. package/server/applications/admin/services/admin-scheduler.service.js.map +1 -1
  29. package/server/applications/admin/services/admin.service.js +13 -8
  30. package/server/applications/admin/services/admin.service.js.map +1 -1
  31. package/server/applications/admin/services/admin.service.spec.js +1 -5
  32. package/server/applications/admin/services/admin.service.spec.js.map +1 -1
  33. package/server/applications/admin/utils/check-update.js +1 -5
  34. package/server/applications/admin/utils/check-update.js.map +1 -1
  35. package/server/applications/applications.config.js +1 -5
  36. package/server/applications/applications.config.js.map +1 -1
  37. package/server/applications/applications.constants.js +5 -5
  38. package/server/applications/applications.constants.js.map +1 -1
  39. package/server/applications/applications.module.js +1 -5
  40. package/server/applications/applications.module.js.map +1 -1
  41. package/server/applications/comments/comments.controller.js +1 -5
  42. package/server/applications/comments/comments.controller.js.map +1 -1
  43. package/server/applications/comments/comments.controller.spec.js +1 -5
  44. package/server/applications/comments/comments.controller.spec.js.map +1 -1
  45. package/server/applications/comments/comments.module.js +1 -5
  46. package/server/applications/comments/comments.module.js.map +1 -1
  47. package/server/applications/comments/constants/routes.js +1 -5
  48. package/server/applications/comments/constants/routes.js.map +1 -1
  49. package/server/applications/comments/dto/comment.dto.js +1 -5
  50. package/server/applications/comments/dto/comment.dto.js.map +1 -1
  51. package/server/applications/comments/interfaces/comment-recent.interface.js +1 -5
  52. package/server/applications/comments/interfaces/comment-recent.interface.js.map +1 -1
  53. package/server/applications/comments/schemas/comment.interface.js +1 -5
  54. package/server/applications/comments/schemas/comment.interface.js.map +1 -1
  55. package/server/applications/comments/schemas/comments.schema.js +1 -5
  56. package/server/applications/comments/schemas/comments.schema.js.map +1 -1
  57. package/server/applications/comments/services/comments-manager.service.js +9 -7
  58. package/server/applications/comments/services/comments-manager.service.js.map +1 -1
  59. package/server/applications/comments/services/comments-manager.service.spec.js +10 -8
  60. package/server/applications/comments/services/comments-manager.service.spec.js.map +1 -1
  61. package/server/applications/comments/services/comments-queries.service.js +1 -5
  62. package/server/applications/comments/services/comments-queries.service.js.map +1 -1
  63. package/server/applications/files/adapters/files-indexer-mysql.service.js +29 -12
  64. package/server/applications/files/adapters/files-indexer-mysql.service.js.map +1 -1
  65. package/server/applications/files/adapters/files-indexer-mysql.service.spec.js +1 -5
  66. package/server/applications/files/adapters/files-indexer-mysql.service.spec.js.map +1 -1
  67. package/server/applications/files/constants/cache.js +1 -5
  68. package/server/applications/files/constants/cache.js.map +1 -1
  69. package/server/applications/files/constants/compress.js +1 -5
  70. package/server/applications/files/constants/compress.js.map +1 -1
  71. package/server/applications/files/constants/files.js +1 -5
  72. package/server/applications/files/constants/files.js.map +1 -1
  73. package/server/applications/files/constants/indexing.js +1 -5
  74. package/server/applications/files/constants/indexing.js.map +1 -1
  75. package/server/applications/files/constants/operations.js +1 -5
  76. package/server/applications/files/constants/operations.js.map +1 -1
  77. package/server/applications/files/constants/routes.js +1 -5
  78. package/server/applications/files/constants/routes.js.map +1 -1
  79. package/server/applications/files/constants/samples.js +1 -5
  80. package/server/applications/files/constants/samples.js.map +1 -1
  81. package/server/applications/files/dto/file-operations.dto.js +1 -5
  82. package/server/applications/files/dto/file-operations.dto.js.map +1 -1
  83. package/server/applications/files/events/file-task-event.js +1 -5
  84. package/server/applications/files/events/file-task-event.js.map +1 -1
  85. package/server/applications/files/files-tasks.controller.js +1 -5
  86. package/server/applications/files/files-tasks.controller.js.map +1 -1
  87. package/server/applications/files/files-tasks.controller.spec.js +1 -5
  88. package/server/applications/files/files-tasks.controller.spec.js.map +1 -1
  89. package/server/applications/files/files.config.js +1 -5
  90. package/server/applications/files/files.config.js.map +1 -1
  91. package/server/applications/files/files.controller.js +1 -5
  92. package/server/applications/files/files.controller.js.map +1 -1
  93. package/server/applications/files/files.controller.spec.js +1 -5
  94. package/server/applications/files/files.controller.spec.js.map +1 -1
  95. package/server/applications/files/files.module.js +1 -5
  96. package/server/applications/files/files.module.js.map +1 -1
  97. package/server/applications/files/interfaces/file-db-props.interface.js +1 -5
  98. package/server/applications/files/interfaces/file-db-props.interface.js.map +1 -1
  99. package/server/applications/files/interfaces/file-lock.interface.js +1 -5
  100. package/server/applications/files/interfaces/file-lock.interface.js.map +1 -1
  101. package/server/applications/files/interfaces/file-parse-index.js +1 -5
  102. package/server/applications/files/interfaces/file-parse-index.js.map +1 -1
  103. package/server/applications/files/interfaces/file-props.interface.js +1 -5
  104. package/server/applications/files/interfaces/file-props.interface.js.map +1 -1
  105. package/server/applications/files/interfaces/file-recent-location.interface.js +1 -5
  106. package/server/applications/files/interfaces/file-recent-location.interface.js.map +1 -1
  107. package/server/applications/files/interfaces/file-space.interface.js +1 -5
  108. package/server/applications/files/interfaces/file-space.interface.js.map +1 -1
  109. package/server/applications/files/interfaces/file-tree.interface.js +1 -5
  110. package/server/applications/files/interfaces/file-tree.interface.js.map +1 -1
  111. package/server/applications/files/models/file-error.js +1 -5
  112. package/server/applications/files/models/file-error.js.map +1 -1
  113. package/server/applications/files/models/file-lock-error.js +1 -5
  114. package/server/applications/files/models/file-lock-error.js.map +1 -1
  115. package/server/applications/files/models/file-task.js +1 -5
  116. package/server/applications/files/models/file-task.js.map +1 -1
  117. package/server/applications/files/models/files-indexer.js +1 -5
  118. package/server/applications/files/models/files-indexer.js.map +1 -1
  119. package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js +1 -5
  120. package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js.map +1 -1
  121. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js +21 -10
  122. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js.map +1 -1
  123. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js +1 -5
  124. package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js.map +1 -1
  125. package/server/applications/files/modules/collabora-online/collabora-online.config.js +1 -5
  126. package/server/applications/files/modules/collabora-online/collabora-online.config.js.map +1 -1
  127. package/server/applications/files/modules/collabora-online/collabora-online.constants.js +1 -5
  128. package/server/applications/files/modules/collabora-online/collabora-online.constants.js.map +1 -1
  129. package/server/applications/files/modules/collabora-online/collabora-online.controller.js +1 -5
  130. package/server/applications/files/modules/collabora-online/collabora-online.controller.js.map +1 -1
  131. package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js +1 -5
  132. package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js.map +1 -1
  133. package/server/applications/files/modules/collabora-online/collabora-online.dtos.js +1 -5
  134. package/server/applications/files/modules/collabora-online/collabora-online.dtos.js.map +1 -1
  135. package/server/applications/files/modules/collabora-online/collabora-online.guard.js +1 -5
  136. package/server/applications/files/modules/collabora-online/collabora-online.guard.js.map +1 -1
  137. package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js +1 -5
  138. package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js.map +1 -1
  139. package/server/applications/files/modules/collabora-online/collabora-online.interface.js +1 -5
  140. package/server/applications/files/modules/collabora-online/collabora-online.interface.js.map +1 -1
  141. package/server/applications/files/modules/collabora-online/collabora-online.module.js +1 -5
  142. package/server/applications/files/modules/collabora-online/collabora-online.module.js.map +1 -1
  143. package/server/applications/files/modules/collabora-online/collabora-online.routes.js +1 -5
  144. package/server/applications/files/modules/collabora-online/collabora-online.routes.js.map +1 -1
  145. package/server/applications/files/modules/collabora-online/collabora-online.strategy.js +1 -5
  146. package/server/applications/files/modules/collabora-online/collabora-online.strategy.js.map +1 -1
  147. package/server/applications/files/modules/collabora-online/collabora-online.utils.js +1 -5
  148. package/server/applications/files/modules/collabora-online/collabora-online.utils.js.map +1 -1
  149. package/server/applications/files/modules/file-editor-providers.interface.js +6 -0
  150. package/server/applications/files/modules/file-editor-providers.interface.js.map +1 -0
  151. package/server/applications/files/modules/only-office/only-office-environment.decorator.js +1 -5
  152. package/server/applications/files/modules/only-office/only-office-environment.decorator.js.map +1 -1
  153. package/server/applications/files/modules/only-office/only-office-manager.service.js +57 -19
  154. package/server/applications/files/modules/only-office/only-office-manager.service.js.map +1 -1
  155. package/server/applications/files/modules/only-office/only-office-manager.service.spec.js +1 -5
  156. package/server/applications/files/modules/only-office/only-office-manager.service.spec.js.map +1 -1
  157. package/server/applications/files/modules/only-office/only-office.config.js +1 -5
  158. package/server/applications/files/modules/only-office/only-office.config.js.map +1 -1
  159. package/server/applications/files/modules/only-office/only-office.constants.js +1 -5
  160. package/server/applications/files/modules/only-office/only-office.constants.js.map +1 -1
  161. package/server/applications/files/modules/only-office/only-office.controller.js +1 -5
  162. package/server/applications/files/modules/only-office/only-office.controller.js.map +1 -1
  163. package/server/applications/files/modules/only-office/only-office.controller.spec.js +1 -5
  164. package/server/applications/files/modules/only-office/only-office.controller.spec.js.map +1 -1
  165. package/server/applications/files/modules/only-office/only-office.dtos.js +1 -5
  166. package/server/applications/files/modules/only-office/only-office.dtos.js.map +1 -1
  167. package/server/applications/files/modules/only-office/only-office.guard.js +1 -5
  168. package/server/applications/files/modules/only-office/only-office.guard.js.map +1 -1
  169. package/server/applications/files/modules/only-office/only-office.guard.spec.js +1 -5
  170. package/server/applications/files/modules/only-office/only-office.guard.spec.js.map +1 -1
  171. package/server/applications/files/modules/only-office/only-office.interface.js +1 -5
  172. package/server/applications/files/modules/only-office/only-office.interface.js.map +1 -1
  173. package/server/applications/files/modules/only-office/only-office.module.js +1 -5
  174. package/server/applications/files/modules/only-office/only-office.module.js.map +1 -1
  175. package/server/applications/files/modules/only-office/only-office.routes.js +1 -5
  176. package/server/applications/files/modules/only-office/only-office.routes.js.map +1 -1
  177. package/server/applications/files/modules/only-office/only-office.strategy.js +1 -5
  178. package/server/applications/files/modules/only-office/only-office.strategy.js.map +1 -1
  179. package/server/applications/files/schemas/file-content.interface.js +1 -5
  180. package/server/applications/files/schemas/file-content.interface.js.map +1 -1
  181. package/server/applications/files/schemas/file-recent.interface.js +1 -5
  182. package/server/applications/files/schemas/file-recent.interface.js.map +1 -1
  183. package/server/applications/files/schemas/file.interface.js +1 -5
  184. package/server/applications/files/schemas/file.interface.js.map +1 -1
  185. package/server/applications/files/schemas/files-content.schema.js +1 -5
  186. package/server/applications/files/schemas/files-content.schema.js.map +1 -1
  187. package/server/applications/files/schemas/files-recents.schema.js +1 -5
  188. package/server/applications/files/schemas/files-recents.schema.js.map +1 -1
  189. package/server/applications/files/schemas/files.schema.js +1 -5
  190. package/server/applications/files/schemas/files.schema.js.map +1 -1
  191. package/server/applications/files/services/files-content-manager.service.js +45 -16
  192. package/server/applications/files/services/files-content-manager.service.js.map +1 -1
  193. package/server/applications/files/services/files-lock-manager.service.js +53 -18
  194. package/server/applications/files/services/files-lock-manager.service.js.map +1 -1
  195. package/server/applications/files/services/files-lock-manager.service.spec.js +1 -5
  196. package/server/applications/files/services/files-lock-manager.service.spec.js.map +1 -1
  197. package/server/applications/files/services/files-manager.service.js +77 -24
  198. package/server/applications/files/services/files-manager.service.js.map +1 -1
  199. package/server/applications/files/services/files-manager.service.spec.js +1 -5
  200. package/server/applications/files/services/files-manager.service.spec.js.map +1 -1
  201. package/server/applications/files/services/files-methods.service.js +5 -6
  202. package/server/applications/files/services/files-methods.service.js.map +1 -1
  203. package/server/applications/files/services/files-methods.service.spec.js +1 -5
  204. package/server/applications/files/services/files-methods.service.spec.js.map +1 -1
  205. package/server/applications/files/services/files-parser.service.js +13 -8
  206. package/server/applications/files/services/files-parser.service.js.map +1 -1
  207. package/server/applications/files/services/files-parser.service.spec.js +1 -5
  208. package/server/applications/files/services/files-parser.service.spec.js.map +1 -1
  209. package/server/applications/files/services/files-queries.service.js +29 -12
  210. package/server/applications/files/services/files-queries.service.js.map +1 -1
  211. package/server/applications/files/services/files-recents.service.js +1 -5
  212. package/server/applications/files/services/files-recents.service.js.map +1 -1
  213. package/server/applications/files/services/files-recents.service.spec.js +1 -5
  214. package/server/applications/files/services/files-recents.service.spec.js.map +1 -1
  215. package/server/applications/files/services/files-scheduler.service.js +77 -24
  216. package/server/applications/files/services/files-scheduler.service.js.map +1 -1
  217. package/server/applications/files/services/files-search-manager.service.js +9 -7
  218. package/server/applications/files/services/files-search-manager.service.js.map +1 -1
  219. package/server/applications/files/services/files-search-manager.service.spec.js +1 -5
  220. package/server/applications/files/services/files-search-manager.service.spec.js.map +1 -1
  221. package/server/applications/files/services/files-tasks-manager.service.js +77 -24
  222. package/server/applications/files/services/files-tasks-manager.service.js.map +1 -1
  223. package/server/applications/files/services/files-tasks-manager.service.spec.js +1 -5
  224. package/server/applications/files/services/files-tasks-manager.service.spec.js.map +1 -1
  225. package/server/applications/files/utils/doc-textify/adapters/excel.js +1 -5
  226. package/server/applications/files/utils/doc-textify/adapters/excel.js.map +1 -1
  227. package/server/applications/files/utils/doc-textify/adapters/html.js +1 -5
  228. package/server/applications/files/utils/doc-textify/adapters/html.js.map +1 -1
  229. package/server/applications/files/utils/doc-textify/adapters/open-office.js +1 -5
  230. package/server/applications/files/utils/doc-textify/adapters/open-office.js.map +1 -1
  231. package/server/applications/files/utils/doc-textify/adapters/pdf.js +1 -5
  232. package/server/applications/files/utils/doc-textify/adapters/pdf.js.map +1 -1
  233. package/server/applications/files/utils/doc-textify/adapters/power-point.js +1 -5
  234. package/server/applications/files/utils/doc-textify/adapters/power-point.js.map +1 -1
  235. package/server/applications/files/utils/doc-textify/adapters/text.js +1 -5
  236. package/server/applications/files/utils/doc-textify/adapters/text.js.map +1 -1
  237. package/server/applications/files/utils/doc-textify/adapters/word.js +1 -5
  238. package/server/applications/files/utils/doc-textify/adapters/word.js.map +1 -1
  239. package/server/applications/files/utils/doc-textify/doc-textify.js +1 -5
  240. package/server/applications/files/utils/doc-textify/doc-textify.js.map +1 -1
  241. package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js +1 -5
  242. package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js.map +1 -1
  243. package/server/applications/files/utils/doc-textify/utils/clean.js +1 -5
  244. package/server/applications/files/utils/doc-textify/utils/clean.js.map +1 -1
  245. package/server/applications/files/utils/files-search.js +1 -5
  246. package/server/applications/files/utils/files-search.js.map +1 -1
  247. package/server/applications/files/utils/files-tree.js +1 -5
  248. package/server/applications/files/utils/files-tree.js.map +1 -1
  249. package/server/applications/files/utils/files.js +1 -5
  250. package/server/applications/files/utils/files.js.map +1 -1
  251. package/server/applications/files/utils/send-file.js +1 -5
  252. package/server/applications/files/utils/send-file.js.map +1 -1
  253. package/server/applications/files/utils/unzip-file.js +1 -5
  254. package/server/applications/files/utils/unzip-file.js.map +1 -1
  255. package/server/applications/files/utils/url-file.js +1 -5
  256. package/server/applications/files/utils/url-file.js.map +1 -1
  257. package/server/applications/links/constants/cache.js +1 -5
  258. package/server/applications/links/constants/cache.js.map +1 -1
  259. package/server/applications/links/constants/links.js +1 -5
  260. package/server/applications/links/constants/links.js.map +1 -1
  261. package/server/applications/links/constants/routes.js +1 -5
  262. package/server/applications/links/constants/routes.js.map +1 -1
  263. package/server/applications/links/dto/create-or-update-link.dto.js +1 -5
  264. package/server/applications/links/dto/create-or-update-link.dto.js.map +1 -1
  265. package/server/applications/links/interfaces/link-guest.interface.js +1 -5
  266. package/server/applications/links/interfaces/link-guest.interface.js.map +1 -1
  267. package/server/applications/links/interfaces/link-space.interface.js +1 -5
  268. package/server/applications/links/interfaces/link-space.interface.js.map +1 -1
  269. package/server/applications/links/links.controller.js +1 -5
  270. package/server/applications/links/links.controller.js.map +1 -1
  271. package/server/applications/links/links.controller.spec.js +1 -5
  272. package/server/applications/links/links.controller.spec.js.map +1 -1
  273. package/server/applications/links/schemas/link.interface.js +1 -5
  274. package/server/applications/links/schemas/link.interface.js.map +1 -1
  275. package/server/applications/links/schemas/links.schema.js +1 -5
  276. package/server/applications/links/schemas/links.schema.js.map +1 -1
  277. package/server/applications/links/services/links-manager.service.js +55 -20
  278. package/server/applications/links/services/links-manager.service.js.map +1 -1
  279. package/server/applications/links/services/links-manager.service.spec.js +3 -7
  280. package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
  281. package/server/applications/links/services/links-queries.service.js +1 -5
  282. package/server/applications/links/services/links-queries.service.js.map +1 -1
  283. package/server/applications/notifications/constants/notifications.js +1 -5
  284. package/server/applications/notifications/constants/notifications.js.map +1 -1
  285. package/server/applications/notifications/constants/routes.js +1 -5
  286. package/server/applications/notifications/constants/routes.js.map +1 -1
  287. package/server/applications/notifications/constants/websocket.js +1 -5
  288. package/server/applications/notifications/constants/websocket.js.map +1 -1
  289. package/server/applications/notifications/i18n/de.js +1 -9
  290. package/server/applications/notifications/i18n/de.js.map +1 -1
  291. package/server/applications/notifications/i18n/es.js +1 -5
  292. package/server/applications/notifications/i18n/es.js.map +1 -1
  293. package/server/applications/notifications/i18n/fr.js +1 -5
  294. package/server/applications/notifications/i18n/fr.js.map +1 -1
  295. package/server/applications/notifications/i18n/hi.js +1 -5
  296. package/server/applications/notifications/i18n/hi.js.map +1 -1
  297. package/server/applications/notifications/i18n/index.js +1 -5
  298. package/server/applications/notifications/i18n/index.js.map +1 -1
  299. package/server/applications/notifications/i18n/it.js +1 -5
  300. package/server/applications/notifications/i18n/it.js.map +1 -1
  301. package/server/applications/notifications/i18n/ja.js +1 -5
  302. package/server/applications/notifications/i18n/ja.js.map +1 -1
  303. package/server/applications/notifications/i18n/ko.js +1 -5
  304. package/server/applications/notifications/i18n/ko.js.map +1 -1
  305. package/server/applications/notifications/i18n/pl.js +1 -5
  306. package/server/applications/notifications/i18n/pl.js.map +1 -1
  307. package/server/applications/notifications/i18n/pt.js +1 -5
  308. package/server/applications/notifications/i18n/pt.js.map +1 -1
  309. package/server/applications/notifications/i18n/pt_br.js +1 -5
  310. package/server/applications/notifications/i18n/pt_br.js.map +1 -1
  311. package/server/applications/notifications/i18n/ru.js +1 -5
  312. package/server/applications/notifications/i18n/ru.js.map +1 -1
  313. package/server/applications/notifications/i18n/tr.js +1 -5
  314. package/server/applications/notifications/i18n/tr.js.map +1 -1
  315. package/server/applications/notifications/i18n/zh.js +1 -5
  316. package/server/applications/notifications/i18n/zh.js.map +1 -1
  317. package/server/applications/notifications/interfaces/notification-properties.interface.js +1 -5
  318. package/server/applications/notifications/interfaces/notification-properties.interface.js.map +1 -1
  319. package/server/applications/notifications/interfaces/user-mail-notification.interface.js +1 -5
  320. package/server/applications/notifications/interfaces/user-mail-notification.interface.js.map +1 -1
  321. package/server/applications/notifications/mails/models.js +1 -5
  322. package/server/applications/notifications/mails/models.js.map +1 -1
  323. package/server/applications/notifications/mails/templates.js +1 -5
  324. package/server/applications/notifications/mails/templates.js.map +1 -1
  325. package/server/applications/notifications/mails/urls.js +1 -5
  326. package/server/applications/notifications/mails/urls.js.map +1 -1
  327. package/server/applications/notifications/notifications.controller.js +1 -5
  328. package/server/applications/notifications/notifications.controller.js.map +1 -1
  329. package/server/applications/notifications/notifications.controller.spec.js +1 -5
  330. package/server/applications/notifications/notifications.controller.spec.js.map +1 -1
  331. package/server/applications/notifications/notifications.gateway.js +1 -5
  332. package/server/applications/notifications/notifications.gateway.js.map +1 -1
  333. package/server/applications/notifications/notifications.module.js +1 -5
  334. package/server/applications/notifications/notifications.module.js.map +1 -1
  335. package/server/applications/notifications/schemas/notification.interface.js +1 -5
  336. package/server/applications/notifications/schemas/notification.interface.js.map +1 -1
  337. package/server/applications/notifications/schemas/notifications.schema.js +1 -5
  338. package/server/applications/notifications/schemas/notifications.schema.js.map +1 -1
  339. package/server/applications/notifications/services/notifications-manager.service.js +25 -11
  340. package/server/applications/notifications/services/notifications-manager.service.js.map +1 -1
  341. package/server/applications/notifications/services/notifications-manager.service.spec.js +20 -11
  342. package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -1
  343. package/server/applications/notifications/services/notifications-queries.service.js +1 -5
  344. package/server/applications/notifications/services/notifications-queries.service.js.map +1 -1
  345. package/server/applications/shares/constants/routes.js +1 -5
  346. package/server/applications/shares/constants/routes.js.map +1 -1
  347. package/server/applications/shares/constants/shares.js +1 -5
  348. package/server/applications/shares/constants/shares.js.map +1 -1
  349. package/server/applications/shares/dto/create-or-update-share.dto.js +1 -5
  350. package/server/applications/shares/dto/create-or-update-share.dto.js.map +1 -1
  351. package/server/applications/shares/interfaces/share-child.interface.js +1 -5
  352. package/server/applications/shares/interfaces/share-child.interface.js.map +1 -1
  353. package/server/applications/shares/interfaces/share-env.interface.js +1 -5
  354. package/server/applications/shares/interfaces/share-env.interface.js.map +1 -1
  355. package/server/applications/shares/interfaces/share-file.interface.js +1 -5
  356. package/server/applications/shares/interfaces/share-file.interface.js.map +1 -1
  357. package/server/applications/shares/interfaces/share-link.interface.js +1 -5
  358. package/server/applications/shares/interfaces/share-link.interface.js.map +1 -1
  359. package/server/applications/shares/interfaces/share-props.interface.js +1 -5
  360. package/server/applications/shares/interfaces/share-props.interface.js.map +1 -1
  361. package/server/applications/shares/models/share-child.model.js +1 -5
  362. package/server/applications/shares/models/share-child.model.js.map +1 -1
  363. package/server/applications/shares/schemas/share-members.interface.js +1 -5
  364. package/server/applications/shares/schemas/share-members.interface.js.map +1 -1
  365. package/server/applications/shares/schemas/share.interface.js +1 -5
  366. package/server/applications/shares/schemas/share.interface.js.map +1 -1
  367. package/server/applications/shares/schemas/shares-members.schema.js +1 -5
  368. package/server/applications/shares/schemas/shares-members.schema.js.map +1 -1
  369. package/server/applications/shares/schemas/shares.schema.js +1 -5
  370. package/server/applications/shares/schemas/shares.schema.js.map +1 -1
  371. package/server/applications/shares/services/shares-manager.service.js +214 -68
  372. package/server/applications/shares/services/shares-manager.service.js.map +1 -1
  373. package/server/applications/shares/services/shares-manager.service.spec.js +1 -5
  374. package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -1
  375. package/server/applications/shares/services/shares-queries.service.js +49 -17
  376. package/server/applications/shares/services/shares-queries.service.js.map +1 -1
  377. package/server/applications/shares/shares.controller.js +1 -5
  378. package/server/applications/shares/shares.controller.js.map +1 -1
  379. package/server/applications/shares/shares.controller.spec.js +1 -5
  380. package/server/applications/shares/shares.controller.spec.js.map +1 -1
  381. package/server/applications/shares/shares.module.js +1 -5
  382. package/server/applications/shares/shares.module.js.map +1 -1
  383. package/server/applications/spaces/constants/cache.js +1 -5
  384. package/server/applications/spaces/constants/cache.js.map +1 -1
  385. package/server/applications/spaces/constants/routes.js +1 -5
  386. package/server/applications/spaces/constants/routes.js.map +1 -1
  387. package/server/applications/spaces/constants/spaces.js +1 -5
  388. package/server/applications/spaces/constants/spaces.js.map +1 -1
  389. package/server/applications/spaces/decorators/space-override-permission.decorator.js +1 -5
  390. package/server/applications/spaces/decorators/space-override-permission.decorator.js.map +1 -1
  391. package/server/applications/spaces/decorators/space-skip-guard.decorator.js +1 -5
  392. package/server/applications/spaces/decorators/space-skip-guard.decorator.js.map +1 -1
  393. package/server/applications/spaces/decorators/space-skip-permissions.decorator.js +1 -5
  394. package/server/applications/spaces/decorators/space-skip-permissions.decorator.js.map +1 -1
  395. package/server/applications/spaces/decorators/space.decorator.js +1 -5
  396. package/server/applications/spaces/decorators/space.decorator.js.map +1 -1
  397. package/server/applications/spaces/dto/create-or-update-space.dto.js +1 -5
  398. package/server/applications/spaces/dto/create-or-update-space.dto.js.map +1 -1
  399. package/server/applications/spaces/dto/delete-space.dto.js +1 -5
  400. package/server/applications/spaces/dto/delete-space.dto.js.map +1 -1
  401. package/server/applications/spaces/dto/search-space.dto.js +1 -5
  402. package/server/applications/spaces/dto/search-space.dto.js.map +1 -1
  403. package/server/applications/spaces/dto/space-roots.dto.js +1 -5
  404. package/server/applications/spaces/dto/space-roots.dto.js.map +1 -1
  405. package/server/applications/spaces/guards/space.guard.js +17 -9
  406. package/server/applications/spaces/guards/space.guard.js.map +1 -1
  407. package/server/applications/spaces/guards/space.guard.spec.js +1 -5
  408. package/server/applications/spaces/guards/space.guard.spec.js.map +1 -1
  409. package/server/applications/spaces/interfaces/space-diff.interface.js +1 -5
  410. package/server/applications/spaces/interfaces/space-diff.interface.js.map +1 -1
  411. package/server/applications/spaces/interfaces/space-files.interface.js +1 -5
  412. package/server/applications/spaces/interfaces/space-files.interface.js.map +1 -1
  413. package/server/applications/spaces/interfaces/space-request.interface.js +1 -5
  414. package/server/applications/spaces/interfaces/space-request.interface.js.map +1 -1
  415. package/server/applications/spaces/interfaces/space-trash.interface.js +1 -5
  416. package/server/applications/spaces/interfaces/space-trash.interface.js.map +1 -1
  417. package/server/applications/spaces/models/space-env.model.js +1 -5
  418. package/server/applications/spaces/models/space-env.model.js.map +1 -1
  419. package/server/applications/spaces/models/space-props.model.js +1 -5
  420. package/server/applications/spaces/models/space-props.model.js.map +1 -1
  421. package/server/applications/spaces/models/space-root-props.model.js +1 -5
  422. package/server/applications/spaces/models/space-root-props.model.js.map +1 -1
  423. package/server/applications/spaces/models/space.model.js +1 -5
  424. package/server/applications/spaces/models/space.model.js.map +1 -1
  425. package/server/applications/spaces/schemas/space-members.interface.js +1 -5
  426. package/server/applications/spaces/schemas/space-members.interface.js.map +1 -1
  427. package/server/applications/spaces/schemas/space-root.interface.js +1 -5
  428. package/server/applications/spaces/schemas/space-root.interface.js.map +1 -1
  429. package/server/applications/spaces/schemas/space.interface.js +1 -5
  430. package/server/applications/spaces/schemas/space.interface.js.map +1 -1
  431. package/server/applications/spaces/schemas/spaces-members.schema.js +1 -5
  432. package/server/applications/spaces/schemas/spaces-members.schema.js.map +1 -1
  433. package/server/applications/spaces/schemas/spaces-roots.schema.js +1 -5
  434. package/server/applications/spaces/schemas/spaces-roots.schema.js.map +1 -1
  435. package/server/applications/spaces/schemas/spaces.schema.js +1 -5
  436. package/server/applications/spaces/schemas/spaces.schema.js.map +1 -1
  437. package/server/applications/spaces/services/spaces-browser.service.js +77 -24
  438. package/server/applications/spaces/services/spaces-browser.service.js.map +1 -1
  439. package/server/applications/spaces/services/spaces-browser.service.spec.js +1 -5
  440. package/server/applications/spaces/services/spaces-browser.service.spec.js.map +1 -1
  441. package/server/applications/spaces/services/spaces-manager.service.js +193 -53
  442. package/server/applications/spaces/services/spaces-manager.service.js.map +1 -1
  443. package/server/applications/spaces/services/spaces-manager.service.spec.js +1 -5
  444. package/server/applications/spaces/services/spaces-manager.service.spec.js.map +1 -1
  445. package/server/applications/spaces/services/spaces-queries.service.js +65 -21
  446. package/server/applications/spaces/services/spaces-queries.service.js.map +1 -1
  447. package/server/applications/spaces/services/spaces-scheduler.service.js +49 -17
  448. package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -1
  449. package/server/applications/spaces/spaces.controller.js +1 -5
  450. package/server/applications/spaces/spaces.controller.js.map +1 -1
  451. package/server/applications/spaces/spaces.controller.spec.js +1 -5
  452. package/server/applications/spaces/spaces.controller.spec.js.map +1 -1
  453. package/server/applications/spaces/spaces.module.js +1 -5
  454. package/server/applications/spaces/spaces.module.js.map +1 -1
  455. package/server/applications/spaces/utils/paths.js +1 -5
  456. package/server/applications/spaces/utils/paths.js.map +1 -1
  457. package/server/applications/spaces/utils/permissions.js +1 -5
  458. package/server/applications/spaces/utils/permissions.js.map +1 -1
  459. package/server/applications/spaces/utils/routes.js +1 -5
  460. package/server/applications/spaces/utils/routes.js.map +1 -1
  461. package/server/applications/sync/constants/auth.js +1 -5
  462. package/server/applications/sync/constants/auth.js.map +1 -1
  463. package/server/applications/sync/constants/routes.js +6 -5
  464. package/server/applications/sync/constants/routes.js.map +1 -1
  465. package/server/applications/sync/constants/store.js +1 -9
  466. package/server/applications/sync/constants/store.js.map +1 -1
  467. package/server/applications/sync/constants/sync.js +2 -6
  468. package/server/applications/sync/constants/sync.js.map +1 -1
  469. package/server/applications/sync/decorators/sync-context.decorator.js +1 -5
  470. package/server/applications/sync/decorators/sync-context.decorator.js.map +1 -1
  471. package/server/applications/sync/decorators/sync-environment.decorator.js +1 -5
  472. package/server/applications/sync/decorators/sync-environment.decorator.js.map +1 -1
  473. package/server/applications/sync/dtos/sync-client-auth.dto.js +12 -8
  474. package/server/applications/sync/dtos/sync-client-auth.dto.js.map +1 -1
  475. package/server/applications/sync/dtos/sync-client-info.dto.js +49 -0
  476. package/server/applications/sync/dtos/sync-client-info.dto.js.map +1 -0
  477. package/server/applications/sync/dtos/sync-client-registration.dto.js +34 -11
  478. package/server/applications/sync/dtos/sync-client-registration.dto.js.map +1 -1
  479. package/server/applications/sync/dtos/sync-operations.dto.js +1 -5
  480. package/server/applications/sync/dtos/sync-operations.dto.js.map +1 -1
  481. package/server/applications/sync/dtos/sync-path.dto.js +1 -5
  482. package/server/applications/sync/dtos/sync-path.dto.js.map +1 -1
  483. package/server/applications/sync/dtos/sync-upload.dto.js +1 -5
  484. package/server/applications/sync/dtos/sync-upload.dto.js.map +1 -1
  485. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js +1 -5
  486. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js.map +1 -1
  487. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.spec.js +1 -5
  488. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.spec.js.map +1 -1
  489. package/server/applications/sync/interfaces/store-manifest.interface.js +1 -5
  490. package/server/applications/sync/interfaces/store-manifest.interface.js.map +1 -1
  491. package/server/applications/sync/interfaces/sync-client-auth.interface.js +1 -25
  492. package/server/applications/sync/interfaces/sync-client-auth.interface.js.map +1 -1
  493. package/server/applications/sync/interfaces/sync-client-paths.interface.js +1 -5
  494. package/server/applications/sync/interfaces/sync-client-paths.interface.js.map +1 -1
  495. package/server/applications/sync/interfaces/sync-client.interface.js +1 -5
  496. package/server/applications/sync/interfaces/sync-client.interface.js.map +1 -1
  497. package/server/applications/sync/interfaces/sync-diff.interface.js +1 -5
  498. package/server/applications/sync/interfaces/sync-diff.interface.js.map +1 -1
  499. package/server/applications/sync/interfaces/sync-path.interface.js +1 -5
  500. package/server/applications/sync/interfaces/sync-path.interface.js.map +1 -1
  501. package/server/applications/sync/schemas/sync-client.interface.js +1 -5
  502. package/server/applications/sync/schemas/sync-client.interface.js.map +1 -1
  503. package/server/applications/sync/schemas/sync-clients.schema.js +1 -5
  504. package/server/applications/sync/schemas/sync-clients.schema.js.map +1 -1
  505. package/server/applications/sync/schemas/sync-path.interface.js +1 -5
  506. package/server/applications/sync/schemas/sync-path.interface.js.map +1 -1
  507. package/server/applications/sync/schemas/sync-paths.schema.js +1 -5
  508. package/server/applications/sync/schemas/sync-paths.schema.js.map +1 -1
  509. package/server/applications/sync/services/sync-clients-manager.service.js +108 -44
  510. package/server/applications/sync/services/sync-clients-manager.service.js.map +1 -1
  511. package/server/applications/sync/services/sync-clients-manager.service.spec.js +14 -17
  512. package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -1
  513. package/server/applications/sync/services/sync-manager.service.js +29 -12
  514. package/server/applications/sync/services/sync-manager.service.js.map +1 -1
  515. package/server/applications/sync/services/sync-manager.service.spec.js +1 -5
  516. package/server/applications/sync/services/sync-manager.service.spec.js.map +1 -1
  517. package/server/applications/sync/services/sync-paths-manager.service.js +27 -17
  518. package/server/applications/sync/services/sync-paths-manager.service.js.map +1 -1
  519. package/server/applications/sync/services/sync-paths-manager.service.spec.js +11 -15
  520. package/server/applications/sync/services/sync-paths-manager.service.spec.js.map +1 -1
  521. package/server/applications/sync/services/sync-queries.service.js +1 -5
  522. package/server/applications/sync/services/sync-queries.service.js.map +1 -1
  523. package/server/applications/sync/sync.config.js +1 -5
  524. package/server/applications/sync/sync.config.js.map +1 -1
  525. package/server/applications/sync/sync.controller.js +21 -6
  526. package/server/applications/sync/sync.controller.js.map +1 -1
  527. package/server/applications/sync/sync.controller.spec.js +1 -5
  528. package/server/applications/sync/sync.controller.spec.js.map +1 -1
  529. package/server/applications/sync/sync.module.js +1 -5
  530. package/server/applications/sync/sync.module.js.map +1 -1
  531. package/server/applications/sync/utils/functions.js +1 -5
  532. package/server/applications/sync/utils/functions.js.map +1 -1
  533. package/server/applications/sync/utils/normalizedMap.js +1 -5
  534. package/server/applications/sync/utils/normalizedMap.js.map +1 -1
  535. package/server/applications/sync/utils/routes.js +1 -5
  536. package/server/applications/sync/utils/routes.js.map +1 -1
  537. package/server/applications/users/admin-users.controller.js +2 -6
  538. package/server/applications/users/admin-users.controller.js.map +1 -1
  539. package/server/applications/users/admin-users.controller.spec.js +6 -10
  540. package/server/applications/users/admin-users.controller.spec.js.map +1 -1
  541. package/server/applications/users/constants/group.js +1 -5
  542. package/server/applications/users/constants/group.js.map +1 -1
  543. package/server/applications/users/constants/member.js +1 -5
  544. package/server/applications/users/constants/member.js.map +1 -1
  545. package/server/applications/users/constants/routes.js +1 -5
  546. package/server/applications/users/constants/routes.js.map +1 -1
  547. package/server/applications/users/constants/user.js +1 -5
  548. package/server/applications/users/constants/user.js.map +1 -1
  549. package/server/applications/users/constants/websocket.js +1 -5
  550. package/server/applications/users/constants/websocket.js.map +1 -1
  551. package/server/applications/users/decorators/permissions.decorator.js +1 -5
  552. package/server/applications/users/decorators/permissions.decorator.js.map +1 -1
  553. package/server/applications/users/decorators/roles.decorator.js +1 -5
  554. package/server/applications/users/decorators/roles.decorator.js.map +1 -1
  555. package/server/applications/users/decorators/user.decorator.js +1 -5
  556. package/server/applications/users/decorators/user.decorator.js.map +1 -1
  557. package/server/applications/users/dto/create-or-update-group.dto.js +1 -5
  558. package/server/applications/users/dto/create-or-update-group.dto.js.map +1 -1
  559. package/server/applications/users/dto/create-or-update-user.dto.js +1 -5
  560. package/server/applications/users/dto/create-or-update-user.dto.js.map +1 -1
  561. package/server/applications/users/dto/delete-user.dto.js +1 -5
  562. package/server/applications/users/dto/delete-user.dto.js.map +1 -1
  563. package/server/applications/users/dto/search-members.dto.js +1 -5
  564. package/server/applications/users/dto/search-members.dto.js.map +1 -1
  565. package/server/applications/users/dto/user-properties.dto.js +1 -5
  566. package/server/applications/users/dto/user-properties.dto.js.map +1 -1
  567. package/server/applications/users/guards/permissions.guard.js +1 -5
  568. package/server/applications/users/guards/permissions.guard.js.map +1 -1
  569. package/server/applications/users/guards/permissions.guard.spec.js +1 -5
  570. package/server/applications/users/guards/permissions.guard.spec.js.map +1 -1
  571. package/server/applications/users/guards/roles.guard.js +1 -5
  572. package/server/applications/users/guards/roles.guard.js.map +1 -1
  573. package/server/applications/users/guards/roles.guard.spec.js +1 -5
  574. package/server/applications/users/guards/roles.guard.spec.js.map +1 -1
  575. package/server/applications/users/interfaces/admin-group.interface.js +1 -5
  576. package/server/applications/users/interfaces/admin-group.interface.js.map +1 -1
  577. package/server/applications/users/interfaces/admin-user.interface.js +1 -5
  578. package/server/applications/users/interfaces/admin-user.interface.js.map +1 -1
  579. package/server/applications/users/interfaces/group-browse.interface.js +1 -5
  580. package/server/applications/users/interfaces/group-browse.interface.js.map +1 -1
  581. package/server/applications/users/interfaces/group-member.js +1 -5
  582. package/server/applications/users/interfaces/group-member.js.map +1 -1
  583. package/server/applications/users/interfaces/guest-user.interface.js +1 -5
  584. package/server/applications/users/interfaces/guest-user.interface.js.map +1 -1
  585. package/server/applications/users/interfaces/member.interface.js +1 -5
  586. package/server/applications/users/interfaces/member.interface.js.map +1 -1
  587. package/server/applications/users/interfaces/owner.interface.js +1 -5
  588. package/server/applications/users/interfaces/owner.interface.js.map +1 -1
  589. package/server/applications/users/interfaces/user-secrets.interface.js +1 -5
  590. package/server/applications/users/interfaces/user-secrets.interface.js.map +1 -1
  591. package/server/applications/users/interfaces/websocket.interface.js +1 -5
  592. package/server/applications/users/interfaces/websocket.interface.js.map +1 -1
  593. package/server/applications/users/models/user.model.js +1 -5
  594. package/server/applications/users/models/user.model.js.map +1 -1
  595. package/server/applications/users/schemas/group.interface.js +1 -5
  596. package/server/applications/users/schemas/group.interface.js.map +1 -1
  597. package/server/applications/users/schemas/groups.schema.js +1 -5
  598. package/server/applications/users/schemas/groups.schema.js.map +1 -1
  599. package/server/applications/users/schemas/user-group.interface.js +1 -5
  600. package/server/applications/users/schemas/user-group.interface.js.map +1 -1
  601. package/server/applications/users/schemas/user.interface.js +1 -5
  602. package/server/applications/users/schemas/user.interface.js.map +1 -1
  603. package/server/applications/users/schemas/users-groups.schema.js +1 -5
  604. package/server/applications/users/schemas/users-groups.schema.js.map +1 -1
  605. package/server/applications/users/schemas/users-guests.schema.js +1 -5
  606. package/server/applications/users/schemas/users-guests.schema.js.map +1 -1
  607. package/server/applications/users/schemas/users.schema.js +1 -5
  608. package/server/applications/users/schemas/users.schema.js.map +1 -1
  609. package/server/applications/users/services/admin-users-manager.service.js +67 -23
  610. package/server/applications/users/services/admin-users-manager.service.js.map +1 -1
  611. package/server/applications/users/services/admin-users-manager.service.spec.js +3 -7
  612. package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -1
  613. package/server/applications/users/services/admin-users-queries.service.js +65 -21
  614. package/server/applications/users/services/admin-users-queries.service.js.map +1 -1
  615. package/server/applications/users/services/users-manager.service.js +81 -25
  616. package/server/applications/users/services/users-manager.service.js.map +1 -1
  617. package/server/applications/users/services/users-manager.service.spec.js +14 -12
  618. package/server/applications/users/services/users-manager.service.spec.js.map +1 -1
  619. package/server/applications/users/services/users-queries.service.js +49 -17
  620. package/server/applications/users/services/users-queries.service.js.map +1 -1
  621. package/server/applications/users/users.controller.js +2 -6
  622. package/server/applications/users/users.controller.js.map +1 -1
  623. package/server/applications/users/users.controller.spec.js +5 -9
  624. package/server/applications/users/users.controller.spec.js.map +1 -1
  625. package/server/applications/users/users.e2e-spec.js +3 -7
  626. package/server/applications/users/users.e2e-spec.js.map +1 -1
  627. package/server/applications/users/users.gateway.js +29 -12
  628. package/server/applications/users/users.gateway.js.map +1 -1
  629. package/server/applications/users/users.gateway.spec.js +1 -5
  630. package/server/applications/users/users.gateway.spec.js.map +1 -1
  631. package/server/applications/users/users.module.js +1 -5
  632. package/server/applications/users/users.module.js.map +1 -1
  633. package/server/applications/users/utils/avatar.js +1 -5
  634. package/server/applications/users/utils/avatar.js.map +1 -1
  635. package/server/applications/users/utils/test.js +1 -5
  636. package/server/applications/users/utils/test.js.map +1 -1
  637. package/server/applications/webdav/constants/routes.js +1 -5
  638. package/server/applications/webdav/constants/routes.js.map +1 -1
  639. package/server/applications/webdav/constants/webdav.js +1 -5
  640. package/server/applications/webdav/constants/webdav.js.map +1 -1
  641. package/server/applications/webdav/decorators/if-header.decorator.js +1 -5
  642. package/server/applications/webdav/decorators/if-header.decorator.js.map +1 -1
  643. package/server/applications/webdav/decorators/webdav-context.decorator.js +1 -5
  644. package/server/applications/webdav/decorators/webdav-context.decorator.js.map +1 -1
  645. package/server/applications/webdav/filters/webdav.filter.js +1 -5
  646. package/server/applications/webdav/filters/webdav.filter.js.map +1 -1
  647. package/server/applications/webdav/filters/webdav.filter.spec.js +1 -5
  648. package/server/applications/webdav/filters/webdav.filter.spec.js.map +1 -1
  649. package/server/applications/webdav/guards/webdav-protocol.guard.js +54 -20
  650. package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -1
  651. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js +54 -0
  652. package/server/applications/webdav/guards/webdav-protocol.guard.spec.js.map +1 -1
  653. package/server/applications/webdav/interfaces/if-header.interface.js +1 -5
  654. package/server/applications/webdav/interfaces/if-header.interface.js.map +1 -1
  655. package/server/applications/webdav/interfaces/webdav.interface.js +1 -5
  656. package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -1
  657. package/server/applications/webdav/models/webdav-file.model.js +1 -5
  658. package/server/applications/webdav/models/webdav-file.model.js.map +1 -1
  659. package/server/applications/webdav/services/webdav-methods.service.js +74 -26
  660. package/server/applications/webdav/services/webdav-methods.service.js.map +1 -1
  661. package/server/applications/webdav/services/webdav-methods.service.spec.js +15 -18
  662. package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -1
  663. package/server/applications/webdav/services/webdav-spaces.service.js +17 -9
  664. package/server/applications/webdav/services/webdav-spaces.service.js.map +1 -1
  665. package/server/applications/webdav/services/webdav-spaces.service.spec.js +1 -5
  666. package/server/applications/webdav/services/webdav-spaces.service.spec.js.map +1 -1
  667. package/server/applications/webdav/utils/bootstrap.js +1 -5
  668. package/server/applications/webdav/utils/bootstrap.js.map +1 -1
  669. package/server/applications/webdav/utils/if-header.js +1 -5
  670. package/server/applications/webdav/utils/if-header.js.map +1 -1
  671. package/server/applications/webdav/utils/routes.js +1 -5
  672. package/server/applications/webdav/utils/routes.js.map +1 -1
  673. package/server/applications/webdav/utils/webdav.js +1 -5
  674. package/server/applications/webdav/utils/webdav.js.map +1 -1
  675. package/server/applications/webdav/utils/xml.js +1 -5
  676. package/server/applications/webdav/utils/xml.js.map +1 -1
  677. package/server/applications/webdav/webdav.controller.js +1 -5
  678. package/server/applications/webdav/webdav.controller.js.map +1 -1
  679. package/server/applications/webdav/webdav.controller.spec.js +1 -5
  680. package/server/applications/webdav/webdav.controller.spec.js.map +1 -1
  681. package/server/applications/webdav/webdav.e2e-spec.js +1 -5
  682. package/server/applications/webdav/webdav.e2e-spec.js.map +1 -1
  683. package/server/applications/webdav/webdav.module.js +1 -5
  684. package/server/applications/webdav/webdav.module.js.map +1 -1
  685. package/server/authentication/auth.config.js +23 -123
  686. package/server/authentication/auth.config.js.map +1 -1
  687. package/server/authentication/auth.controller.js +27 -21
  688. package/server/authentication/auth.controller.js.map +1 -1
  689. package/server/authentication/auth.controller.spec.js +6 -10
  690. package/server/authentication/auth.controller.spec.js.map +1 -1
  691. package/server/authentication/auth.e2e-spec.js +1 -5
  692. package/server/authentication/auth.e2e-spec.js.map +1 -1
  693. package/server/authentication/auth.module.js +17 -20
  694. package/server/authentication/auth.module.js.map +1 -1
  695. package/server/authentication/{services/auth-manager.service.js → auth.service.js} +41 -18
  696. package/server/authentication/auth.service.js.map +1 -0
  697. package/server/authentication/{services/auth-manager.service.spec.js → auth.service.spec.js} +6 -10
  698. package/server/authentication/auth.service.spec.js.map +1 -0
  699. package/server/authentication/constants/auth.js +1 -5
  700. package/server/authentication/constants/auth.js.map +1 -1
  701. package/server/authentication/constants/routes.js +41 -30
  702. package/server/authentication/constants/routes.js.map +1 -1
  703. package/server/authentication/constants/scope.js +2 -5
  704. package/server/authentication/constants/scope.js.map +1 -1
  705. package/server/authentication/decorators/auth-token-optional.decorator.js +1 -5
  706. package/server/authentication/decorators/auth-token-optional.decorator.js.map +1 -1
  707. package/server/authentication/decorators/auth-token-skip.decorator.js +1 -5
  708. package/server/authentication/decorators/auth-token-skip.decorator.js.map +1 -1
  709. package/server/authentication/dto/login-response.dto.js +1 -10
  710. package/server/authentication/dto/login-response.dto.js.map +1 -1
  711. package/server/authentication/dto/token-response.dto.js +1 -5
  712. package/server/authentication/dto/token-response.dto.js.map +1 -1
  713. package/server/authentication/guards/auth-anonymous.guard.js +1 -5
  714. package/server/authentication/guards/auth-anonymous.guard.js.map +1 -1
  715. package/server/authentication/guards/auth-anonymous.guard.spec.js +1 -5
  716. package/server/authentication/guards/auth-anonymous.guard.spec.js.map +1 -1
  717. package/server/authentication/guards/auth-anonymous.strategy.js +1 -5
  718. package/server/authentication/guards/auth-anonymous.strategy.js.map +1 -1
  719. package/server/authentication/guards/auth-basic.guard.js +1 -5
  720. package/server/authentication/guards/auth-basic.guard.js.map +1 -1
  721. package/server/authentication/guards/auth-basic.guard.spec.js +13 -14
  722. package/server/authentication/guards/auth-basic.guard.spec.js.map +1 -1
  723. package/server/authentication/guards/auth-basic.strategy.js +10 -11
  724. package/server/authentication/guards/auth-basic.strategy.js.map +1 -1
  725. package/server/authentication/guards/auth-digest.guard.js +1 -5
  726. package/server/authentication/guards/auth-digest.guard.js.map +1 -1
  727. package/server/authentication/guards/auth-digest.strategy.js +1 -5
  728. package/server/authentication/guards/auth-digest.strategy.js.map +1 -1
  729. package/server/authentication/guards/auth-local.guard.js +1 -5
  730. package/server/authentication/guards/auth-local.guard.js.map +1 -1
  731. package/server/authentication/guards/auth-local.guard.spec.js +9 -13
  732. package/server/authentication/guards/auth-local.guard.spec.js.map +1 -1
  733. package/server/authentication/guards/auth-local.strategy.js +6 -10
  734. package/server/authentication/guards/auth-local.strategy.js.map +1 -1
  735. package/server/authentication/guards/auth-token-access.guard.js +1 -5
  736. package/server/authentication/guards/auth-token-access.guard.js.map +1 -1
  737. package/server/authentication/guards/auth-token-access.guard.spec.js +3 -7
  738. package/server/authentication/guards/auth-token-access.guard.spec.js.map +1 -1
  739. package/server/authentication/guards/auth-token-access.strategy.js +3 -7
  740. package/server/authentication/guards/auth-token-access.strategy.js.map +1 -1
  741. package/server/authentication/guards/auth-token-refresh.guard.js +1 -5
  742. package/server/authentication/guards/auth-token-refresh.guard.js.map +1 -1
  743. package/server/authentication/guards/auth-token-refresh.guard.spec.js +3 -7
  744. package/server/authentication/guards/auth-token-refresh.guard.spec.js.map +1 -1
  745. package/server/authentication/guards/auth-token-refresh.strategy.js +3 -7
  746. package/server/authentication/guards/auth-token-refresh.strategy.js.map +1 -1
  747. package/server/authentication/guards/implementations/http-basic.strategy.js +1 -5
  748. package/server/authentication/guards/implementations/http-basic.strategy.js.map +1 -1
  749. package/server/authentication/guards/implementations/http-digest.strategy.js +1 -5
  750. package/server/authentication/guards/implementations/http-digest.strategy.js.map +1 -1
  751. package/server/authentication/interfaces/auth-request.interface.js +1 -5
  752. package/server/authentication/interfaces/auth-request.interface.js.map +1 -1
  753. package/server/authentication/interfaces/jwt-payload.interface.js +1 -5
  754. package/server/authentication/interfaces/jwt-payload.interface.js.map +1 -1
  755. package/server/authentication/interfaces/token.interface.js +1 -5
  756. package/server/authentication/interfaces/token.interface.js.map +1 -1
  757. package/server/authentication/providers/auth-providers.constants.js +18 -0
  758. package/server/authentication/providers/auth-providers.constants.js.map +1 -0
  759. package/server/authentication/providers/auth-providers.models.js +14 -0
  760. package/server/authentication/providers/auth-providers.models.js.map +1 -0
  761. package/server/authentication/providers/auth-providers.utils.js +42 -0
  762. package/server/authentication/providers/auth-providers.utils.js.map +1 -0
  763. package/server/authentication/providers/ldap/auth-ldap.config.js +143 -0
  764. package/server/authentication/providers/ldap/auth-ldap.config.js.map +1 -0
  765. package/server/authentication/{constants/auth-ldap.js → providers/ldap/auth-ldap.constants.js} +12 -6
  766. package/server/authentication/providers/ldap/auth-ldap.constants.js.map +1 -0
  767. package/server/authentication/providers/ldap/auth-provider-ldap.service.js +506 -0
  768. package/server/authentication/providers/ldap/auth-provider-ldap.service.js.map +1 -0
  769. package/server/authentication/providers/ldap/auth-provider-ldap.service.spec.js +674 -0
  770. package/server/authentication/providers/ldap/auth-provider-ldap.service.spec.js.map +1 -0
  771. package/server/authentication/{services/auth-methods/auth-method-database.service.js → providers/mysql/auth-provider-mysql.service.js} +16 -14
  772. package/server/authentication/providers/mysql/auth-provider-mysql.service.js.map +1 -0
  773. package/server/authentication/{services/auth-methods/auth-method-database.service.spec.js → providers/mysql/auth-provider-mysql.service.spec.js} +15 -19
  774. package/server/authentication/providers/mysql/auth-provider-mysql.service.spec.js.map +1 -0
  775. package/server/authentication/providers/oidc/auth-oidc-desktop.constants.js +30 -0
  776. package/server/authentication/providers/oidc/auth-oidc-desktop.constants.js.map +1 -0
  777. package/server/authentication/providers/oidc/auth-oidc.config.js +149 -0
  778. package/server/authentication/providers/oidc/auth-oidc.config.js.map +1 -0
  779. package/server/authentication/providers/oidc/auth-oidc.constants.js +39 -0
  780. package/server/authentication/providers/oidc/auth-oidc.constants.js.map +1 -0
  781. package/server/authentication/providers/oidc/auth-oidc.controller.js +83 -0
  782. package/server/authentication/providers/oidc/auth-oidc.controller.js.map +1 -0
  783. package/server/authentication/providers/oidc/auth-oidc.interfaces.js +6 -0
  784. package/server/authentication/providers/oidc/auth-oidc.interfaces.js.map +1 -0
  785. package/server/authentication/providers/oidc/auth-provider-oidc.module.js +36 -0
  786. package/server/authentication/providers/oidc/auth-provider-oidc.module.js.map +1 -0
  787. package/server/authentication/providers/oidc/auth-provider-oidc.service.js +373 -0
  788. package/server/authentication/providers/oidc/auth-provider-oidc.service.js.map +1 -0
  789. package/server/authentication/providers/oidc/auth-provider-oidc.service.spec.js +270 -0
  790. package/server/authentication/providers/oidc/auth-provider-oidc.service.spec.js.map +1 -0
  791. package/server/authentication/{services/auth-methods/auth-method-two-fa.service.js → providers/two-fa/auth-provider-two-fa.service.js} +56 -38
  792. package/server/authentication/providers/two-fa/auth-provider-two-fa.service.js.map +1 -0
  793. package/server/authentication/{services/auth-methods/auth-method-two-fa.service.spec.js → providers/two-fa/auth-provider-two-fa.service.spec.js} +6 -10
  794. package/server/authentication/providers/two-fa/auth-provider-two-fa.service.spec.js.map +1 -0
  795. package/server/authentication/{guards → providers/two-fa}/auth-two-fa-guard.js +10 -14
  796. package/server/authentication/providers/two-fa/auth-two-fa-guard.js.map +1 -0
  797. package/server/authentication/providers/two-fa/auth-two-fa.config.js +57 -0
  798. package/server/authentication/providers/two-fa/auth-two-fa.config.js.map +1 -0
  799. package/server/authentication/{dto/two-fa-verify.dto.js → providers/two-fa/auth-two-fa.dtos.js} +8 -6
  800. package/server/authentication/providers/two-fa/auth-two-fa.dtos.js.map +1 -0
  801. package/server/authentication/providers/two-fa/auth-two-fa.interfaces.js +6 -0
  802. package/server/authentication/providers/two-fa/auth-two-fa.interfaces.js.map +1 -0
  803. package/server/authentication/utils/crypt-secret.js +1 -5
  804. package/server/authentication/utils/crypt-secret.js.map +1 -1
  805. package/server/common/constants.js +1 -5
  806. package/server/common/constants.js.map +1 -1
  807. package/server/common/decorators.js +1 -5
  808. package/server/common/decorators.js.map +1 -1
  809. package/server/common/functions.js +25 -9
  810. package/server/common/functions.js.map +1 -1
  811. package/server/common/i18n.js +1 -5
  812. package/server/common/i18n.js.map +1 -1
  813. package/server/common/image.js +1 -5
  814. package/server/common/image.js.map +1 -1
  815. package/server/common/interfaces.js +1 -5
  816. package/server/common/interfaces.js.map +1 -1
  817. package/server/common/qrcode.js +1 -5
  818. package/server/common/qrcode.js.map +1 -1
  819. package/server/common/shared.js +6 -6
  820. package/server/common/shared.js.map +1 -1
  821. package/server/configuration/config.constants.js +1 -5
  822. package/server/configuration/config.constants.js.map +1 -1
  823. package/server/configuration/config.environment.js +2 -6
  824. package/server/configuration/config.environment.js.map +1 -1
  825. package/server/configuration/config.interfaces.js +1 -5
  826. package/server/configuration/config.interfaces.js.map +1 -1
  827. package/server/configuration/config.loader.js +1 -5
  828. package/server/configuration/config.loader.js.map +1 -1
  829. package/server/configuration/config.logger.js +4 -8
  830. package/server/configuration/config.logger.js.map +1 -1
  831. package/server/configuration/config.validation.js +7 -5
  832. package/server/configuration/config.validation.js.map +1 -1
  833. package/server/infrastructure/cache/adapters/mysql-cache.adapter.js +9 -7
  834. package/server/infrastructure/cache/adapters/mysql-cache.adapter.js.map +1 -1
  835. package/server/infrastructure/cache/adapters/redis-cache.adapter.js +1 -5
  836. package/server/infrastructure/cache/adapters/redis-cache.adapter.js.map +1 -1
  837. package/server/infrastructure/cache/cache.config.js +1 -5
  838. package/server/infrastructure/cache/cache.config.js.map +1 -1
  839. package/server/infrastructure/cache/cache.decorator.js +9 -7
  840. package/server/infrastructure/cache/cache.decorator.js.map +1 -1
  841. package/server/infrastructure/cache/cache.e2e-spec.js +1 -5
  842. package/server/infrastructure/cache/cache.e2e-spec.js.map +1 -1
  843. package/server/infrastructure/cache/cache.module.js +1 -5
  844. package/server/infrastructure/cache/cache.module.js.map +1 -1
  845. package/server/infrastructure/cache/schemas/mysql-cache.interface.js +1 -5
  846. package/server/infrastructure/cache/schemas/mysql-cache.interface.js.map +1 -1
  847. package/server/infrastructure/cache/schemas/mysql-cache.schema.js +1 -5
  848. package/server/infrastructure/cache/schemas/mysql-cache.schema.js.map +1 -1
  849. package/server/infrastructure/cache/services/cache.service.js +1 -5
  850. package/server/infrastructure/cache/services/cache.service.js.map +1 -1
  851. package/server/infrastructure/context/context.module.js +1 -5
  852. package/server/infrastructure/context/context.module.js.map +1 -1
  853. package/server/infrastructure/context/interceptors/context.interceptor.js +1 -5
  854. package/server/infrastructure/context/interceptors/context.interceptor.js.map +1 -1
  855. package/server/infrastructure/context/interceptors/context.interceptor.spec.js +2 -6
  856. package/server/infrastructure/context/interceptors/context.interceptor.spec.js.map +1 -1
  857. package/server/infrastructure/context/interfaces/context-store.interface.js +1 -5
  858. package/server/infrastructure/context/interfaces/context-store.interface.js.map +1 -1
  859. package/server/infrastructure/context/services/context-manager.service.js +1 -5
  860. package/server/infrastructure/context/services/context-manager.service.js.map +1 -1
  861. package/server/infrastructure/context/services/context-manager.service.spec.js +1 -5
  862. package/server/infrastructure/context/services/context-manager.service.spec.js.map +1 -1
  863. package/server/infrastructure/database/columns.js +1 -5
  864. package/server/infrastructure/database/columns.js.map +1 -1
  865. package/server/infrastructure/database/configuration.js +1 -5
  866. package/server/infrastructure/database/configuration.js.map +1 -1
  867. package/server/infrastructure/database/constants.js +2 -6
  868. package/server/infrastructure/database/constants.js.map +1 -1
  869. package/server/infrastructure/database/database.config.js +1 -5
  870. package/server/infrastructure/database/database.config.js.map +1 -1
  871. package/server/infrastructure/database/database.logger.js +1 -5
  872. package/server/infrastructure/database/database.logger.js.map +1 -1
  873. package/server/infrastructure/database/database.module.js +1 -5
  874. package/server/infrastructure/database/database.module.js.map +1 -1
  875. package/server/infrastructure/database/interfaces/database.interface.js +1 -5
  876. package/server/infrastructure/database/interfaces/database.interface.js.map +1 -1
  877. package/server/infrastructure/database/schema.js +1 -5
  878. package/server/infrastructure/database/schema.js.map +1 -1
  879. package/server/infrastructure/database/scripts/create-user.js +1 -5
  880. package/server/infrastructure/database/scripts/create-user.js.map +1 -1
  881. package/server/infrastructure/database/scripts/db.js +1 -5
  882. package/server/infrastructure/database/scripts/db.js.map +1 -1
  883. package/server/infrastructure/database/scripts/seed/main.js +1 -5
  884. package/server/infrastructure/database/scripts/seed/main.js.map +1 -1
  885. package/server/infrastructure/database/scripts/seed/usersgroups.js +1 -5
  886. package/server/infrastructure/database/scripts/seed/usersgroups.js.map +1 -1
  887. package/server/infrastructure/database/utils.js +1 -5
  888. package/server/infrastructure/database/utils.js.map +1 -1
  889. package/server/infrastructure/mailer/interfaces/mail.interface.js +1 -5
  890. package/server/infrastructure/mailer/interfaces/mail.interface.js.map +1 -1
  891. package/server/infrastructure/mailer/mailer.config.js +1 -5
  892. package/server/infrastructure/mailer/mailer.config.js.map +1 -1
  893. package/server/infrastructure/mailer/mailer.module.js +1 -5
  894. package/server/infrastructure/mailer/mailer.module.js.map +1 -1
  895. package/server/infrastructure/mailer/mailer.service.js +1 -5
  896. package/server/infrastructure/mailer/mailer.service.js.map +1 -1
  897. package/server/infrastructure/mailer/mailer.service.spec.js +2 -6
  898. package/server/infrastructure/mailer/mailer.service.spec.js.map +1 -1
  899. package/server/infrastructure/scheduler/scheduler.constants.js +1 -5
  900. package/server/infrastructure/scheduler/scheduler.constants.js.map +1 -1
  901. package/server/infrastructure/scheduler/scheduler.module.js +1 -5
  902. package/server/infrastructure/scheduler/scheduler.module.js.map +1 -1
  903. package/server/infrastructure/websocket/adapters/cluster.adapter.js +1 -5
  904. package/server/infrastructure/websocket/adapters/cluster.adapter.js.map +1 -1
  905. package/server/infrastructure/websocket/adapters/redis.adapter.js +1 -5
  906. package/server/infrastructure/websocket/adapters/redis.adapter.js.map +1 -1
  907. package/server/infrastructure/websocket/adapters/web-socket.adapter.js +1 -5
  908. package/server/infrastructure/websocket/adapters/web-socket.adapter.js.map +1 -1
  909. package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js +1 -5
  910. package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js.map +1 -1
  911. package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js +1 -5
  912. package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js.map +1 -1
  913. package/server/infrastructure/websocket/utils.js +1 -5
  914. package/server/infrastructure/websocket/utils.js.map +1 -1
  915. package/server/infrastructure/websocket/web-socket.config.js +1 -5
  916. package/server/infrastructure/websocket/web-socket.config.js.map +1 -1
  917. package/server/main.js +5 -0
  918. package/server/main.js.map +1 -1
  919. package/static/assets/pdfjs/build/pdf.mjs +724 -745
  920. package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
  921. package/static/assets/pdfjs/build/pdf.sandbox.mjs +2 -2
  922. package/static/assets/pdfjs/build/pdf.worker.mjs +706 -193
  923. package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
  924. package/static/assets/pdfjs/version +1 -1
  925. package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +5 -5
  926. package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +1 -0
  927. package/static/assets/pdfjs/web/locale/fur/viewer.ftl +5 -0
  928. package/static/assets/pdfjs/web/locale/kk/viewer.ftl +28 -0
  929. package/static/assets/pdfjs/web/locale/ml/viewer.ftl +4 -0
  930. package/static/assets/pdfjs/web/locale/ru/viewer.ftl +3 -3
  931. package/static/assets/pdfjs/web/viewer.css +207 -65
  932. package/static/assets/pdfjs/web/viewer.html +11 -10
  933. package/static/assets/pdfjs/web/viewer.mjs +850 -270
  934. package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
  935. package/static/assets/pdfjs/web/wasm/LICENSE_JBIG2 +196 -0
  936. package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_JBIG2 +13 -0
  937. package/static/assets/pdfjs/web/wasm/jbig2.wasm +0 -0
  938. package/static/chunk-22TZP6HW.js +1 -0
  939. package/static/{chunk-G7TLKY5X.js → chunk-27ATUHBH.js} +1 -1
  940. package/static/{chunk-CQOQXVYG.js → chunk-2CKLZ3FM.js} +1 -1
  941. package/static/{chunk-FVFOX6OP.js → chunk-2QZPX7LO.js} +1 -1
  942. package/static/{chunk-32AVRWC3.js → chunk-2R6IBBPZ.js} +1 -1
  943. package/static/{chunk-76JDXKD7.js → chunk-4FIGEBNL.js} +1 -1
  944. package/static/{chunk-ACCGBDUZ.js → chunk-4P3JABAP.js} +4 -4
  945. package/static/chunk-5CZOSAMZ.js +1 -0
  946. package/static/{chunk-2PDTP6N4.js → chunk-677WUBCT.js} +1 -1
  947. package/static/{chunk-K5VO5XTG.js → chunk-74CAHBFM.js} +1 -1
  948. package/static/{chunk-WTWGBCFO.js → chunk-7GWW6MJO.js} +1 -1
  949. package/static/{chunk-JXZOYX4N.js → chunk-A4UGPSWX.js} +1 -1
  950. package/static/{chunk-44D7RWET.js → chunk-AHO37FKW.js} +1 -1
  951. package/static/{chunk-WB2DECOA.js → chunk-AQCXMKP3.js} +1 -1
  952. package/static/chunk-B6PDYCRO.js +3 -0
  953. package/static/{chunk-JVGN5V5E.js → chunk-CU76ATCF.js} +1 -1
  954. package/static/{chunk-Q5K4ZUHK.js → chunk-CWYHOPOP.js} +1 -1
  955. package/static/{chunk-IOX3ANJR.js → chunk-E5WI5725.js} +1 -1
  956. package/static/{chunk-NUG54Y65.js → chunk-FC5HTKVM.js} +1 -1
  957. package/static/{chunk-LRK6RNPR.js → chunk-FOSM7EYI.js} +1 -1
  958. package/static/{chunk-B4UP2EQM.js → chunk-GAZO25PI.js} +1 -1
  959. package/static/{chunk-3WBCGTYW.js → chunk-GB7ABR5N.js} +1 -1
  960. package/static/{chunk-XFZ37WVK.js → chunk-GEHFKZQ5.js} +1 -1
  961. package/static/{chunk-4CQLN5HL.js → chunk-GQFMWVFD.js} +1 -1
  962. package/static/{chunk-YBEH442D.js → chunk-GVNTC564.js} +1 -1
  963. package/static/{chunk-WO6GBHBZ.js → chunk-HGL3NYP2.js} +2 -2
  964. package/static/{chunk-IAWRRL6J.js → chunk-HLIWPWRA.js} +1 -1
  965. package/static/{chunk-6LHJBXUE.js → chunk-HNYB3M4S.js} +1 -1
  966. package/static/{chunk-5WTIUYFF.js → chunk-HUXAUQMN.js} +1 -1
  967. package/static/{chunk-VBH3Y2M5.js → chunk-I2XA6PPK.js} +1 -1
  968. package/static/{chunk-I3XI72AV.js → chunk-ISV3BO6R.js} +1 -1
  969. package/static/{chunk-P7X53PEP.js → chunk-JV3AGU5B.js} +1 -1
  970. package/static/{chunk-ZFAXICUH.js → chunk-K25E7YGG.js} +1 -1
  971. package/static/{chunk-CAD3RHAY.js → chunk-K46PUTZB.js} +1 -1
  972. package/static/{chunk-GYFLVCFN.js → chunk-KERFLJ56.js} +1 -7
  973. package/static/{chunk-WSTGWBVW.js → chunk-KJD3KFF3.js} +1 -1
  974. package/static/{chunk-R4P4NBUL.js → chunk-KPKSI23S.js} +1 -1
  975. package/static/{chunk-M7IFVC5D.js → chunk-KZS7CTNR.js} +1 -1
  976. package/static/{chunk-P2IJCGWD.js → chunk-L5IHUVXL.js} +1 -1
  977. package/static/{chunk-DXESTGOH.js → chunk-L7RRX2M3.js} +1 -1
  978. package/static/{chunk-WE3ISL7O.js → chunk-LGWJ2WKU.js} +1 -1
  979. package/static/{chunk-OKI3N5AI.js → chunk-MLC7JK2H.js} +2 -2
  980. package/static/{chunk-NG7QWUFM.js → chunk-MOHNYW2A.js} +1 -1
  981. package/static/{chunk-SQYWQUL4.js → chunk-NCDUOVMW.js} +1 -1
  982. package/static/chunk-NGUAJIGI.js +1 -0
  983. package/static/{chunk-OYPJUVD6.js → chunk-NIPP6JDI.js} +1 -1
  984. package/static/{chunk-Y433XOAJ.js → chunk-NMTBMHUL.js} +1 -1
  985. package/static/chunk-O4XXMZFX.js +4 -0
  986. package/static/{chunk-IOP3ON2H.js → chunk-OANZITPM.js} +1 -1
  987. package/static/{chunk-WJFKUJJX.js → chunk-OGE4SAHU.js} +1 -1
  988. package/static/{chunk-7EHP6HO3.js → chunk-OI3ME22C.js} +1 -1
  989. package/static/{chunk-D4XDSS6P.js → chunk-Q3EGCMF5.js} +1 -1
  990. package/static/{chunk-TQBCGNFG.js → chunk-QF2NSHZA.js} +1 -1
  991. package/static/{chunk-RBBMH2FM.js → chunk-QKN6LAAA.js} +1 -1
  992. package/static/{chunk-J45SD6RC.js → chunk-QRFESU5O.js} +2 -2
  993. package/static/chunk-QVRVFYJH.js +1 -0
  994. package/static/{chunk-BAHNSFET.js → chunk-RFJIPIOK.js} +1 -1
  995. package/static/{chunk-IZ7TCHUW.js → chunk-RLL634K4.js} +1 -1
  996. package/static/{chunk-MOWL3ILT.js → chunk-RS2OFKWP.js} +1 -1
  997. package/static/{chunk-WM56LPJ3.js → chunk-RWAAC3A4.js} +1 -1
  998. package/static/{chunk-F3GMI6OL.js → chunk-S5Y64DDS.js} +1 -1
  999. package/static/{chunk-VNNLMUK7.js → chunk-SLG5KDU6.js} +1 -1
  1000. package/static/chunk-TJ4CVFEL.js +1 -0
  1001. package/static/{chunk-SAN35XTD.js → chunk-TWCGKSYE.js} +1 -1
  1002. package/static/{chunk-EUKVDBBK.js → chunk-UMDRE4S7.js} +1 -1
  1003. package/static/{chunk-YKCUUBZP.js → chunk-VRIOLRYR.js} +4 -4
  1004. package/static/chunk-VS4O2XDP.js +1 -0
  1005. package/static/{chunk-2MRTBCSV.js → chunk-VSBFNFOM.js} +1 -1
  1006. package/static/{chunk-CTPKDDVI.js → chunk-WN4WXCVK.js} +1 -1
  1007. package/static/{chunk-2AA3WMW5.js → chunk-WX7RXW7K.js} +1 -1
  1008. package/static/{chunk-J2BUPRCZ.js → chunk-XC4POKR3.js} +2 -2
  1009. package/static/{chunk-AXLDYLIO.js → chunk-Y4AUYQTG.js} +1 -1
  1010. package/static/{chunk-RPHWIW7S.js → chunk-YMIXHRJQ.js} +1 -7
  1011. package/static/{chunk-AFNUBQMD.js → chunk-ZUNKFAKP.js} +1 -1
  1012. package/static/index.html +3 -3
  1013. package/static/main-QN4UCOC5.js +5 -0
  1014. package/static/{styles-PD6764CP.css → styles-46GLIE7Y.css} +1 -1
  1015. package/server/authentication/constants/auth-ldap.js.map +0 -1
  1016. package/server/authentication/dto/two-fa-verify.dto.js.map +0 -1
  1017. package/server/authentication/guards/auth-two-fa-guard.js.map +0 -1
  1018. package/server/authentication/interfaces/two-fa-setup.interface.js +0 -10
  1019. package/server/authentication/interfaces/two-fa-setup.interface.js.map +0 -1
  1020. package/server/authentication/models/auth-method.js +0 -18
  1021. package/server/authentication/models/auth-method.js.map +0 -1
  1022. package/server/authentication/services/auth-manager.service.js.map +0 -1
  1023. package/server/authentication/services/auth-manager.service.spec.js.map +0 -1
  1024. package/server/authentication/services/auth-methods/auth-method-database.service.js.map +0 -1
  1025. package/server/authentication/services/auth-methods/auth-method-database.service.spec.js.map +0 -1
  1026. package/server/authentication/services/auth-methods/auth-method-ldap.service.js +0 -326
  1027. package/server/authentication/services/auth-methods/auth-method-ldap.service.js.map +0 -1
  1028. package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js +0 -534
  1029. package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js.map +0 -1
  1030. package/server/authentication/services/auth-methods/auth-method-two-fa.service.js.map +0 -1
  1031. package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js.map +0 -1
  1032. package/static/chunk-3I6NPM62.js +0 -1
  1033. package/static/chunk-GCPX3EFC.js +0 -1
  1034. package/static/chunk-KBUIDMCK.js +0 -1
  1035. package/static/chunk-KY6MNZLC.js +0 -1
  1036. package/static/chunk-MPWD4VMY.js +0 -1
  1037. package/static/chunk-QQAF3MLL.js +0 -1
  1038. package/static/chunk-VHZKPUWE.js +0 -4
  1039. package/static/chunk-YWLMFOB4.js +0 -3
  1040. package/static/main-ZXEMCBMI.js +0 -11
@@ -1 +1 @@
1
- import"./chunk-KAVP6UXH.js";var a="Autentica\xE7\xE3o",i="Login",r="Senha",s="Confirmar",n="Cancelar",t="Fechar",d="Abrir",c="Filtrar",l="Filtros",u="pesquisar",p="Pesquisar",m="Ver",h="Nenhuma tarefa",v="{{ nb }} tarefa conclu\xEDda",f="{{ nb }} tarefas conclu\xEDdas",g="{{ nba }} tarefa em andamento de {{ nb }}",b="{{ nba }} tarefas em andamento de {{ nb }}",y="{{nb}} item(ns)",w="{{nb}} a\xE7\xE3o(\xF5es)",x="{{ nb }} nova mensagem",S="{{ nb }} novas mensagens",A="{{ nb }} notifica\xE7\xE3o n\xE3o lida",C="{{ nb }} notifica\xE7\xF5es n\xE3o lidas",E="Aplicativo",q="aplicativo",T="Notifica\xE7\xE3o",N="Notifica\xE7\xF5es",k="Evento",z="Arquivo",D="Arquivos",O="Pessoal",P="Externo",L="Grupos",U="Grupo",_="grupo",F="grupos",R="Vis\xEDvel",M="Privado",G="Isolado",V="Adicionar",j="Administrador",I="Administra\xE7\xE3o",Y="Usu\xE1rio",W="usu\xE1rio",B="Usu\xE1rios",Q="usu\xE1rios",H="conta",K="Conta",J="E-mail",X="Status",Z="Fun\xE7\xE3o",$="IP",ee="Visto",oe="Conex\xE3o",ae="Conex\xF5es",ie="Pouco espa\xE7o dispon\xEDvel ({{ nb }}%)",re="online",se="Ilimitado",ne="membro",te="membros",de="Membro",ce="Membros",le="Gerente",ue="gerente",pe="Gerentes",me="Gerar",he="Importar",ve="Configura\xE7\xE3o",fe="Aplicativos",ge="aplicativos",be="Avatar",ye="Atualizar",we="Idioma",xe="In\xEDcio",Se="Recentes",Ae="recentes",Ce="Lixeira",Ee="Compartilhamentos",qe="Compartilhar",Te="compartilhamentos",Ne="compartilhado",ke="Acesso ao espa\xE7o pessoal",ze="Acesso aos espa\xE7os",De="Administra\xE7\xE3o de espa\xE7os",Oe="Acesso aos compartilhamentos",Pe="Administra\xE7\xE3o de compartilhamentos",Le="Administra\xE7\xE3o de convidados",Ue="Administra\xE7\xE3o de grupos pessoais",_e="Acesso pelo aplicativo desktop",Fe="Sincroniza\xE7\xE3o pelo aplicativo desktop",Re="Acesso WebDAV",Me="WebDAV",Ge="Espa\xE7o",Ve="Espa\xE7os",je="espa\xE7os",Ie="ancorou",Ye="desancorou",We="Local",Be="Ancorado",Qe="Configura\xE7\xF5es",He="Op\xE7\xF5es",Ke="Nome",Je="Baixar",Xe="Mover",Ze="Copiar",$e="Renomear",eo="Editar",oo="Remover",ao="\xC1rea de transfer\xEAncia",io="Atualizar",ro="Esvaziar",so="Lista",no="Exibi\xE7\xE3o",to="Deseja mover <b>{{arg}}</b> para a lixeira?",co="Deseja excluir permanentemente <b>{{arg}}</b>?",lo="Deseja mover estes <b>{{arg}} arquivos</b> para a lixeira?",uo="Deseja excluir permanentemente estes <b>{{arg}} arquivos</b>?",po="sincroniza\xE7\xE3o",mo="Sincroniza\xE7\xE3o",ho="Sincroniza\xE7\xF5es",vo="Sincronizar",fo="Sync",go="Sincronizado",bo="Comprimir",yo="Descomprimir",wo="Info",xo="Tamanho",So="Modificado",Ao="modificado",Co="Tarefas",Eo="Texto",qo="Elementos",To="Novo",No="Pasta",ko="pasta",zo="arquivo",Do="arquivos",Oo="diret\xF3rio",Po="diret\xF3rios",Lo="Total",Uo="nenhum item selecionado",_o="{{ nb }} item selecionado",Fo="{{ nb }} itens selecionados",Ro="item",Mo="itens",Go="criar",Vo="escrever",jo="mover",Io="excluir",Yo="modificar",Wo="compartilhamento",Bo="Link",Qo="link",Ho="Links",Ko="links",Jo="Convidado",Xo="Convidados",Zo="convidado",$o="convidados",ea="Expirado",oa="expirado",aa="nenhum",ia="Permiss\xF5es",ra="Propriet\xE1rio",sa="Eu",na="Compartilhado",ta="Criado",da="Data",ca="Caminho",la="ativo",ua="Ativo",pa="suspenso",ma="Tipo",ha="Descri\xE7\xE3o",va="Visibilidade",fa="Desconhecido",ga="Expira\xE7\xE3o",ba="Acesso",ya="Acessado",wa="Comentar",xa="Coment\xE1rios",Sa="coment\xE1rios",Aa="comentou",Ca="sim",Ea="n\xE3o",qa="Cliente",Ta="Clientes",Na="dispon\xEDvel",ka="ocupado",za="ausente",Da="offline",Oa="sair",Pa="dias",La="dia",Ua="Excluir",_a="Agendador",Fa="paralelo",Ra="sequencial",Ma="Transfer\xEAncias",Ga="Simular",Va="Redefinir",ja="Navegar",Ia="A\xE7\xE3o",Ya="Adicionado",Wa="Removido",Ba="Copiado",Qa="Movido",Ha="Filtrado",Ka="Erro",Ja="Servidor",Xa="Dire\xE7\xE3o",Za="Conflito",$a="recentes",ei="Origem",oi="Destino",ai="Modo",ii="Sequencialmente",ri="Paralelamente",si="r\xE1pido",ni="seguro",ti="ativado",di="Ativar",ci="desativado",li="Desativar",ui="horas",pi="minutos",mi="dias",hi="ambos",vi="nunca",fi="Assistente",gi="Pr\xF3ximo",bi="Anterior",yi="Concluir",wi="para",xi="Reposit\xF3rio",Si="p\xFAblico",Ai="local",Ci="remoto",Ei="Site",qi="Vers\xF5es",Ti="Seguran\xE7a",Ni="Gerenciar",ki="Deseja renomear <b>{{ old }}</b> para <b>{{ new }}</b>?",zi="Salvar",Di="Desfazer",Oi="Refazer",Pi="eu",Li="Desbloquear",Ui="Bloqueio",_i="Exclusivo",Fi="Tela cheia",Ri="Dimens\xF5es",Mi="Prefer\xEAncias",Gi="de",Vi={"Sign-in to your account":"Entre na sua conta","Wrong login or password":"Nome de usu\xE1rio ou senha incorretos","Authentication service error":"Erro no servi\xE7o de autentica\xE7\xE3o","Account locked":"Conta bloqueada","Account is not allowed":"Conta n\xE3o permitida","Account matching error":"Erro de correspond\xEAncia de conta",Authentication:a,"Sign in":"Entrar",Login:i,Password:r,"Login or Email":"Login ou e-mail","Login already used":"Login j\xE1 utilizado","You are already logged in":"Voc\xEA j\xE1 est\xE1 conectado","Name already used":"Nome j\xE1 utilizado","Token has expired":"O token expirou",Confirm:s,Cancel:n,Close:t,Open:d,"Server connection error":"Erro de conex\xE3o com o servidor",Filter:c,Filters:l,search:u,Search:p,"Search for content":"Pesquisar conte\xFAdo","Search for files":"Pesquisar arquivos","Full-text search":"Pesquisa de texto completo","Full-text search is disabled":"A pesquisa de texto completo est\xE1 desativada","Type to search for users or groups to add":"Digite para pesquisar usu\xE1rios ou grupos para adicionar","Type to search for groups to add":"Digite para pesquisar grupos para adicionar","Type to search for users to add":"Digite para pesquisar usu\xE1rios para adicionar","Type to search for managers to add":"Digite para pesquisar gerentes para adicionar","Member since":"Membro desde","Windows Manager":"Gerenciador de janelas","Mark as read":"Marcar como lido",See:m,no_task:h,one_task:v,nb_tasks:f,one_active_task:g,nb_active_tasks:b,nb_elements:y,nb_actions:w,one_message:x,nb_messages:S,one_notification:A,nb_notifications:C,Application:E,application:q,"application and email":"aplicativo e e-mail",Notification:T,Notifications:N,Event:k,File:z,Files:D,"Personal files":"Arquivos pessoais",Personal:O,External:P,"Share status":"Status do compartilhamento","Share description":"Descri\xE7\xE3o do compartilhamento","No recent files":"Nenhum arquivo recente",Groups:L,Group:U,group:_,"New personal group":"Novo grupo pessoal","Edit personal group":"Editar grupo pessoal","personal group":"grupo pessoal","Personal group":"Grupo pessoal","Personal groups":"Grupos pessoais",groups:F,"Parent group":"Grupo pai","Group updated":"Grupo atualizado","Group created":"Grupo criado","Group not found":"Grupo n\xE3o encontrado","Group error":"Erro no grupo","Set as group manager":"Definir como gerente do grupo","As a manager, the user will be able to manage the group and its members.":"Como gerente, o usu\xE1rio poder\xE1 gerenciar o grupo e seus membros.","As a manager, the user will be able to manage group members but not group properties.":"Como gerente, o usu\xE1rio poder\xE1 gerenciar os membros, mas n\xE3o as propriedades do grupo.",Visible:R,Private:M,Isolated:G,"Select the parent group":"Selecione o grupo pai","from the group":"do grupo","New group":"Novo grupo","Edit group":"Editar grupo","Leave group":"Sair do grupo","Delete group":"Excluir grupo","Remove from group":"Remover do grupo","Group must have at least one manager":"O grupo deve ter pelo menos um gerente","The group was left":"Voc\xEA saiu do grupo","The group was not left":"N\xE3o foi poss\xEDvel sair do grupo","will be left, you will no longer be a member of this group":"ser\xE1 deixado, voc\xEA n\xE3o ser\xE1 mais membro deste grupo","All users can see this group.":"Todos os usu\xE1rios podem ver este grupo.","Users who are not members of this group cannot see it.":"Usu\xE1rios que n\xE3o s\xE3o membros deste grupo n\xE3o podem v\xEA-lo.","The group is not visible, its members cannot see it and cannot see each other.":"O grupo n\xE3o \xE9 vis\xEDvel; seus membros n\xE3o o veem e n\xE3o se veem entre si.",Add:V,"Add members":"Adicionar membros","See members":"Ver membros",Administrator:j,Administration:I,User:Y,user:W,Users:B,users:Q,"New user":"Novo usu\xE1rio",account:H,Account:K,"Account status":"Status da conta",Email:J,"Email already used":"E-mail j\xE1 utilizado","First name":"Nome","Last name":"Sobrenome","Full name":"Nome completo",Status:X,Role:Z,IP:$,"IP Addresses":"Endere\xE7os IP",Seen:ee,Connection:oe,Connections:ae,"Confirm deletion":"Confirmar exclus\xE3o","Confirm permanent deletion of data":"Confirmar exclus\xE3o permanente dos dados","Space and data will be deleted in":"O espa\xE7o e os dados ser\xE3o exclu\xEDdos em","Space is disabled":"O espa\xE7o est\xE1 desativado","Storage Space":"Espa\xE7o de armazenamento","Storage Quota":"Cota de armazenamento","Storage Usage":"Uso do armazenamento","Space status":"Status do espa\xE7o","Storage quota exceeded":"Cota de armazenamento excedida","Storage quota will be exceeded":"A cota de armazenamento ser\xE1 excedida","No more space available":"Sem espa\xE7o dispon\xEDvel",available_space_is_low:ie,online:re,"Online users":"Usu\xE1rios online",Unlimited:se,member:ne,members:te,Member:de,Members:ce,Manager:le,manager:ue,Managers:pe,"At least one manager is required":"\xC9 necess\xE1rio pelo menos um gerente",Generate:me,Import:he,Configuration:ve,Applications:fe,applications:ge,"Permissions inherited from groups":"Permiss\xF5es herdadas dos grupos","Only the group will be deleted, the members will no longer be part of it.":"Apenas o grupo ser\xE1 exclu\xEDdo; os membros n\xE3o far\xE3o mais parte dele.",Avatar:be,Update:ye,"current password":"senha atual","new password":"nova senha","Change me !":"Mude-me!","Current password missing !":"Senha atual ausente!","New password missing !":"Nova senha ausente!","New password must have 8 characters minimum":"A nova senha deve ter no m\xEDnimo 8 caracteres","Current password does not match":"A senha atual n\xE3o confere","Password has been updated":"A senha foi atualizada","Unable to update password":"N\xE3o foi poss\xEDvel atualizar a senha","Bad password":"Senha incorreta","too many login attempts":"muitas tentativas de login",Language:we,"Language updated":"Idioma atualizado","Unable to update language":"N\xE3o foi poss\xEDvel atualizar o idioma","Notification preference updated":"Prefer\xEAncia de notifica\xE7\xE3o atualizada","Full-text search preference updated":"Prefer\xEAncia de pesquisa de texto completo atualizada","Unable to update notification preference":"N\xE3o foi poss\xEDvel atualizar a prefer\xEAncia de notifica\xE7\xE3o","Unable to update full-text search preference":"N\xE3o foi poss\xEDvel atualizar a prefer\xEAncia de pesquisa de texto completo","Unable to open document":"N\xE3o foi poss\xEDvel abrir o documento","Unable to save document":"N\xE3o \xE9 poss\xEDvel salvar o documento",Home:xe,Recents:Se,recents:Ae,Trash:Ce,"trash bins":"lixeiras",Shares:Ee,Share:qe,shares:Te,shared:Ne,personal_space:ke,spaces_access:ze,spaces_admin:De,shares_access:Oe,shares_admin:Pe,guests_admin:Le,personal_groups_admin:Ue,desktop_app_access:_e,desktop_app_sync:Fe,webdav_access:Re,"Create share":"Criar compartilhamento","Edit share":"Editar compartilhamento","Delete share":"Excluir compartilhamento","Child shares":"Compartilhamentos filhos",webdav:Me,"Share is disabled":"O compartilhamento est\xE1 desativado",Space:Ge,Spaces:Ve,spaces:je,"Space name":"Nome do espa\xE7o","New space":"Novo espa\xE7o","Create a new space":"Criar um novo espa\xE7o","Create space":"Criar espa\xE7o","Edit space":"Editar espa\xE7o","Delete space":"Excluir espa\xE7o","Create a new share":"Criar um novo compartilhamento","Type to search for space to select":"Digite para pesquisar o espa\xE7o a selecionar","Anchor to a space":"Ancorar a um espa\xE7o","Anchor files to a space":"Ancorar arquivos a um espa\xE7o","You have been invited to join this space":"Voc\xEA foi convidado a participar deste espa\xE7o","You have been invited to join this share":"Voc\xEA foi convidado a participar deste compartilhamento","Shared with others":"Compartilhado com outros","With others":"Com outros","Shared with me":"Compartilhado comigo","With me":"Comigo","Shared via links":"Compartilhado via links","Via links":"Via links","Shared from":"Compartilhado por","share with you this":"compartilha com voc\xEA isto","shared with you":"compartilhou com voc\xEA","no longer share with you":"n\xE3o compartilha mais com voc\xEA","You now have access to the space":"Voc\xEA agora tem acesso ao espa\xE7o","You no longer have access to the space":"Voc\xEA n\xE3o tem mais acesso ao espa\xE7o","This space has been permanently deleted":"Este espa\xE7o foi exclu\xEDdo permanentemente","You now have access to the share":"Voc\xEA agora tem acesso ao compartilhamento","You no longer have access to the share":"Voc\xEA n\xE3o tem mais acesso ao compartilhamento","You are no longer a member of the parent share, your child share has been deleted":"Voc\xEA n\xE3o \xE9 mais membro do compartilhamento pai; seu compartilhamento filho foi exclu\xEDdo",anchored:Ie,unanchored:Ye,"Share not found":"Compartilhamento n\xE3o encontrado","Go to":"Ir para",Location:We,"Name and location are required":"Nome e local s\xE3o obrigat\xF3rios","Parent location already exists in files":"O local pai j\xE1 existe nos arquivos","Check the location":"Verifique o local","Location not found":"Local n\xE3o encontrado","Forbidden resource":"Local n\xE3o autorizado","Resource already exists":"O item j\xE1 existe","The location does not exist":"O local n\xE3o existe","The location is not readable":"O local n\xE3o \xE9 leg\xEDvel","The location is not writeable":"O local n\xE3o \xE9 grav\xE1vel","The location is a directory":"O local \xE9 um diret\xF3rio","The file is locked":"O arquivo est\xE1 bloqueado","This access is protected by a password":"Este acesso \xE9 protegido por senha","You do not have share permission":"Voc\xEA n\xE3o tem permiss\xE3o para compartilhar","You can not share a space":"Voc\xEA n\xE3o pode compartilhar um espa\xE7o","You can not remove an anchored file":"Voc\xEA n\xE3o pode remover um arquivo ancorado","You are not allowed to write here":"Voc\xEA n\xE3o tem permiss\xE3o para escrever aqui","You are not allowed to do this action":"Voc\xEA n\xE3o tem permiss\xE3o para realizar esta a\xE7\xE3o","You can not move an anchored file":"Voc\xEA n\xE3o pode mover um arquivo ancorado","You can not move a locked file":"Voc\xEA n\xE3o pode mover um arquivo bloqueado",Anchored:Be,"Anchored by":"Ancorado por","Manage my anchored files":"Gerenciar meus arquivos ancorados","You have no files anchored on this space":"Voc\xEA n\xE3o tem arquivos ancorados neste espa\xE7o","An anchored file already has this name":"Um arquivo ancorado j\xE1 possui esse nome",Settings:Qe,Options:He,Name:Ke,Download:Je,"Download done":"Download conclu\xEDdo","Download failed":"Falha no download","Upload done":"Envio conclu\xEDdo","Upload failed":"Falha no envio","Copy \xB7 Move":"Copiar \xB7 Mover",Move:Xe,"Move done":"Movimenta\xE7\xE3o conclu\xEDda","Move failed":"Falha na movimenta\xE7\xE3o","Deletion done":"Exclus\xE3o conclu\xEDda","Deletion failed":"Falha na exclus\xE3o","Creation failed":"Falha na cria\xE7\xE3o",Copy:Ze,"Copy done":"C\xF3pia conclu\xEDda","Copy failed":"Falha na c\xF3pia","Copy-Paste":"Copiar-Colar","Cut-Paste":"Recortar-Colar",Rename:$e,Edit:eo,"Share inside":"Compartilhar internamente","Share outside":"Compartilhar externamente",Remove:oo,Clipboard:ao,"Send to Clipboard":"Enviar para a \xE1rea de transfer\xEAncia","will be removed":"ser\xE1 removido",Refresh:io,Empty:ro,List:so,Display:no,"Sort by":"Ordenar por",trash_one_file:to,delete_one_file:co,trash_multiple_files:lo,delete_multiple_files:uo,"Moving to trash":"Movendo para a lixeira","Permanent deletion":"Exclus\xE3o permanente","Would you like to empty the trash ?":"Deseja esvaziar a lixeira?","All items will be permanently deleted":"Todos os itens ser\xE3o exclu\xEDdos permanentemente","Actions will be performed in the current folder":"As a\xE7\xF5es ser\xE3o realizadas na pasta atual","The client will no longer have permission to access your account and will no longer be able to synchronize.":"O cliente n\xE3o ter\xE1 mais permiss\xE3o para acessar sua conta e n\xE3o poder\xE1 mais sincronizar.","The access expires":"O acesso expira","The access has expired":"O acesso expirou","Never expires":"Nunca expira",synchronization:po,Synchronization:mo,Synchronizations:ho,Synchronize:vo,Sync:fo,"Stop synchronization":"Parar sincroniza\xE7\xE3o","Synchronize all":"Sincronizar tudo","Stop synchronizations":"Parar sincroniza\xE7\xF5es",Synced:go,"Sync already exists":"A sincroniza\xE7\xE3o j\xE1 existe","Sync was reset":"A sincroniza\xE7\xE3o foi redefinida","Sync deleted":"A sincroniza\xE7\xE3o foi exclu\xEDda","This client":"Este cliente","You are no longer synchronizing":"Voc\xEA n\xE3o est\xE1 mais sincronizando",Compress:bo,Decompress:yo,"Compress and Download":"Comprimir e baixar","Compress and Save":"Comprimir e salvar","Enable compression":"Ativar compress\xE3o","Compression done":"Compress\xE3o conclu\xEDda","Compression failed":"Falha na compress\xE3o","Decompression done":"Descompress\xE3o conclu\xEDda","Decompression failed":"Falha na descompress\xE3o","(this may take longer)":"(isso pode levar mais tempo)","Save in the current directory":"Salvar no diret\xF3rio atual","This name is already used":"Este nome j\xE1 est\xE1 em uso",Info:wo,Size:xo,Modified:So,modified:Ao,Tasks:Co,"Download from URL":"Baixar de URL","Upload files":"Enviar arquivos","Upload folders":"Enviar pastas","Folder name":"Nome da pasta","New folder":"Nova pasta","Document name":"Nome do documento","New document":"Novo documento","File name":"Nome do arquivo","File permissions":"Permiss\xF5es do arquivo",Text:Eo,"Rich Text Format":"Rich Text Format","Forbidden characters":"Caracteres proibidos",Elements:qo,"Malformed URL":"URL malformada",New:To,Folder:No,folder:ko,file:zo,files:Do,directory:Oo,directories:Po,Total:Lo,no_selection:Uo,one_selection:_o,nb_selections:Fo,"Archive name":"Nome do arquivo compactado","Drag and drop your files here":"Arraste e solte seus arquivos aqui","The destination already exists":"O destino j\xE1 existe","This item is already selected":"Este item j\xE1 est\xE1 selecionado","Parent item is already selected":"O item pai j\xE1 est\xE1 selecionado","This file contains binary data that can not be read":"Este arquivo cont\xE9m dados bin\xE1rios que n\xE3o podem ser lidos","Navigation Tree":"\xC1rvore de navega\xE7\xE3o",item:Ro,items:Mo,create:Go,write:Vo,move:jo,delete:Io,modify:Yo,"Delete user":"Excluir usu\xE1rio","Delete all user files":"Excluir todos os arquivos do usu\xE1rio",share:Wo,"Share name":"Nome do compartilhamento","New share":"Novo compartilhamento","New share link":"Novo link de compartilhamento","New link":"Novo link","Edit children shares":"Editar compartilhamentos filhos",Link:Bo,link:Qo,Links:Ho,links:Ko,"Link copied":"Link copiado","Link created":"Link criado","Link deleted":"Link exclu\xEDdo","Link error":"Erro no link","Copy link":"Copiar link","Edit link":"Editar link","Guest Link":"Link de convidado","Guest name":"Nome do convidado","Guest email":"E-mail do convidado","Guest language":"Idioma do convidado",Guest:Jo,Guests:Xo,guest:Zo,guests:$o,"New guest":"Novo convidado","Edit guest":"Editar convidado","Guest created":"Convidado criado","Guest deleted":"Convidado exclu\xEDdo","Guest updated":"Convidado atualizado","Guest error":"Erro do convidado","Add an external location":"Adicionar local externo","External location":"Local externo","Select a file":"Selecione um arquivo","The link is expired":"O link expirou","The link is disabled":"O link est\xE1 desativado","The link was not found":"O link n\xE3o foi encontrado",Expired:ea,expired:oa,none:aa,"The maximum number of access allowed to the link is exceeded":"Excedido o n\xFAmero m\xE1ximo de acessos permitidos ao link","Set a password":"Definir senha","Enter your password":"Digite sua senha",Permissions:ia,"No permissions":"Sem permiss\xF5es",Owner:ra,Me:sa,Shared:na,Created:ta,"Created & Modified":"Criado e modificado","Creation date":"Data de cria\xE7\xE3o","Modification date":"Data de modifica\xE7\xE3o","Deactivation date":"Data de desativa\xE7\xE3o",Date:da,Path:ca,active:la,Active:ua,suspended:pa,"Unable to rename user space":"N\xE3o foi poss\xEDvel renomear o espa\xE7o do usu\xE1rio","Unable to delete user space":"N\xE3o foi poss\xEDvel excluir o espa\xE7o do usu\xE1rio","Unable to update user":"N\xE3o foi poss\xEDvel atualizar o usu\xE1rio","Unable to update user groups":"N\xE3o foi poss\xEDvel atualizar os grupos do usu\xE1rio","User created":"Usu\xE1rio criado","User updated":"Usu\xE1rio atualizado","User not found":"Usu\xE1rio n\xE3o encontrado","Edit user":"Editar usu\xE1rio","Impersonate identity":"Assumir identidade",Type:ma,Description:ha,Visibility:va,"Unknown error !":"Erro desconhecido!",Unknown:fa,Expiration:ga,"Limit access":"Limitar acesso","Current access count":"Contagem atual de acessos",Access:ba,Accessed:ya,"Last access":"\xDAltimo acesso","Last accesses":"\xDAltimos acessos",Comment:wa,Comments:xa,comments:Sa,commented:Aa,"No recent comments":"Sem coment\xE1rios recentes","Write a comment ...":"Escreva um coment\xE1rio...",yes:Ca,no:Ea,Client:qa,Clients:Ta,available:Na,busy:ka,absent:za,offline:Da,"Session has expired":"A sess\xE3o expirou","Please sign in":"Fa\xE7a login novamente",logout:Oa,days:Pa,day:La,Delete:Ua,Scheduler:_a,async:Fa,seq:Ra,Transfers:Ma,Simulate:Ga,Reset:Va,Browse:ja,Action:Ia,Added:Ya,Removed:Wa,Copied:Ba,Moved:Qa,Filtered:Ha,Error:Ka,Server:Ja,Direction:Xa,Conflict:Za,"Show filtered files":"Mostrar arquivos filtrados",recent:$a,Source:ei,Destination:oi,Mode:ai,Sequentially:ii,Asynchronously:ri,fast:si,secure:ni,enabled:ti,Enable:di,disabled:ci,Disable:li,scheduler_unit_hour:ui,scheduler_unit_minute:pi,scheduler_unit_day:mi,"You must have permission to modify the server folder to choose a different sync mode":"Voc\xEA deve ter permiss\xE3o para modificar a pasta do servidor para escolher um modo de sincroniza\xE7\xE3o diferente","upload only":"apenas envio","download only":"apenas download",both:hi,never:vi,"Clear events":"Limpar eventos","Events from":"Eventos de","All syncs":"Todas as sincroniza\xE7\xF5es","All events":"Todos os eventos","will be cleared":"ser\xE3o limpos","No differences":"Sem diferen\xE7as","Select a folder":"Selecione uma pasta","The files containing":"Arquivos contendo","The files starting":"Arquivos que come\xE7am com","The files ending":"Arquivos que terminam com","Expert (Regexp)":"Avan\xE7ado (Regexp)","click on the browse button":"clique no bot\xE3o navegar","with a name or pattern":"por nome ou padr\xE3o","with the extension ('.mp3', '.avi', '.mov' ...)":"pela extens\xE3o ('.mp3', '.avi', '.mov' ...)",Wizard:fi,Next:gi,Previous:bi,Done:yi,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Este assistente ajudar\xE1 voc\xEA a sincronizar um diret\xF3rio do seu computador com um diret\xF3rio Sync-in.","To begin, select a folder on your computer.":"Para come\xE7ar, selecione uma pasta no seu computador.",'You can drag the folder into the area below or click on the "Select" button.':'Voc\xEA pode arrastar a pasta para a \xE1rea abaixo ou clicar no bot\xE3o "Selecionar".',"Drop folder here":"Solte a pasta aqui","This directory is already synced":"Este diret\xF3rio j\xE1 est\xE1 sincronizado","The parent directory is already synced":"O diret\xF3rio pai j\xE1 est\xE1 sincronizado","This directory is not accessible":"Este diret\xF3rio n\xE3o \xE9 acess\xEDvel","This directory is read-only, you will not be able to modify it":"Este diret\xF3rio \xE9 somente leitura; voc\xEA n\xE3o poder\xE1 modific\xE1-lo","Please select the server directory to sync, if it doesn't exist you can create it.":"Selecione o diret\xF3rio do servidor para sincronizar; se n\xE3o existir, voc\xEA pode cri\xE1-lo.","Double click to browse directories":"Clique duas vezes para navegar pelos diret\xF3rios","The data will be synchronized from":"Os dados ser\xE3o sincronizados de","the client folder":"a pasta do cliente","the server folder":"a pasta do servidor","(One-Way)":"(unidirecional)","(Two-Way)":"(bidirecional)",to:wi,"and from":"e de","All files created or modified in":"Todos os arquivos criados ou modificados em","will be ignored and deleted":"ser\xE3o ignorados e exclu\xEDdos","In case of conflict,":"Em caso de conflito,","the most recent files will be kept":"os arquivos mais recentes ser\xE3o mantidos","the client\u2019s files take precedence":"os arquivos do cliente t\xEAm preced\xEAncia","the server\u2019s files take precedence":"os arquivos do servidor t\xEAm preced\xEAncia","the files in":"os arquivos em","will be preferred":"ser\xE3o preferidos","Loading...":"Carregando...","No results":"Nenhum resultado","Download ARM64 version":"Baixar vers\xE3o ARM64","Download Apple Silicon ARM64 version":"Baixar vers\xE3o Apple Silicon ARM64","Download tar.gz version":"Baixar vers\xE3o tar.gz",Repository:xi,public:Si,local:Ai,remote:Ci,"System requirements":"Requisitos do sistema","Feature not enabled":"Recurso n\xE3o habilitado",Website:Ei,Versions:qi,Security:Ti,"Recovery code":"C\xF3digo de recupera\xE7\xE3o","Use a recovery code":"Usar um c\xF3digo de recupera\xE7\xE3o","Authentication code":"C\xF3digo de autentica\xE7\xE3o","Secret copied":"Segredo copiado","Recovery codes copied":"C\xF3digos de recupera\xE7\xE3o copiados","Invalid code":"C\xF3digo inv\xE1lido","Incorrect code or password":"C\xF3digo ou senha incorretos","Application Passwords":"Senhas de aplicativo","Generate a new app password":"Gerar nova senha de aplicativo","Generated password":"Senha gerada","This password will only be shown once after it is generated":"Esta senha ser\xE1 exibida apenas uma vez ap\xF3s ser gerada","Password name":"Nome da senha",Manage:Ni,"Manage app passwords":"Gerenciar senhas de aplicativo","Password Authentication":"Autentica\xE7\xE3o por senha","Two-Factor Authentication":"Autentica\xE7\xE3o de dois fatores","Two-Factor Authentication is enabled":"A autentica\xE7\xE3o de dois fatores est\xE1 ativada","Two-Factor Authentication is disabled":"A autentica\xE7\xE3o de dois fatores est\xE1 desativada","Scan this QR code using your authenticator app.":"Escaneie este QR code com seu app autenticador.","(Such as FreeOTP, Proton Authenticator etc.)":"(Por exemplo, FreeOTP, Proton Authenticator etc.)","Or enter this secret manually":"Ou insira este segredo manualmente","Valid with your TOTP code":"Validar com seu c\xF3digo TOTP","The secret has expired":"O segredo expirou","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Guarde estes c\xF3digos em um local seguro. Eles permitir\xE3o acessar sua conta caso voc\xEA perca o acesso \xE0 autentica\xE7\xE3o de dois fatores.","These recovery codes are for one-time use only and will only be displayed here once.":"Estes c\xF3digos de recupera\xE7\xE3o s\xE3o de uso \xFAnico e ser\xE3o exibidos aqui apenas uma vez.","Overwrite Existing File(s)":"Sobrescrever arquivo(s) existente(s)","Replace Existing File":"Substituir o arquivo existente","Do you want to replace the existing file(s)?":"Deseja substituir o(s) arquivo(s) existente(s)?",RenameFileToExisting:ki,Save:zi,"Line Wrap":"Quebra de linha autom\xE1tica","Read-only":"Somente leitura","Read-write":"Leitura e escrita","Save And Exit":"Salvar e sair","Close Without Saving":"Fechar sem salvar",Undo:Di,Redo:Oi,me:Pi,"The file is locked by":"O arquivo est\xE1 bloqueado por",Unlock:Li,Lock:Ui,Exclusive:_i,"Send an unlock request":"Enviar uma solicita\xE7\xE3o de desbloqueio","sends you a request to unlock the file":"envia para voc\xEA uma solicita\xE7\xE3o para desbloquear o arquivo","As the file owner, you can unlock the file or request the current lock owner to release it.":"Como propriet\xE1rio do arquivo, voc\xEA pode desbloquear o arquivo ou solicitar ao propriet\xE1rio atual do bloqueio que o libere.","The file is edited by":"O arquivo est\xE1 sendo editado por","A new update is available":"Uma nova atualiza\xE7\xE3o est\xE1 dispon\xEDvel",Fullscreen:Fi,Dimensions:Ri,"Start Slideshow":"Iniciar apresenta\xE7\xE3o de slides","Unable to load OnlyOffice editor":"N\xE3o foi poss\xEDvel carregar o editor OnlyOffice","The document server may be unreachable or the configuration is invalid":"O servidor de documentos pode estar inacess\xEDvel ou a configura\xE7\xE3o \xE9 inv\xE1lida","OnlyOffice editor failed to initialize":"Falha ao inicializar o editor OnlyOffice","DocsAPI not available":"DocsAPI n\xE3o est\xE1 dispon\xEDvel","Unknown OnlyOffice error":"Erro desconhecido do OnlyOffice","No editor found":"Nenhum editor encontrado","Choose which editor you want to use to open this document.":"Escolha qual editor voc\xEA deseja usar para abrir este documento.","Open-source office suite built on LibreOffice.":"Su\xEDte de escrit\xF3rio de c\xF3digo aberto baseada no LibreOffice.","Open-source office suite for Microsoft Office.":"Su\xEDte de escrit\xF3rio de c\xF3digo aberto para Microsoft Office.","Remember my choice for next time":"Lembrar minha escolha para a pr\xF3xima vez","Document editor":"Editor de documentos","Ask Me":"Perguntar sempre","Used when both editors support the file type.":"Usado quando ambos os editores suportam o tipo de arquivo.","Enable content indexation for personal files.":"Ativar indexa\xE7\xE3o de conte\xFAdo para arquivos pessoais.",Preferences:Mi,of:Gi,"Sidebar auto-hide enabled":"Oculta\xE7\xE3o autom\xE1tica da barra lateral ativada","Sidebar pinned":"Barra lateral fixada"};export{ba as Access,ya as Accessed,K as Account,Ia as Action,ua as Active,V as Add,Ya as Added,I as Administration,j as Administrator,Be as Anchored,E as Application,fe as Applications,ri as Asynchronously,a as Authentication,be as Avatar,ja as Browse,n as Cancel,qa as Client,Ta as Clients,ao as Clipboard,t as Close,wa as Comment,xa as Comments,bo as Compress,ve as Configuration,s as Confirm,Za as Conflict,oe as Connection,ae as Connections,Ba as Copied,Ze as Copy,ta as Created,da as Date,yo as Decompress,Ua as Delete,ha as Description,oi as Destination,Ri as Dimensions,Xa as Direction,li as Disable,no as Display,yi as Done,Je as Download,eo as Edit,qo as Elements,J as Email,ro as Empty,di as Enable,Ka as Error,k as Event,_i as Exclusive,ga as Expiration,ea as Expired,P as External,z as File,D as Files,c as Filter,Ha as Filtered,l as Filters,No as Folder,Fi as Fullscreen,me as Generate,U as Group,L as Groups,Jo as Guest,Xo as Guests,xe as Home,$ as IP,he as Import,wo as Info,G as Isolated,we as Language,Bo as Link,Ho as Links,so as List,We as Location,Ui as Lock,i as Login,Ni as Manage,le as Manager,pe as Managers,sa as Me,de as Member,ce as Members,ai as Mode,So as Modified,Xe as Move,Qa as Moved,Ke as Name,To as New,gi as Next,T as Notification,N as Notifications,d as Open,He as Options,ra as Owner,r as Password,ca as Path,ia as Permissions,O as Personal,Mi as Preferences,bi as Previous,M as Private,Se as Recents,Oi as Redo,io as Refresh,oo as Remove,Wa as Removed,$e as Rename,ki as RenameFileToExisting,xi as Repository,Va as Reset,Z as Role,zi as Save,_a as Scheduler,p as Search,Ti as Security,m as See,ee as Seen,ii as Sequentially,Ja as Server,Qe as Settings,qe as Share,na as Shared,Ee as Shares,Ga as Simulate,xo as Size,ei as Source,Ge as Space,Ve as Spaces,X as Status,fo as Sync,go as Synced,mo as Synchronization,ho as Synchronizations,vo as Synchronize,Co as Tasks,Eo as Text,Lo as Total,Ma as Transfers,Ce as Trash,ma as Type,Di as Undo,fa as Unknown,se as Unlimited,Li as Unlock,ye as Update,Y as User,B as Users,qi as Versions,va as Visibility,R as Visible,Ei as Website,fi as Wizard,za as absent,H as account,la as active,Ie as anchored,q as application,ge as applications,Fa as async,Na as available,ie as available_space_is_low,hi as both,ka as busy,Aa as commented,Sa as comments,Go as create,La as day,Pa as days,Vi as default,Io as delete,uo as delete_multiple_files,co as delete_one_file,_e as desktop_app_access,Fe as desktop_app_sync,Po as directories,Oo as directory,ci as disabled,ti as enabled,oa as expired,si as fast,zo as file,Do as files,ko as folder,_ as group,F as groups,Zo as guest,$o as guests,Le as guests_admin,Ro as item,Mo as items,Qo as link,Ko as links,Ai as local,Oa as logout,ue as manager,Pi as me,ne as member,te as members,Ao as modified,Yo as modify,jo as move,w as nb_actions,b as nb_active_tasks,y as nb_elements,S as nb_messages,C as nb_notifications,Fo as nb_selections,f as nb_tasks,vi as never,Ea as no,Uo as no_selection,h as no_task,aa as none,Gi as of,Da as offline,g as one_active_task,x as one_message,A as one_notification,_o as one_selection,v as one_task,re as online,Ue as personal_groups_admin,ke as personal_space,Si as public,$a as recent,Ae as recents,Ci as remote,mi as scheduler_unit_day,ui as scheduler_unit_hour,pi as scheduler_unit_minute,u as search,ni as secure,Ra as seq,Wo as share,Ne as shared,Te as shares,Oe as shares_access,Pe as shares_admin,je as spaces,ze as spaces_access,De as spaces_admin,pa as suspended,po as synchronization,wi as to,lo as trash_multiple_files,to as trash_one_file,Ye as unanchored,W as user,Q as users,Me as webdav,Re as webdav_access,Vo as write,Ca as yes};
1
+ import"./chunk-KAVP6UXH.js";var a="Autentica\xE7\xE3o",i="Login",r="Senha",s="Confirmar",n="Cancelar",t="Fechar",d="Abrir",c="Filtrar",l="Filtros",u="pesquisar",p="Pesquisar",m="Ver",h="Nenhuma tarefa",v="{{ nb }} tarefa conclu\xEDda",f="{{ nb }} tarefas conclu\xEDdas",g="{{ nba }} tarefa em andamento de {{ nb }}",b="{{ nba }} tarefas em andamento de {{ nb }}",y="{{nb}} item(ns)",w="{{nb}} a\xE7\xE3o(\xF5es)",x="{{ nb }} nova mensagem",S="{{ nb }} novas mensagens",A="{{ nb }} notifica\xE7\xE3o n\xE3o lida",C="{{ nb }} notifica\xE7\xF5es n\xE3o lidas",E="Aplicativo",q="aplicativo",T="Notifica\xE7\xE3o",N="Notifica\xE7\xF5es",k="Evento",z="Arquivo",D="Arquivos",O="Pessoal",P="Externo",L="Grupos",U="Grupo",_="grupo",F="grupos",R="Vis\xEDvel",M="Privado",G="Isolado",V="Adicionar",j="Administrador",I="Administra\xE7\xE3o",Y="Usu\xE1rio",W="usu\xE1rio",B="Usu\xE1rios",Q="usu\xE1rios",H="conta",K="Conta",J="E-mail",X="Status",Z="Fun\xE7\xE3o",$="IP",ee="Visto",oe="Conex\xE3o",ae="Conex\xF5es",ie="Pouco espa\xE7o dispon\xEDvel ({{ nb }}%)",re="online",se="Ilimitado",ne="membro",te="membros",de="Membro",ce="Membros",le="Gerente",ue="gerente",pe="Gerentes",me="Gerar",he="Importar",ve="Configura\xE7\xE3o",fe="Aplicativos",ge="aplicativos",be="Avatar",ye="Atualizar",we="Idioma",xe="In\xEDcio",Se="Recentes",Ae="recentes",Ce="Lixeira",Ee="Compartilhamentos",qe="Compartilhar",Te="compartilhamentos",Ne="compartilhado",ke="Acesso ao espa\xE7o pessoal",ze="Acesso aos espa\xE7os",De="Administra\xE7\xE3o de espa\xE7os",Oe="Acesso aos compartilhamentos",Pe="Administra\xE7\xE3o de compartilhamentos",Le="Administra\xE7\xE3o de convidados",Ue="Administra\xE7\xE3o de grupos pessoais",_e="Acesso pelo aplicativo desktop",Fe="Sincroniza\xE7\xE3o pelo aplicativo desktop",Re="Acesso WebDAV",Me="WebDAV",Ge="Espa\xE7o",Ve="Espa\xE7os",je="espa\xE7os",Ie="ancorou",Ye="desancorou",We="Local",Be="Ancorado",Qe="Configura\xE7\xF5es",He="Op\xE7\xF5es",Ke="Nome",Je="Baixar",Xe="Mover",Ze="Copiar",$e="Renomear",eo="Editar",oo="Remover",ao="\xC1rea de transfer\xEAncia",io="Atualizar",ro="Esvaziar",so="Lista",no="Exibi\xE7\xE3o",to="Deseja mover <b>{{arg}}</b> para a lixeira?",co="Deseja excluir permanentemente <b>{{arg}}</b>?",lo="Deseja mover estes <b>{{arg}} arquivos</b> para a lixeira?",uo="Deseja excluir permanentemente estes <b>{{arg}} arquivos</b>?",po="sincroniza\xE7\xE3o",mo="Sincroniza\xE7\xE3o",ho="Sincroniza\xE7\xF5es",vo="Sincronizar",fo="Sync",go="Sincronizado",bo="Comprimir",yo="Descomprimir",wo="Info",xo="Tamanho",So="Modificado",Ao="modificado",Co="Tarefas",Eo="Texto",qo="Elementos",To="Novo",No="Pasta",ko="pasta",zo="arquivo",Do="arquivos",Oo="diret\xF3rio",Po="diret\xF3rios",Lo="Total",Uo="nenhum item selecionado",_o="{{ nb }} item selecionado",Fo="{{ nb }} itens selecionados",Ro="item",Mo="itens",Go="criar",Vo="escrever",jo="mover",Io="excluir",Yo="modificar",Wo="compartilhamento",Bo="Link",Qo="link",Ho="Links",Ko="links",Jo="Convidado",Xo="Convidados",Zo="convidado",$o="convidados",ea="Expirado",oa="expirado",aa="nenhum",ia="Permiss\xF5es",ra="Propriet\xE1rio",sa="Eu",na="Compartilhado",ta="Criado",da="Data",ca="Caminho",la="ativo",ua="Ativo",pa="suspenso",ma="Tipo",ha="Descri\xE7\xE3o",va="Visibilidade",fa="Desconhecido",ga="Expira\xE7\xE3o",ba="Acesso",ya="Acessado",wa="Comentar",xa="Coment\xE1rios",Sa="coment\xE1rios",Aa="comentou",Ca="sim",Ea="n\xE3o",qa="Cliente",Ta="Clientes",Na="dispon\xEDvel",ka="ocupado",za="ausente",Da="offline",Oa="sair",Pa="dias",La="dia",Ua="Excluir",_a="Agendador",Fa="paralelo",Ra="sequencial",Ma="Transfer\xEAncias",Ga="Simular",Va="Redefinir",ja="Navegar",Ia="A\xE7\xE3o",Ya="Adicionado",Wa="Removido",Ba="Copiado",Qa="Movido",Ha="Filtrado",Ka="Erro",Ja="Servidor",Xa="Dire\xE7\xE3o",Za="Conflito",$a="recentes",ei="Origem",oi="Destino",ai="Modo",ii="Sequencialmente",ri="Paralelamente",si="r\xE1pido",ni="seguro",ti="ativado",di="Ativar",ci="desativado",li="Desativar",ui="horas",pi="minutos",mi="dias",hi="ambos",vi="nunca",fi="Assistente",gi="Pr\xF3ximo",bi="Anterior",yi="Concluir",wi="para",xi="Reposit\xF3rio",Si="p\xFAblico",Ai="local",Ci="remoto",Ei="Site",qi="Vers\xF5es",Ti="Seguran\xE7a",Ni="Gerenciar",ki="Deseja renomear <b>{{ old }}</b> para <b>{{ new }}</b>?",zi="Salvar",Di="Desfazer",Oi="Refazer",Pi="eu",Li="Desbloquear",Ui="Bloqueio",_i="Exclusivo",Fi="Tela cheia",Ri="Dimens\xF5es",Mi="Prefer\xEAncias",Gi="de",Vi={"Sign-in to your account":"Entre na sua conta","Wrong login or password":"Nome de usu\xE1rio ou senha incorretos","Authentication service error":"Erro no servi\xE7o de autentica\xE7\xE3o","Account locked":"Conta bloqueada","Account is not allowed":"Conta n\xE3o permitida","Account matching error":"Erro de correspond\xEAncia de conta",Authentication:a,"Sign in":"Entrar",Login:i,Password:r,"Login or Email":"Login ou e-mail","Login already used":"Login j\xE1 utilizado","You are already logged in":"Voc\xEA j\xE1 est\xE1 conectado","Name already used":"Nome j\xE1 utilizado","Token has expired":"O token expirou",Confirm:s,Cancel:n,Close:t,Open:d,"Server connection error":"Erro de conex\xE3o com o servidor",Filter:c,Filters:l,search:u,Search:p,"Search for content":"Pesquisar conte\xFAdo","Search for files":"Pesquisar arquivos","Full-text search":"Pesquisa de texto completo","Full-text search is disabled":"A pesquisa de texto completo est\xE1 desativada","Type to search for users or groups to add":"Digite para pesquisar usu\xE1rios ou grupos para adicionar","Type to search for groups to add":"Digite para pesquisar grupos para adicionar","Type to search for users to add":"Digite para pesquisar usu\xE1rios para adicionar","Type to search for managers to add":"Digite para pesquisar gerentes para adicionar","Member since":"Membro desde","Windows Manager":"Gerenciador de janelas","Mark as read":"Marcar como lido",See:m,no_task:h,one_task:v,nb_tasks:f,one_active_task:g,nb_active_tasks:b,nb_elements:y,nb_actions:w,one_message:x,nb_messages:S,one_notification:A,nb_notifications:C,Application:E,application:q,"application and email":"aplicativo e e-mail",Notification:T,Notifications:N,Event:k,File:z,Files:D,"Personal files":"Arquivos pessoais",Personal:O,External:P,"Share status":"Status do compartilhamento","Share description":"Descri\xE7\xE3o do compartilhamento","No recent files":"Nenhum arquivo recente",Groups:L,Group:U,group:_,"New personal group":"Novo grupo pessoal","Edit personal group":"Editar grupo pessoal","personal group":"grupo pessoal","Personal group":"Grupo pessoal","Personal groups":"Grupos pessoais",groups:F,"Parent group":"Grupo pai","Group updated":"Grupo atualizado","Group created":"Grupo criado","Group not found":"Grupo n\xE3o encontrado","Group error":"Erro no grupo","Set as group manager":"Definir como gerente do grupo","As a manager, the user will be able to manage the group and its members.":"Como gerente, o usu\xE1rio poder\xE1 gerenciar o grupo e seus membros.","As a manager, the user will be able to manage group members but not group properties.":"Como gerente, o usu\xE1rio poder\xE1 gerenciar os membros, mas n\xE3o as propriedades do grupo.",Visible:R,Private:M,Isolated:G,"Select the parent group":"Selecione o grupo pai","from the group":"do grupo","New group":"Novo grupo","Edit group":"Editar grupo","Leave group":"Sair do grupo","Delete group":"Excluir grupo","Remove from group":"Remover do grupo","Group must have at least one manager":"O grupo deve ter pelo menos um gerente","The group was left":"Voc\xEA saiu do grupo","The group was not left":"N\xE3o foi poss\xEDvel sair do grupo","will be left, you will no longer be a member of this group":"ser\xE1 deixado, voc\xEA n\xE3o ser\xE1 mais membro deste grupo","All users can see this group.":"Todos os usu\xE1rios podem ver este grupo.","Users who are not members of this group cannot see it.":"Usu\xE1rios que n\xE3o s\xE3o membros deste grupo n\xE3o podem v\xEA-lo.","The group is not visible, its members cannot see it and cannot see each other.":"O grupo n\xE3o \xE9 vis\xEDvel; seus membros n\xE3o o veem e n\xE3o se veem entre si.",Add:V,"Add members":"Adicionar membros","See members":"Ver membros",Administrator:j,Administration:I,User:Y,user:W,Users:B,users:Q,"New user":"Novo usu\xE1rio",account:H,Account:K,"Account status":"Status da conta",Email:J,"Email already used":"E-mail j\xE1 utilizado","First name":"Nome","Last name":"Sobrenome","Full name":"Nome completo",Status:X,Role:Z,IP:$,"IP Addresses":"Endere\xE7os IP",Seen:ee,Connection:oe,Connections:ae,"Confirm deletion":"Confirmar exclus\xE3o","Confirm permanent deletion of data":"Confirmar exclus\xE3o permanente dos dados","Space and data will be deleted in":"O espa\xE7o e os dados ser\xE3o exclu\xEDdos em","Space is disabled":"O espa\xE7o est\xE1 desativado","Storage Space":"Espa\xE7o de armazenamento","Storage Quota":"Cota de armazenamento","Storage Usage":"Uso do armazenamento","Space status":"Status do espa\xE7o","Storage quota exceeded":"Cota de armazenamento excedida","Storage quota will be exceeded":"A cota de armazenamento ser\xE1 excedida","No more space available":"Sem espa\xE7o dispon\xEDvel",available_space_is_low:ie,online:re,"Online users":"Usu\xE1rios online",Unlimited:se,member:ne,members:te,Member:de,Members:ce,Manager:le,manager:ue,Managers:pe,"At least one manager is required":"\xC9 necess\xE1rio pelo menos um gerente",Generate:me,Import:he,Configuration:ve,Applications:fe,applications:ge,"Permissions inherited from groups":"Permiss\xF5es herdadas dos grupos","Only the group will be deleted, the members will no longer be part of it.":"Apenas o grupo ser\xE1 exclu\xEDdo; os membros n\xE3o far\xE3o mais parte dele.",Avatar:be,Update:ye,"current password":"senha atual","new password":"nova senha","Change me !":"Mude-me!","Current password missing !":"Senha atual ausente!","New password missing !":"Nova senha ausente!","New password must have 8 characters minimum":"A nova senha deve ter no m\xEDnimo 8 caracteres","Current password does not match":"A senha atual n\xE3o confere","Password has been updated":"A senha foi atualizada","Unable to update password":"N\xE3o foi poss\xEDvel atualizar a senha","Bad password":"Senha incorreta","too many login attempts":"muitas tentativas de login",Language:we,"Language updated":"Idioma atualizado","Unable to update language":"N\xE3o foi poss\xEDvel atualizar o idioma","Notification preference updated":"Prefer\xEAncia de notifica\xE7\xE3o atualizada","Full-text search preference updated":"Prefer\xEAncia de pesquisa de texto completo atualizada","Unable to update notification preference":"N\xE3o foi poss\xEDvel atualizar a prefer\xEAncia de notifica\xE7\xE3o","Unable to update full-text search preference":"N\xE3o foi poss\xEDvel atualizar a prefer\xEAncia de pesquisa de texto completo","Unable to open document":"N\xE3o foi poss\xEDvel abrir o documento","Unable to save document":"N\xE3o \xE9 poss\xEDvel salvar o documento",Home:xe,Recents:Se,recents:Ae,Trash:Ce,"trash bins":"lixeiras",Shares:Ee,Share:qe,shares:Te,shared:Ne,personal_space:ke,spaces_access:ze,spaces_admin:De,shares_access:Oe,shares_admin:Pe,guests_admin:Le,personal_groups_admin:Ue,desktop_app_access:_e,desktop_app_sync:Fe,webdav_access:Re,"Create share":"Criar compartilhamento","Edit share":"Editar compartilhamento","Delete share":"Excluir compartilhamento","Child shares":"Compartilhamentos filhos",webdav:Me,"Share is disabled":"O compartilhamento est\xE1 desativado",Space:Ge,Spaces:Ve,spaces:je,"Space name":"Nome do espa\xE7o","New space":"Novo espa\xE7o","Create a new space":"Criar um novo espa\xE7o","Create space":"Criar espa\xE7o","Edit space":"Editar espa\xE7o","Delete space":"Excluir espa\xE7o","Create a new share":"Criar um novo compartilhamento","Type to search for space to select":"Digite para pesquisar o espa\xE7o a selecionar","Anchor to a space":"Ancorar a um espa\xE7o","Anchor files to a space":"Ancorar arquivos a um espa\xE7o","You have been invited to join this space":"Voc\xEA foi convidado a participar deste espa\xE7o","You have been invited to join this share":"Voc\xEA foi convidado a participar deste compartilhamento","Shared with others":"Compartilhado com outros","With others":"Com outros","Shared with me":"Compartilhado comigo","With me":"Comigo","Shared via links":"Compartilhado via links","Via links":"Via links","Shared from":"Compartilhado por","share with you this":"compartilha com voc\xEA isto","shared with you":"compartilhou com voc\xEA","no longer share with you":"n\xE3o compartilha mais com voc\xEA","You now have access to the space":"Voc\xEA agora tem acesso ao espa\xE7o","You no longer have access to the space":"Voc\xEA n\xE3o tem mais acesso ao espa\xE7o","This space has been permanently deleted":"Este espa\xE7o foi exclu\xEDdo permanentemente","You now have access to the share":"Voc\xEA agora tem acesso ao compartilhamento","You no longer have access to the share":"Voc\xEA n\xE3o tem mais acesso ao compartilhamento","You are no longer a member of the parent share, your child share has been deleted":"Voc\xEA n\xE3o \xE9 mais membro do compartilhamento pai; seu compartilhamento filho foi exclu\xEDdo",anchored:Ie,unanchored:Ye,"Share not found":"Compartilhamento n\xE3o encontrado","Go to":"Ir para",Location:We,"Name and location are required":"Nome e local s\xE3o obrigat\xF3rios","Parent location already exists in files":"O local pai j\xE1 existe nos arquivos","Check the location":"Verifique o local","Location not found":"Local n\xE3o encontrado","Forbidden resource":"Local n\xE3o autorizado","Resource already exists":"O item j\xE1 existe","The location does not exist":"O local n\xE3o existe","The location is not readable":"O local n\xE3o \xE9 leg\xEDvel","The location is not writeable":"O local n\xE3o \xE9 grav\xE1vel","The location is a directory":"O local \xE9 um diret\xF3rio","The file is locked":"O arquivo est\xE1 bloqueado","This access is protected by a password":"Este acesso \xE9 protegido por senha","You do not have share permission":"Voc\xEA n\xE3o tem permiss\xE3o para compartilhar","You can not share a space":"Voc\xEA n\xE3o pode compartilhar um espa\xE7o","You can not remove an anchored file":"Voc\xEA n\xE3o pode remover um arquivo ancorado","You are not allowed to write here":"Voc\xEA n\xE3o tem permiss\xE3o para escrever aqui","You are not allowed to do this action":"Voc\xEA n\xE3o tem permiss\xE3o para realizar esta a\xE7\xE3o","You can not move an anchored file":"Voc\xEA n\xE3o pode mover um arquivo ancorado","You can not move a locked file":"Voc\xEA n\xE3o pode mover um arquivo bloqueado",Anchored:Be,"Anchored by":"Ancorado por","Manage my anchored files":"Gerenciar meus arquivos ancorados","You have no files anchored on this space":"Voc\xEA n\xE3o tem arquivos ancorados neste espa\xE7o","An anchored file already has this name":"Um arquivo ancorado j\xE1 possui esse nome",Settings:Qe,Options:He,Name:Ke,Download:Je,"Download done":"Download conclu\xEDdo","Download failed":"Falha no download","Upload done":"Envio conclu\xEDdo","Upload failed":"Falha no envio","Copy \xB7 Move":"Copiar \xB7 Mover",Move:Xe,"Move done":"Movimenta\xE7\xE3o conclu\xEDda","Move failed":"Falha na movimenta\xE7\xE3o","Deletion done":"Exclus\xE3o conclu\xEDda","Deletion failed":"Falha na exclus\xE3o","Creation failed":"Falha na cria\xE7\xE3o",Copy:Ze,"Copy done":"C\xF3pia conclu\xEDda","Copy failed":"Falha na c\xF3pia","Copy-Paste":"Copiar-Colar","Cut-Paste":"Recortar-Colar",Rename:$e,Edit:eo,"Share inside":"Compartilhar internamente","Share outside":"Compartilhar externamente",Remove:oo,Clipboard:ao,"Send to Clipboard":"Enviar para a \xE1rea de transfer\xEAncia","will be removed":"ser\xE1 removido",Refresh:io,Empty:ro,List:so,Display:no,"Sort by":"Ordenar por",trash_one_file:to,delete_one_file:co,trash_multiple_files:lo,delete_multiple_files:uo,"Moving to trash":"Movendo para a lixeira","Permanent deletion":"Exclus\xE3o permanente","Would you like to empty the trash ?":"Deseja esvaziar a lixeira?","All items will be permanently deleted":"Todos os itens ser\xE3o exclu\xEDdos permanentemente","Actions will be performed in the current folder":"As a\xE7\xF5es ser\xE3o realizadas na pasta atual","The client will no longer have permission to access your account and will no longer be able to synchronize.":"O cliente n\xE3o ter\xE1 mais permiss\xE3o para acessar sua conta e n\xE3o poder\xE1 mais sincronizar.","The access expires":"O acesso expira","The access has expired":"O acesso expirou","Never expires":"Nunca expira",synchronization:po,Synchronization:mo,Synchronizations:ho,Synchronize:vo,Sync:fo,"Stop synchronization":"Parar sincroniza\xE7\xE3o","Synchronize all":"Sincronizar tudo","Stop synchronizations":"Parar sincroniza\xE7\xF5es",Synced:go,"Sync already exists":"A sincroniza\xE7\xE3o j\xE1 existe","Sync was reset":"A sincroniza\xE7\xE3o foi redefinida","Sync deleted":"A sincroniza\xE7\xE3o foi exclu\xEDda","This client":"Este cliente","You are no longer synchronizing":"Voc\xEA n\xE3o est\xE1 mais sincronizando",Compress:bo,Decompress:yo,"Compress and Download":"Comprimir e baixar","Compress and Save":"Comprimir e salvar","Enable compression":"Ativar compress\xE3o","Compression done":"Compress\xE3o conclu\xEDda","Compression failed":"Falha na compress\xE3o","Decompression done":"Descompress\xE3o conclu\xEDda","Decompression failed":"Falha na descompress\xE3o","(this may take longer)":"(isso pode levar mais tempo)","Save in the current directory":"Salvar no diret\xF3rio atual","This name is already used":"Este nome j\xE1 est\xE1 em uso",Info:wo,Size:xo,Modified:So,modified:Ao,Tasks:Co,"Download from URL":"Baixar de URL","Upload files":"Enviar arquivos","Upload folders":"Enviar pastas","Folder name":"Nome da pasta","New folder":"Nova pasta","Document name":"Nome do documento","New document":"Novo documento","File name":"Nome do arquivo","File permissions":"Permiss\xF5es do arquivo",Text:Eo,"Rich Text Format":"Rich Text Format","Forbidden characters":"Caracteres proibidos",Elements:qo,"Malformed URL":"URL malformada",New:To,Folder:No,folder:ko,file:zo,files:Do,directory:Oo,directories:Po,Total:Lo,no_selection:Uo,one_selection:_o,nb_selections:Fo,"Archive name":"Nome do arquivo compactado","Drag and drop your files here":"Arraste e solte seus arquivos aqui","The destination already exists":"O destino j\xE1 existe","This item is already selected":"Este item j\xE1 est\xE1 selecionado","Parent item is already selected":"O item pai j\xE1 est\xE1 selecionado","This file contains binary data that can not be read":"Este arquivo cont\xE9m dados bin\xE1rios que n\xE3o podem ser lidos","Navigation Tree":"\xC1rvore de navega\xE7\xE3o",item:Ro,items:Mo,create:Go,write:Vo,move:jo,delete:Io,modify:Yo,"Delete user":"Excluir usu\xE1rio","Delete all user files":"Excluir todos os arquivos do usu\xE1rio",share:Wo,"Share name":"Nome do compartilhamento","New share":"Novo compartilhamento","New share link":"Novo link de compartilhamento","New link":"Novo link","Edit children shares":"Editar compartilhamentos filhos",Link:Bo,link:Qo,Links:Ho,links:Ko,"Link copied":"Link copiado","Link created":"Link criado","Link deleted":"Link exclu\xEDdo","Link error":"Erro no link","Copy link":"Copiar link","Edit link":"Editar link","Guest Link":"Link de convidado","Guest name":"Nome do convidado","Guest email":"E-mail do convidado","Guest language":"Idioma do convidado",Guest:Jo,Guests:Xo,guest:Zo,guests:$o,"New guest":"Novo convidado","Edit guest":"Editar convidado","Guest created":"Convidado criado","Guest deleted":"Convidado exclu\xEDdo","Guest updated":"Convidado atualizado","Guest error":"Erro do convidado","Add an external location":"Adicionar local externo","External location":"Local externo","Select a file":"Selecione um arquivo","The link is expired":"O link expirou","The link is disabled":"O link est\xE1 desativado","The link was not found":"O link n\xE3o foi encontrado",Expired:ea,expired:oa,none:aa,"The maximum number of access allowed to the link is exceeded":"Excedido o n\xFAmero m\xE1ximo de acessos permitidos ao link","Set a password":"Definir senha","Enter your password":"Digite sua senha",Permissions:ia,"No permissions":"Sem permiss\xF5es",Owner:ra,Me:sa,Shared:na,Created:ta,"Created & Modified":"Criado e modificado","Creation date":"Data de cria\xE7\xE3o","Modification date":"Data de modifica\xE7\xE3o","Deactivation date":"Data de desativa\xE7\xE3o",Date:da,Path:ca,active:la,Active:ua,suspended:pa,"Unable to rename user space":"N\xE3o foi poss\xEDvel renomear o espa\xE7o do usu\xE1rio","Unable to delete user space":"N\xE3o foi poss\xEDvel excluir o espa\xE7o do usu\xE1rio","Unable to update user":"N\xE3o foi poss\xEDvel atualizar o usu\xE1rio","Unable to update user groups":"N\xE3o foi poss\xEDvel atualizar os grupos do usu\xE1rio","User created":"Usu\xE1rio criado","User updated":"Usu\xE1rio atualizado","User not found":"Usu\xE1rio n\xE3o encontrado","Edit user":"Editar usu\xE1rio","Impersonate identity":"Assumir identidade",Type:ma,Description:ha,Visibility:va,"Unknown error !":"Erro desconhecido!",Unknown:fa,Expiration:ga,"Limit access":"Limitar acesso","Current access count":"Contagem atual de acessos",Access:ba,Accessed:ya,"Last access":"\xDAltimo acesso","Last accesses":"\xDAltimos acessos",Comment:wa,Comments:xa,comments:Sa,commented:Aa,"No recent comments":"Sem coment\xE1rios recentes","Write a comment ...":"Escreva um coment\xE1rio...",yes:Ca,no:Ea,Client:qa,Clients:Ta,available:Na,busy:ka,absent:za,offline:Da,"Session has expired":"A sess\xE3o expirou","Please sign in":"Fa\xE7a login novamente",logout:Oa,days:Pa,day:La,Delete:Ua,Scheduler:_a,async:Fa,seq:Ra,Transfers:Ma,Simulate:Ga,Reset:Va,Browse:ja,Action:Ia,Added:Ya,Removed:Wa,Copied:Ba,Moved:Qa,Filtered:Ha,Error:Ka,Server:Ja,Direction:Xa,Conflict:Za,"Show filtered files":"Mostrar arquivos filtrados",recent:$a,Source:ei,Destination:oi,Mode:ai,Sequentially:ii,Asynchronously:ri,fast:si,secure:ni,enabled:ti,Enable:di,disabled:ci,Disable:li,scheduler_unit_hour:ui,scheduler_unit_minute:pi,scheduler_unit_day:mi,"You must have permission to modify the server folder to choose a different sync mode":"Voc\xEA deve ter permiss\xE3o para modificar a pasta do servidor para escolher um modo de sincroniza\xE7\xE3o diferente","upload only":"apenas envio","download only":"apenas download",both:hi,never:vi,"Clear events":"Limpar eventos","Events from":"Eventos de","All syncs":"Todas as sincroniza\xE7\xF5es","All events":"Todos os eventos","will be cleared":"ser\xE3o limpos","No differences":"Sem diferen\xE7as","Select a folder":"Selecione uma pasta","The files containing":"Arquivos contendo","The files starting":"Arquivos que come\xE7am com","The files ending":"Arquivos que terminam com","Expert (Regexp)":"Avan\xE7ado (Regexp)","click on the browse button":"clique no bot\xE3o navegar","with a name or pattern":"por nome ou padr\xE3o","with the extension ('.mp3', '.avi', '.mov' ...)":"pela extens\xE3o ('.mp3', '.avi', '.mov' ...)",Wizard:fi,Next:gi,Previous:bi,Done:yi,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Este assistente ajudar\xE1 voc\xEA a sincronizar um diret\xF3rio do seu computador com um diret\xF3rio Sync-in.","To begin, select a folder on your computer.":"Para come\xE7ar, selecione uma pasta no seu computador.",'You can drag the folder into the area below or click on the "Select" button.':'Voc\xEA pode arrastar a pasta para a \xE1rea abaixo ou clicar no bot\xE3o "Selecionar".',"Drop folder here":"Solte a pasta aqui","This directory is already synced":"Este diret\xF3rio j\xE1 est\xE1 sincronizado","The parent directory is already synced":"O diret\xF3rio pai j\xE1 est\xE1 sincronizado","This directory is not accessible":"Este diret\xF3rio n\xE3o \xE9 acess\xEDvel","This directory is read-only, you will not be able to modify it":"Este diret\xF3rio \xE9 somente leitura; voc\xEA n\xE3o poder\xE1 modific\xE1-lo","Please select the server directory to sync, if it doesn't exist you can create it.":"Selecione o diret\xF3rio do servidor para sincronizar; se n\xE3o existir, voc\xEA pode cri\xE1-lo.","Double click to browse directories":"Clique duas vezes para navegar pelos diret\xF3rios","The data will be synchronized from":"Os dados ser\xE3o sincronizados de","the client folder":"a pasta do cliente","the server folder":"a pasta do servidor","(One-Way)":"(unidirecional)","(Two-Way)":"(bidirecional)",to:wi,"and from":"e de","All files created or modified in":"Todos os arquivos criados ou modificados em","will be ignored and deleted":"ser\xE3o ignorados e exclu\xEDdos","In case of conflict,":"Em caso de conflito,","the most recent files will be kept":"os arquivos mais recentes ser\xE3o mantidos","the client\u2019s files take precedence":"os arquivos do cliente t\xEAm preced\xEAncia","the server\u2019s files take precedence":"os arquivos do servidor t\xEAm preced\xEAncia","the files in":"os arquivos em","will be preferred":"ser\xE3o preferidos","Loading...":"Carregando...","No results":"Nenhum resultado","Download ARM64 version":"Baixar vers\xE3o ARM64","Download Apple Silicon ARM64 version":"Baixar vers\xE3o Apple Silicon ARM64","Download tar.gz version":"Baixar vers\xE3o tar.gz",Repository:xi,public:Si,local:Ai,remote:Ci,"System requirements":"Requisitos do sistema","Feature not enabled":"Recurso n\xE3o habilitado",Website:Ei,Versions:qi,Security:Ti,"Recovery code":"C\xF3digo de recupera\xE7\xE3o","Use a recovery code":"Usar um c\xF3digo de recupera\xE7\xE3o","Authentication code":"C\xF3digo de autentica\xE7\xE3o","Secret copied":"Segredo copiado","Recovery codes copied":"C\xF3digos de recupera\xE7\xE3o copiados","Invalid code":"C\xF3digo inv\xE1lido","Incorrect code or password":"C\xF3digo ou senha incorretos","Application Passwords":"Senhas de aplicativo","Generate a new app password":"Gerar nova senha de aplicativo","Generated password":"Senha gerada","This password will only be shown once after it is generated":"Esta senha ser\xE1 exibida apenas uma vez ap\xF3s ser gerada","Password name":"Nome da senha",Manage:Ni,"Manage app passwords":"Gerenciar senhas de aplicativo","Password Authentication":"Autentica\xE7\xE3o por senha","Two-Factor Authentication":"Autentica\xE7\xE3o de dois fatores","Two-Factor Authentication is enabled":"A autentica\xE7\xE3o de dois fatores est\xE1 ativada","Two-Factor Authentication is disabled":"A autentica\xE7\xE3o de dois fatores est\xE1 desativada","Scan this QR code using your authenticator app.":"Escaneie este QR code com seu app autenticador.","(Such as FreeOTP, Proton Authenticator etc.)":"(Por exemplo, FreeOTP, Proton Authenticator etc.)","Or enter this secret manually":"Ou insira este segredo manualmente","Valid with your TOTP code":"Validar com seu c\xF3digo TOTP","The secret has expired":"O segredo expirou","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Guarde estes c\xF3digos em um local seguro. Eles permitir\xE3o acessar sua conta caso voc\xEA perca o acesso \xE0 autentica\xE7\xE3o de dois fatores.","These recovery codes are for one-time use only and will only be displayed here once.":"Estes c\xF3digos de recupera\xE7\xE3o s\xE3o de uso \xFAnico e ser\xE3o exibidos aqui apenas uma vez.","Overwrite Existing File(s)":"Sobrescrever arquivo(s) existente(s)","Replace Existing File":"Substituir o arquivo existente","Do you want to replace the existing file(s)?":"Deseja substituir o(s) arquivo(s) existente(s)?",RenameFileToExisting:ki,Save:zi,"Line Wrap":"Quebra de linha autom\xE1tica","Read-only":"Somente leitura","Read-write":"Leitura e escrita","Save And Exit":"Salvar e sair","Close Without Saving":"Fechar sem salvar",Undo:Di,Redo:Oi,me:Pi,"The file is locked by":"O arquivo est\xE1 bloqueado por",Unlock:Li,Lock:Ui,Exclusive:_i,"Send an unlock request":"Enviar uma solicita\xE7\xE3o de desbloqueio","sends you a request to unlock the file":"envia para voc\xEA uma solicita\xE7\xE3o para desbloquear o arquivo","As the file owner, you can unlock the file or request the current lock owner to release it.":"Como propriet\xE1rio do arquivo, voc\xEA pode desbloquear o arquivo ou solicitar ao propriet\xE1rio atual do bloqueio que o libere.","The file is edited by":"O arquivo est\xE1 sendo editado por","A new update is available":"Uma nova atualiza\xE7\xE3o est\xE1 dispon\xEDvel",Fullscreen:Fi,Dimensions:Ri,"Start Slideshow":"Iniciar apresenta\xE7\xE3o de slides","Unable to load OnlyOffice editor":"N\xE3o foi poss\xEDvel carregar o editor OnlyOffice","The document server may be unreachable or the configuration is invalid":"O servidor de documentos pode estar inacess\xEDvel ou a configura\xE7\xE3o \xE9 inv\xE1lida","OnlyOffice editor failed to initialize":"Falha ao inicializar o editor OnlyOffice","DocsAPI not available":"DocsAPI n\xE3o est\xE1 dispon\xEDvel","Unknown OnlyOffice error":"Erro desconhecido do OnlyOffice","No editor found":"Nenhum editor encontrado","Choose which editor you want to use to open this document.":"Escolha qual editor voc\xEA deseja usar para abrir este documento.","Open-source office suite built on LibreOffice.":"Su\xEDte de escrit\xF3rio de c\xF3digo aberto baseada no LibreOffice.","Open-source office suite for Microsoft Office.":"Su\xEDte de escrit\xF3rio de c\xF3digo aberto para Microsoft Office.","Remember my choice for next time":"Lembrar minha escolha para a pr\xF3xima vez","Document editor":"Editor de documentos","Ask Me":"Perguntar sempre","Used when both editors support the file type.":"Usado quando ambos os editores suportam o tipo de arquivo.","Enable content indexation for personal files.":"Ativar indexa\xE7\xE3o de conte\xFAdo para arquivos pessoais.",Preferences:Mi,of:Gi,"Sidebar auto-hide enabled":"Oculta\xE7\xE3o autom\xE1tica da barra lateral ativada","Sidebar pinned":"Barra lateral fixada","Continue with OpenID Connect":"Continuar com OpenID Connect"};export{ba as Access,ya as Accessed,K as Account,Ia as Action,ua as Active,V as Add,Ya as Added,I as Administration,j as Administrator,Be as Anchored,E as Application,fe as Applications,ri as Asynchronously,a as Authentication,be as Avatar,ja as Browse,n as Cancel,qa as Client,Ta as Clients,ao as Clipboard,t as Close,wa as Comment,xa as Comments,bo as Compress,ve as Configuration,s as Confirm,Za as Conflict,oe as Connection,ae as Connections,Ba as Copied,Ze as Copy,ta as Created,da as Date,yo as Decompress,Ua as Delete,ha as Description,oi as Destination,Ri as Dimensions,Xa as Direction,li as Disable,no as Display,yi as Done,Je as Download,eo as Edit,qo as Elements,J as Email,ro as Empty,di as Enable,Ka as Error,k as Event,_i as Exclusive,ga as Expiration,ea as Expired,P as External,z as File,D as Files,c as Filter,Ha as Filtered,l as Filters,No as Folder,Fi as Fullscreen,me as Generate,U as Group,L as Groups,Jo as Guest,Xo as Guests,xe as Home,$ as IP,he as Import,wo as Info,G as Isolated,we as Language,Bo as Link,Ho as Links,so as List,We as Location,Ui as Lock,i as Login,Ni as Manage,le as Manager,pe as Managers,sa as Me,de as Member,ce as Members,ai as Mode,So as Modified,Xe as Move,Qa as Moved,Ke as Name,To as New,gi as Next,T as Notification,N as Notifications,d as Open,He as Options,ra as Owner,r as Password,ca as Path,ia as Permissions,O as Personal,Mi as Preferences,bi as Previous,M as Private,Se as Recents,Oi as Redo,io as Refresh,oo as Remove,Wa as Removed,$e as Rename,ki as RenameFileToExisting,xi as Repository,Va as Reset,Z as Role,zi as Save,_a as Scheduler,p as Search,Ti as Security,m as See,ee as Seen,ii as Sequentially,Ja as Server,Qe as Settings,qe as Share,na as Shared,Ee as Shares,Ga as Simulate,xo as Size,ei as Source,Ge as Space,Ve as Spaces,X as Status,fo as Sync,go as Synced,mo as Synchronization,ho as Synchronizations,vo as Synchronize,Co as Tasks,Eo as Text,Lo as Total,Ma as Transfers,Ce as Trash,ma as Type,Di as Undo,fa as Unknown,se as Unlimited,Li as Unlock,ye as Update,Y as User,B as Users,qi as Versions,va as Visibility,R as Visible,Ei as Website,fi as Wizard,za as absent,H as account,la as active,Ie as anchored,q as application,ge as applications,Fa as async,Na as available,ie as available_space_is_low,hi as both,ka as busy,Aa as commented,Sa as comments,Go as create,La as day,Pa as days,Vi as default,Io as delete,uo as delete_multiple_files,co as delete_one_file,_e as desktop_app_access,Fe as desktop_app_sync,Po as directories,Oo as directory,ci as disabled,ti as enabled,oa as expired,si as fast,zo as file,Do as files,ko as folder,_ as group,F as groups,Zo as guest,$o as guests,Le as guests_admin,Ro as item,Mo as items,Qo as link,Ko as links,Ai as local,Oa as logout,ue as manager,Pi as me,ne as member,te as members,Ao as modified,Yo as modify,jo as move,w as nb_actions,b as nb_active_tasks,y as nb_elements,S as nb_messages,C as nb_notifications,Fo as nb_selections,f as nb_tasks,vi as never,Ea as no,Uo as no_selection,h as no_task,aa as none,Gi as of,Da as offline,g as one_active_task,x as one_message,A as one_notification,_o as one_selection,v as one_task,re as online,Ue as personal_groups_admin,ke as personal_space,Si as public,$a as recent,Ae as recents,Ci as remote,mi as scheduler_unit_day,ui as scheduler_unit_hour,pi as scheduler_unit_minute,u as search,ni as secure,Ra as seq,Wo as share,Ne as shared,Te as shares,Oe as shares_access,Pe as shares_admin,je as spaces,ze as spaces_access,De as spaces_admin,pa as suspended,po as synchronization,wi as to,lo as trash_multiple_files,to as trash_one_file,Ye as unanchored,W as user,Q as users,Me as webdav,Re as webdav_access,Vo as write,Ca as yes};
@@ -1 +1 @@
1
- import{b as C,c as I,d as Y}from"./chunk-MPWD4VMY.js";import{D as E,Ha as N,da as R,ea as u,i as _,ja as z,ka as P,ma as A,ta as k,za as G}from"./chunk-ACCGBDUZ.js";import"./chunk-KAVP6UXH.js";var b=1,L=2,H=3,J=4,ee=5,te=36,Oe=37,oe=38,re=11,ne=13;function ae(e){return e==45||e==46||e==58||e>=65&&e<=90||e==95||e>=97&&e<=122||e>=161}function le(e){return e==9||e==10||e==13||e==32}var j=null,U=null,Z=0;function h(e,t){let o=e.pos+t;if(U==e&&Z==o)return j;for(;le(e.peek(t));)t++;let O="";for(;;){let r=e.peek(t);if(!ae(r))break;O+=String.fromCharCode(r),t++}return U=e,Z=o,j=O||null}function B(e,t){this.name=e,this.parent=t}var se=new I({start:null,shift(e,t,o,O){return t==b?new B(h(O,1)||"",e):e},reduce(e,t){return t==re&&e?e.parent:e},reuse(e,t,o,O){let r=t.type.id;return r==b||r==ne?new B(h(O,1)||"",e):e},strict:!1}),ie=new C((e,t)=>{if(e.next==60){if(e.advance(),e.next==47){e.advance();let o=h(e,0);if(!o)return e.acceptToken(ee);if(t.context&&o==t.context.name)return e.acceptToken(L);for(let O=t.context;O;O=O.parent)if(O.name==o)return e.acceptToken(H,-2);e.acceptToken(J)}else if(e.next!=33&&e.next!=63)return e.acceptToken(b)}},{contextual:!0});function W(e,t){return new C(o=>{let O=0,r=t.charCodeAt(0);e:for(;!(o.next<0);o.advance(),O++)if(o.next==r){for(let a=1;a<t.length;a++)if(o.peek(a)!=t.charCodeAt(a))continue e;break}O&&o.acceptToken(e)})}var ce=W(te,"-->"),me=W(Oe,"?>"),$e=W(oe,"]]>"),Se=R({Text:u.content,"StartTag StartCloseTag EndTag SelfCloseEndTag":u.angleBracket,TagName:u.tagName,"MismatchedCloseTag/TagName":[u.tagName,u.invalid],AttributeName:u.attributeName,AttributeValue:u.attributeValue,Is:u.definitionOperator,"EntityReference CharacterReference":u.character,Comment:u.blockComment,ProcessingInst:u.processingInstruction,DoctypeDecl:u.documentMeta,Cdata:u.special(u.string)}),D=Y.deserialize({version:14,states:",lOQOaOOOrOxO'#CfOzOpO'#CiO!tOaO'#CgOOOP'#Cg'#CgO!{OrO'#CrO#TOtO'#CsO#]OpO'#CtOOOP'#DT'#DTOOOP'#Cv'#CvQQOaOOOOOW'#Cw'#CwO#eOxO,59QOOOP,59Q,59QOOOO'#Cx'#CxO#mOpO,59TO#uO!bO,59TOOOP'#C|'#C|O$TOaO,59RO$[OpO'#CoOOOP,59R,59ROOOQ'#C}'#C}O$dOrO,59^OOOP,59^,59^OOOS'#DO'#DOO$lOtO,59_OOOP,59_,59_O$tOpO,59`O$|OpO,59`OOOP-E6t-E6tOOOW-E6u-E6uOOOP1G.l1G.lOOOO-E6v-E6vO%UO!bO1G.oO%UO!bO1G.oO%dOpO'#CkO%lO!bO'#CyO%zO!bO1G.oOOOP1G.o1G.oOOOP1G.w1G.wOOOP-E6z-E6zOOOP1G.m1G.mO&VOpO,59ZO&_OpO,59ZOOOQ-E6{-E6{OOOP1G.x1G.xOOOS-E6|-E6|OOOP1G.y1G.yO&gOpO1G.zO&gOpO1G.zOOOP1G.z1G.zO&oO!bO7+$ZO&}O!bO7+$ZOOOP7+$Z7+$ZOOOP7+$c7+$cO'YOpO,59VO'bOpO,59VO'mO!bO,59eOOOO-E6w-E6wO'{OpO1G.uO'{OpO1G.uOOOP1G.u1G.uO(TOpO7+$fOOOP7+$f7+$fO(]O!bO<<GuOOOP<<Gu<<GuOOOP<<G}<<G}O'bOpO1G.qO'bOpO1G.qO(hO#tO'#CnO(vO&jO'#CnOOOO1G.q1G.qO)UOpO7+$aOOOP7+$a7+$aOOOP<<HQ<<HQOOOPAN=aAN=aOOOPAN=iAN=iO'bOpO7+$]OOOO7+$]7+$]OOOO'#Cz'#CzO)^O#tO,59YOOOO,59Y,59YOOOO'#C{'#C{O)lO&jO,59YOOOP<<G{<<G{OOOO<<Gw<<GwOOOO-E6x-E6xOOOO1G.t1G.tOOOO-E6y-E6y",stateData:")z~OPQOSVOTWOVWOWWOXWOiXOyPO!QTO!SUO~OvZOx]O~O^`Oz^O~OPQOQcOSVOTWOVWOWWOXWOyPO!QTO!SUO~ORdO~P!SOteO!PgO~OuhO!RjO~O^lOz^O~OvZOxoO~O^qOz^O~O[vO`sOdwOz^O~ORyO~P!SO^{Oz^O~OteO!P}O~OuhO!R!PO~O^!QOz^O~O[!SOz^O~O[!VO`sOd!WOz^O~Oa!YOz^O~Oz^O[mX`mXdmX~O[!VO`sOd!WO~O^!]Oz^O~O[!_Oz^O~O[!aOz^O~O[!cO`sOd!dOz^O~O[!cO`sOd!dO~Oa!eOz^O~Oz^O{!gO}!hO~Oz^O[ma`madma~O[!kOz^O~O[!lOz^O~O[!mO`sOd!nO~OW!qOX!qO{!sO|!qO~OW!tOX!tO}!sO!O!tO~O[!vOz^O~OW!qOX!qO{!yO|!qO~OW!tOX!tO}!yO!O!tO~O",goto:"%cxPPPPPPPPPPyyP!PP!VPP!`!jP!pyyyP!v!|#S$[$k$q$w$}%TPPPP%ZXWORYbXRORYb_t`qru!T!U!bQ!i!YS!p!e!fR!w!oQdRRybXSORYbQYORmYQ[PRn[Q_QQkVjp_krz!R!T!X!Z!^!`!f!j!oQr`QzcQ!RlQ!TqQ!XsQ!ZtQ!^{Q!`!QQ!f!YQ!j!]R!o!eQu`S!UqrU![u!U!bR!b!TQ!r!gR!x!rQ!u!hR!z!uQbRRxbQfTR|fQiUR!OiSXOYTaRb",nodeNames:"\u26A0 StartTag StartCloseTag MissingCloseTag StartCloseTag StartCloseTag Document Text EntityReference CharacterReference Cdata Element EndTag OpenTag TagName Attribute AttributeName Is AttributeValue CloseTag SelfCloseEndTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag DoctypeDecl",maxTerm:50,context:se,nodeProps:[["closedBy",1,"SelfCloseEndTag EndTag",13,"CloseTag MissingCloseTag"],["openedBy",12,"StartTag StartCloseTag",19,"OpenTag",20,"StartTag"],["isolate",-6,13,18,19,21,22,24,""]],propSources:[Se],skippedNodes:[0],repeatNodeCount:9,tokenData:"!)v~R!YOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs*vsv$qvw+fwx/ix}$q}!O0[!O!P$q!P!Q2z!Q![$q![!]4n!]!^$q!^!_8U!_!`!#t!`!a!$l!a!b!%d!b!c$q!c!}4n!}#P$q#P#Q!'W#Q#R$q#R#S4n#S#T$q#T#o4n#o%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U$q4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qi$zXVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qa%nVVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%gP&YTVPOv&Tw!^&T!_;'S&T;'S;=`&i<%lO&TP&lP;=`<%l&T`&tS!O`Ov&ox;'S&o;'S;=`'Q<%lO&o`'TP;=`<%l&oa'ZP;=`<%l%gX'eWVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^W(ST|WOr'}sv'}w;'S'};'S;=`(c<%lO'}W(fP;=`<%l'}X(lP;=`<%l'^h(vV|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oh)`P;=`<%l(oi)fP;=`<%l$qo)t`VP|W!O`zUOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk+PV{YVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%g~+iast,n![!]-r!c!}-r#R#S-r#T#o-r%W%o-r%p&a-r&b1p-r4U4d-r4e$IS-r$I`$Ib-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~,qQ!Q![,w#l#m-V~,zQ!Q![,w!]!^-Q~-VOX~~-YR!Q![-c!c!i-c#T#Z-c~-fS!Q![-c!]!^-Q!c!i-c#T#Z-c~-ug}!O-r!O!P-r!Q![-r![!]-r!]!^/^!c!}-r#R#S-r#T#o-r$}%O-r%W%o-r%p&a-r&b1p-r1p4U-r4U4d-r4e$IS-r$I`$Ib-r$Je$Jg-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~/cOW~~/fP;=`<%l-rk/rW}bVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^k0eZVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O1W!O!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk1aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a2S!a;'S$q;'S;=`)c<%lO$qk2_X!PQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qm3TZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a3v!a;'S$q;'S;=`)c<%lO$qm4RXdSVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo4{!P`S^QVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O4n!O!P4n!P!Q$q!Q![4n![!]4n!]!^$q!^!_(o!_!c$q!c!}4n!}#R$q#R#S4n#S#T$q#T#o4n#o$}$q$}%O4n%O%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U4n4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Je$q$Je$Jg4n$Jg$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qo8RP;=`<%l4ni8]Y|W!O`Oq(oqr8{rs&osv(owx'}x!a(o!a!b!#U!b;'S(o;'S;=`)]<%lO(oi9S_|W!O`Or(ors&osv(owx'}x}(o}!O:R!O!f(o!f!g;e!g!}(o!}#ODh#O#W(o#W#XLp#X;'S(o;'S;=`)]<%lO(oi:YX|W!O`Or(ors&osv(owx'}x}(o}!O:u!O;'S(o;'S;=`)]<%lO(oi;OV!QP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oi;lX|W!O`Or(ors&osv(owx'}x!q(o!q!r<X!r;'S(o;'S;=`)]<%lO(oi<`X|W!O`Or(ors&osv(owx'}x!e(o!e!f<{!f;'S(o;'S;=`)]<%lO(oi=SX|W!O`Or(ors&osv(owx'}x!v(o!v!w=o!w;'S(o;'S;=`)]<%lO(oi=vX|W!O`Or(ors&osv(owx'}x!{(o!{!|>c!|;'S(o;'S;=`)]<%lO(oi>jX|W!O`Or(ors&osv(owx'}x!r(o!r!s?V!s;'S(o;'S;=`)]<%lO(oi?^X|W!O`Or(ors&osv(owx'}x!g(o!g!h?y!h;'S(o;'S;=`)]<%lO(oi@QY|W!O`Or?yrs@psv?yvwA[wxBdx!`?y!`!aCr!a;'S?y;'S;=`Db<%lO?ya@uV!O`Ov@pvxA[x!`@p!`!aAy!a;'S@p;'S;=`B^<%lO@pPA_TO!`A[!`!aAn!a;'SA[;'S;=`As<%lOA[PAsOiPPAvP;=`<%lA[aBQSiP!O`Ov&ox;'S&o;'S;=`'Q<%lO&oaBaP;=`<%l@pXBiX|WOrBdrsA[svBdvwA[w!`Bd!`!aCU!a;'SBd;'S;=`Cl<%lOBdXC]TiP|WOr'}sv'}w;'S'};'S;=`(c<%lO'}XCoP;=`<%lBdiC{ViP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiDeP;=`<%l?yiDoZ|W!O`Or(ors&osv(owx'}x!e(o!e!fEb!f#V(o#V#WIr#W;'S(o;'S;=`)]<%lO(oiEiX|W!O`Or(ors&osv(owx'}x!f(o!f!gFU!g;'S(o;'S;=`)]<%lO(oiF]X|W!O`Or(ors&osv(owx'}x!c(o!c!dFx!d;'S(o;'S;=`)]<%lO(oiGPX|W!O`Or(ors&osv(owx'}x!v(o!v!wGl!w;'S(o;'S;=`)]<%lO(oiGsX|W!O`Or(ors&osv(owx'}x!c(o!c!dH`!d;'S(o;'S;=`)]<%lO(oiHgX|W!O`Or(ors&osv(owx'}x!}(o!}#OIS#O;'S(o;'S;=`)]<%lO(oiI]V|W!O`yPOr(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiIyX|W!O`Or(ors&osv(owx'}x#W(o#W#XJf#X;'S(o;'S;=`)]<%lO(oiJmX|W!O`Or(ors&osv(owx'}x#T(o#T#UKY#U;'S(o;'S;=`)]<%lO(oiKaX|W!O`Or(ors&osv(owx'}x#h(o#h#iK|#i;'S(o;'S;=`)]<%lO(oiLTX|W!O`Or(ors&osv(owx'}x#T(o#T#UH`#U;'S(o;'S;=`)]<%lO(oiLwX|W!O`Or(ors&osv(owx'}x#c(o#c#dMd#d;'S(o;'S;=`)]<%lO(oiMkX|W!O`Or(ors&osv(owx'}x#V(o#V#WNW#W;'S(o;'S;=`)]<%lO(oiN_X|W!O`Or(ors&osv(owx'}x#h(o#h#iNz#i;'S(o;'S;=`)]<%lO(oi! RX|W!O`Or(ors&osv(owx'}x#m(o#m#n! n#n;'S(o;'S;=`)]<%lO(oi! uX|W!O`Or(ors&osv(owx'}x#d(o#d#e!!b#e;'S(o;'S;=`)]<%lO(oi!!iX|W!O`Or(ors&osv(owx'}x#X(o#X#Y?y#Y;'S(o;'S;=`)]<%lO(oi!#_V!SP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(ok!$PXaQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo!$wX[UVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!%mZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!&`!a;'S$q;'S;=`)c<%lO$qk!&kX!RQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!'aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_#P$q#P#Q!(S#Q;'S$q;'S;=`)c<%lO$qk!(]ZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!)O!a;'S$q;'S;=`)c<%lO$qk!)ZXxQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$q",tokenizers:[ie,ce,me,$e,0,1,2,3,4],topRules:{Document:[0,6]},tokenPrec:0});function T(e,t){let o=t&&t.getChild("TagName");return o?e.sliceString(o.from,o.to):""}function w(e,t){let o=t&&t.firstChild;return!o||o.name!="OpenTag"?"":T(e,o)}function ge(e,t,o){let O=t&&t.getChildren("Attribute").find(a=>a.from<=o&&a.to>=o),r=O&&O.getChild("AttributeName");return r?e.sliceString(r.from,r.to):""}function y(e){for(let t=e&&e.parent;t;t=t.parent)if(t.name=="Element")return t;return null}function pe(e,t){var o;let O=P(e).resolveInner(t,-1),r=null;for(let a=O;!r&&a.parent;a=a.parent)(a.name=="OpenTag"||a.name=="CloseTag"||a.name=="SelfClosingTag"||a.name=="MismatchedCloseTag")&&(r=a);if(r&&(r.to>t||r.lastChild.type.isError)){let a=r.parent;if(O.name=="TagName")return r.name=="CloseTag"||r.name=="MismatchedCloseTag"?{type:"closeTag",from:O.from,context:a}:{type:"openTag",from:O.from,context:y(a)};if(O.name=="AttributeName")return{type:"attrName",from:O.from,context:r};if(O.name=="AttributeValue")return{type:"attrValue",from:O.from,context:r};let s=O==r||O.name=="Attribute"?O.childBefore(t):O;return s?.name=="StartTag"?{type:"openTag",from:t,context:y(a)}:s?.name=="StartCloseTag"&&s.to<=t?{type:"closeTag",from:t,context:a}:s?.name=="Is"?{type:"attrValue",from:t,context:r}:s?{type:"attrName",from:t,context:r}:null}else if(O.name=="StartCloseTag")return{type:"closeTag",from:t,context:O.parent};for(;O.parent&&O.to==t&&!(!((o=O.lastChild)===null||o===void 0)&&o.type.isError);)O=O.parent;return O.name=="Element"||O.name=="Text"||O.name=="Document"?{type:"tag",from:t,context:O.name=="Element"?O:y(O)}:null}var V=class{constructor(t,o,O){this.attrs=o,this.attrValues=O,this.children=[],this.name=t.name,this.completion=Object.assign(Object.assign({type:"type"},t.completion||{}),{label:this.name}),this.openCompletion=Object.assign(Object.assign({},this.completion),{label:"<"+this.name}),this.closeCompletion=Object.assign(Object.assign({},this.completion),{label:"</"+this.name+">",boost:2}),this.closeNameCompletion=Object.assign(Object.assign({},this.completion),{label:this.name+">"}),this.text=t.textContent?t.textContent.map(r=>({label:r,type:"text"})):[]}},Q=/^[:\-\.\w\u00b7-\uffff]*$/;function M(e){return Object.assign(Object.assign({type:"property"},e.completion||{}),{label:e.name})}function F(e){return typeof e=="string"?{label:`"${e}"`,type:"constant"}:/^"/.test(e.label)?e:Object.assign(Object.assign({},e),{label:`"${e.label}"`})}function ue(e,t){let o=[],O=[],r=Object.create(null);for(let n of t){let $=M(n);o.push($),n.global&&O.push($),n.values&&(r[n.name]=n.values.map(F))}let a=[],s=[],f=Object.create(null);for(let n of e){let $=O,c=r;n.attributes&&($=$.concat(n.attributes.map(l=>typeof l=="string"?o.find(d=>d.label==l)||{label:l,type:"property"}:(l.values&&(c==r&&(c=Object.create(c)),c[l.name]=l.values.map(F)),M(l)))));let p=new V(n,$,c);f[p.name]=p,a.push(p),n.top&&s.push(p)}s.length||(s=a);for(let n=0;n<a.length;n++){let $=e[n],c=a[n];if($.children)for(let p of $.children)f[p]&&c.children.push(f[p]);else c.children=a}return n=>{var $;let{doc:c}=n.state,p=pe(n.state,n.pos);if(!p||p.type=="tag"&&!n.explicit)return null;let{type:l,from:d,context:S}=p;if(l=="openTag"){let i=s,m=w(c,S);if(m){let g=f[m];i=g?.children||a}return{from:d,options:i.map(g=>g.completion),validFor:Q}}else if(l=="closeTag"){let i=w(c,S);return i?{from:d,to:n.pos+(c.sliceString(n.pos,n.pos+1)==">"?1:0),options:[(($=f[i])===null||$===void 0?void 0:$.closeNameCompletion)||{label:i+">",type:"type"}],validFor:Q}:null}else if(l=="attrName"){let i=f[T(c,S)];return{from:d,options:i?.attrs||O,validFor:Q}}else if(l=="attrValue"){let i=ge(c,S,d);if(!i)return null;let m=f[T(c,S)],g=(m?.attrValues||r)[i];return!g||!g.length?null:{from:d,to:n.pos+(c.sliceString(n.pos,n.pos+1)=='"'?1:0),options:g,validFor:/^"[^"]*"?$/}}else if(l=="tag"){let i=w(c,S),m=f[i],g=[],q=S&&S.lastChild;i&&(!q||q.name!="CloseTag"||T(c,q)!=i)&&g.push(m?m.closeCompletion:{label:"</"+i+">",type:"type",boost:2});let v=g.concat((m?.children||(S?a:s)).map(x=>x.openCompletion));if(S&&m?.text.length){let x=S.firstChild;x.to>n.pos-20&&!/\S/.test(n.state.sliceDoc(x.to,n.pos))&&(v=v.concat(m.text))}return{from:d,options:v,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}else return null}}var X=z.define({name:"xml",parser:D.configure({props:[k.add({Element(e){let t=/^\s*<\//.test(e.textAfter);return e.lineIndent(e.node.from)+(t?0:e.unit)},"OpenTag CloseTag SelfClosingTag"(e){return e.column(e.node.from)+e.unit}}),G.add({Element(e){let t=e.firstChild,o=e.lastChild;return!t||t.name!="OpenTag"?null:{from:t.to,to:o.name=="CloseTag"?o.from:e.to}}}),N.add({"OpenTag CloseTag":e=>e.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:"<!--",close:"-->"}},indentOnInput:/^\s*<\/$/}});function be(e={}){let t=[X.data.of({autocomplete:ue(e.elements||[],e.attributes||[])})];return e.autoCloseTags!==!1&&t.push(fe),new A(X,t)}function K(e,t,o=e.length){if(!t)return"";let O=t.firstChild,r=O&&O.getChild("TagName");return r?e.sliceString(r.from,Math.min(r.to,o)):""}var fe=E.inputHandler.of((e,t,o,O,r)=>{if(e.composing||e.state.readOnly||t!=o||O!=">"&&O!="/"||!X.isActiveAt(e.state,t,-1))return!1;let a=r(),{state:s}=a,f=s.changeByRange(n=>{var $,c,p;let{head:l}=n,d=s.doc.sliceString(l-1,l)==O,S=P(s).resolveInner(l,-1),i;if(d&&O==">"&&S.name=="EndTag"){let m=S.parent;if(((c=($=m.parent)===null||$===void 0?void 0:$.lastChild)===null||c===void 0?void 0:c.name)!="CloseTag"&&(i=K(s.doc,m.parent,l))){let g=l+(s.doc.sliceString(l,l+1)===">"?1:0),q=`</${i}>`;return{range:n,changes:{from:l,to:g,insert:q}}}}else if(d&&O=="/"&&S.name=="StartCloseTag"){let m=S.parent;if(S.from==l-2&&((p=m.lastChild)===null||p===void 0?void 0:p.name)!="CloseTag"&&(i=K(s.doc,m,l))){let g=l+(s.doc.sliceString(l,l+1)===">"?1:0),q=`${i}>`;return{range:_.cursor(l+q.length,-1),changes:{from:l,to:g,insert:q}}}}return{range:n}});return f.changes.empty?!1:(e.dispatch([a,s.update(f,{userEvent:"input.complete",scrollIntoView:!0})]),!0)});export{fe as autoCloseTags,ue as completeFromSchema,be as xml,X as xmlLanguage};
1
+ import{b as C,c as I,d as Y}from"./chunk-QVRVFYJH.js";import{D as E,Ha as N,da as R,ea as u,i as _,ja as z,ka as P,ma as A,ta as k,za as G}from"./chunk-4P3JABAP.js";import"./chunk-KAVP6UXH.js";var b=1,L=2,H=3,J=4,ee=5,te=36,Oe=37,oe=38,re=11,ne=13;function ae(e){return e==45||e==46||e==58||e>=65&&e<=90||e==95||e>=97&&e<=122||e>=161}function le(e){return e==9||e==10||e==13||e==32}var j=null,U=null,Z=0;function h(e,t){let o=e.pos+t;if(U==e&&Z==o)return j;for(;le(e.peek(t));)t++;let O="";for(;;){let r=e.peek(t);if(!ae(r))break;O+=String.fromCharCode(r),t++}return U=e,Z=o,j=O||null}function B(e,t){this.name=e,this.parent=t}var se=new I({start:null,shift(e,t,o,O){return t==b?new B(h(O,1)||"",e):e},reduce(e,t){return t==re&&e?e.parent:e},reuse(e,t,o,O){let r=t.type.id;return r==b||r==ne?new B(h(O,1)||"",e):e},strict:!1}),ie=new C((e,t)=>{if(e.next==60){if(e.advance(),e.next==47){e.advance();let o=h(e,0);if(!o)return e.acceptToken(ee);if(t.context&&o==t.context.name)return e.acceptToken(L);for(let O=t.context;O;O=O.parent)if(O.name==o)return e.acceptToken(H,-2);e.acceptToken(J)}else if(e.next!=33&&e.next!=63)return e.acceptToken(b)}},{contextual:!0});function W(e,t){return new C(o=>{let O=0,r=t.charCodeAt(0);e:for(;!(o.next<0);o.advance(),O++)if(o.next==r){for(let a=1;a<t.length;a++)if(o.peek(a)!=t.charCodeAt(a))continue e;break}O&&o.acceptToken(e)})}var ce=W(te,"-->"),me=W(Oe,"?>"),$e=W(oe,"]]>"),Se=R({Text:u.content,"StartTag StartCloseTag EndTag SelfCloseEndTag":u.angleBracket,TagName:u.tagName,"MismatchedCloseTag/TagName":[u.tagName,u.invalid],AttributeName:u.attributeName,AttributeValue:u.attributeValue,Is:u.definitionOperator,"EntityReference CharacterReference":u.character,Comment:u.blockComment,ProcessingInst:u.processingInstruction,DoctypeDecl:u.documentMeta,Cdata:u.special(u.string)}),D=Y.deserialize({version:14,states:",lOQOaOOOrOxO'#CfOzOpO'#CiO!tOaO'#CgOOOP'#Cg'#CgO!{OrO'#CrO#TOtO'#CsO#]OpO'#CtOOOP'#DT'#DTOOOP'#Cv'#CvQQOaOOOOOW'#Cw'#CwO#eOxO,59QOOOP,59Q,59QOOOO'#Cx'#CxO#mOpO,59TO#uO!bO,59TOOOP'#C|'#C|O$TOaO,59RO$[OpO'#CoOOOP,59R,59ROOOQ'#C}'#C}O$dOrO,59^OOOP,59^,59^OOOS'#DO'#DOO$lOtO,59_OOOP,59_,59_O$tOpO,59`O$|OpO,59`OOOP-E6t-E6tOOOW-E6u-E6uOOOP1G.l1G.lOOOO-E6v-E6vO%UO!bO1G.oO%UO!bO1G.oO%dOpO'#CkO%lO!bO'#CyO%zO!bO1G.oOOOP1G.o1G.oOOOP1G.w1G.wOOOP-E6z-E6zOOOP1G.m1G.mO&VOpO,59ZO&_OpO,59ZOOOQ-E6{-E6{OOOP1G.x1G.xOOOS-E6|-E6|OOOP1G.y1G.yO&gOpO1G.zO&gOpO1G.zOOOP1G.z1G.zO&oO!bO7+$ZO&}O!bO7+$ZOOOP7+$Z7+$ZOOOP7+$c7+$cO'YOpO,59VO'bOpO,59VO'mO!bO,59eOOOO-E6w-E6wO'{OpO1G.uO'{OpO1G.uOOOP1G.u1G.uO(TOpO7+$fOOOP7+$f7+$fO(]O!bO<<GuOOOP<<Gu<<GuOOOP<<G}<<G}O'bOpO1G.qO'bOpO1G.qO(hO#tO'#CnO(vO&jO'#CnOOOO1G.q1G.qO)UOpO7+$aOOOP7+$a7+$aOOOP<<HQ<<HQOOOPAN=aAN=aOOOPAN=iAN=iO'bOpO7+$]OOOO7+$]7+$]OOOO'#Cz'#CzO)^O#tO,59YOOOO,59Y,59YOOOO'#C{'#C{O)lO&jO,59YOOOP<<G{<<G{OOOO<<Gw<<GwOOOO-E6x-E6xOOOO1G.t1G.tOOOO-E6y-E6y",stateData:")z~OPQOSVOTWOVWOWWOXWOiXOyPO!QTO!SUO~OvZOx]O~O^`Oz^O~OPQOQcOSVOTWOVWOWWOXWOyPO!QTO!SUO~ORdO~P!SOteO!PgO~OuhO!RjO~O^lOz^O~OvZOxoO~O^qOz^O~O[vO`sOdwOz^O~ORyO~P!SO^{Oz^O~OteO!P}O~OuhO!R!PO~O^!QOz^O~O[!SOz^O~O[!VO`sOd!WOz^O~Oa!YOz^O~Oz^O[mX`mXdmX~O[!VO`sOd!WO~O^!]Oz^O~O[!_Oz^O~O[!aOz^O~O[!cO`sOd!dOz^O~O[!cO`sOd!dO~Oa!eOz^O~Oz^O{!gO}!hO~Oz^O[ma`madma~O[!kOz^O~O[!lOz^O~O[!mO`sOd!nO~OW!qOX!qO{!sO|!qO~OW!tOX!tO}!sO!O!tO~O[!vOz^O~OW!qOX!qO{!yO|!qO~OW!tOX!tO}!yO!O!tO~O",goto:"%cxPPPPPPPPPPyyP!PP!VPP!`!jP!pyyyP!v!|#S$[$k$q$w$}%TPPPP%ZXWORYbXRORYb_t`qru!T!U!bQ!i!YS!p!e!fR!w!oQdRRybXSORYbQYORmYQ[PRn[Q_QQkVjp_krz!R!T!X!Z!^!`!f!j!oQr`QzcQ!RlQ!TqQ!XsQ!ZtQ!^{Q!`!QQ!f!YQ!j!]R!o!eQu`S!UqrU![u!U!bR!b!TQ!r!gR!x!rQ!u!hR!z!uQbRRxbQfTR|fQiUR!OiSXOYTaRb",nodeNames:"\u26A0 StartTag StartCloseTag MissingCloseTag StartCloseTag StartCloseTag Document Text EntityReference CharacterReference Cdata Element EndTag OpenTag TagName Attribute AttributeName Is AttributeValue CloseTag SelfCloseEndTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag DoctypeDecl",maxTerm:50,context:se,nodeProps:[["closedBy",1,"SelfCloseEndTag EndTag",13,"CloseTag MissingCloseTag"],["openedBy",12,"StartTag StartCloseTag",19,"OpenTag",20,"StartTag"],["isolate",-6,13,18,19,21,22,24,""]],propSources:[Se],skippedNodes:[0],repeatNodeCount:9,tokenData:"!)v~R!YOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs*vsv$qvw+fwx/ix}$q}!O0[!O!P$q!P!Q2z!Q![$q![!]4n!]!^$q!^!_8U!_!`!#t!`!a!$l!a!b!%d!b!c$q!c!}4n!}#P$q#P#Q!'W#Q#R$q#R#S4n#S#T$q#T#o4n#o%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U$q4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qi$zXVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qa%nVVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%gP&YTVPOv&Tw!^&T!_;'S&T;'S;=`&i<%lO&TP&lP;=`<%l&T`&tS!O`Ov&ox;'S&o;'S;=`'Q<%lO&o`'TP;=`<%l&oa'ZP;=`<%l%gX'eWVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^W(ST|WOr'}sv'}w;'S'};'S;=`(c<%lO'}W(fP;=`<%l'}X(lP;=`<%l'^h(vV|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oh)`P;=`<%l(oi)fP;=`<%l$qo)t`VP|W!O`zUOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk+PV{YVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%g~+iast,n![!]-r!c!}-r#R#S-r#T#o-r%W%o-r%p&a-r&b1p-r4U4d-r4e$IS-r$I`$Ib-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~,qQ!Q![,w#l#m-V~,zQ!Q![,w!]!^-Q~-VOX~~-YR!Q![-c!c!i-c#T#Z-c~-fS!Q![-c!]!^-Q!c!i-c#T#Z-c~-ug}!O-r!O!P-r!Q![-r![!]-r!]!^/^!c!}-r#R#S-r#T#o-r$}%O-r%W%o-r%p&a-r&b1p-r1p4U-r4U4d-r4e$IS-r$I`$Ib-r$Je$Jg-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~/cOW~~/fP;=`<%l-rk/rW}bVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^k0eZVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O1W!O!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk1aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a2S!a;'S$q;'S;=`)c<%lO$qk2_X!PQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qm3TZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a3v!a;'S$q;'S;=`)c<%lO$qm4RXdSVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo4{!P`S^QVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O4n!O!P4n!P!Q$q!Q![4n![!]4n!]!^$q!^!_(o!_!c$q!c!}4n!}#R$q#R#S4n#S#T$q#T#o4n#o$}$q$}%O4n%O%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U4n4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Je$q$Je$Jg4n$Jg$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qo8RP;=`<%l4ni8]Y|W!O`Oq(oqr8{rs&osv(owx'}x!a(o!a!b!#U!b;'S(o;'S;=`)]<%lO(oi9S_|W!O`Or(ors&osv(owx'}x}(o}!O:R!O!f(o!f!g;e!g!}(o!}#ODh#O#W(o#W#XLp#X;'S(o;'S;=`)]<%lO(oi:YX|W!O`Or(ors&osv(owx'}x}(o}!O:u!O;'S(o;'S;=`)]<%lO(oi;OV!QP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oi;lX|W!O`Or(ors&osv(owx'}x!q(o!q!r<X!r;'S(o;'S;=`)]<%lO(oi<`X|W!O`Or(ors&osv(owx'}x!e(o!e!f<{!f;'S(o;'S;=`)]<%lO(oi=SX|W!O`Or(ors&osv(owx'}x!v(o!v!w=o!w;'S(o;'S;=`)]<%lO(oi=vX|W!O`Or(ors&osv(owx'}x!{(o!{!|>c!|;'S(o;'S;=`)]<%lO(oi>jX|W!O`Or(ors&osv(owx'}x!r(o!r!s?V!s;'S(o;'S;=`)]<%lO(oi?^X|W!O`Or(ors&osv(owx'}x!g(o!g!h?y!h;'S(o;'S;=`)]<%lO(oi@QY|W!O`Or?yrs@psv?yvwA[wxBdx!`?y!`!aCr!a;'S?y;'S;=`Db<%lO?ya@uV!O`Ov@pvxA[x!`@p!`!aAy!a;'S@p;'S;=`B^<%lO@pPA_TO!`A[!`!aAn!a;'SA[;'S;=`As<%lOA[PAsOiPPAvP;=`<%lA[aBQSiP!O`Ov&ox;'S&o;'S;=`'Q<%lO&oaBaP;=`<%l@pXBiX|WOrBdrsA[svBdvwA[w!`Bd!`!aCU!a;'SBd;'S;=`Cl<%lOBdXC]TiP|WOr'}sv'}w;'S'};'S;=`(c<%lO'}XCoP;=`<%lBdiC{ViP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiDeP;=`<%l?yiDoZ|W!O`Or(ors&osv(owx'}x!e(o!e!fEb!f#V(o#V#WIr#W;'S(o;'S;=`)]<%lO(oiEiX|W!O`Or(ors&osv(owx'}x!f(o!f!gFU!g;'S(o;'S;=`)]<%lO(oiF]X|W!O`Or(ors&osv(owx'}x!c(o!c!dFx!d;'S(o;'S;=`)]<%lO(oiGPX|W!O`Or(ors&osv(owx'}x!v(o!v!wGl!w;'S(o;'S;=`)]<%lO(oiGsX|W!O`Or(ors&osv(owx'}x!c(o!c!dH`!d;'S(o;'S;=`)]<%lO(oiHgX|W!O`Or(ors&osv(owx'}x!}(o!}#OIS#O;'S(o;'S;=`)]<%lO(oiI]V|W!O`yPOr(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiIyX|W!O`Or(ors&osv(owx'}x#W(o#W#XJf#X;'S(o;'S;=`)]<%lO(oiJmX|W!O`Or(ors&osv(owx'}x#T(o#T#UKY#U;'S(o;'S;=`)]<%lO(oiKaX|W!O`Or(ors&osv(owx'}x#h(o#h#iK|#i;'S(o;'S;=`)]<%lO(oiLTX|W!O`Or(ors&osv(owx'}x#T(o#T#UH`#U;'S(o;'S;=`)]<%lO(oiLwX|W!O`Or(ors&osv(owx'}x#c(o#c#dMd#d;'S(o;'S;=`)]<%lO(oiMkX|W!O`Or(ors&osv(owx'}x#V(o#V#WNW#W;'S(o;'S;=`)]<%lO(oiN_X|W!O`Or(ors&osv(owx'}x#h(o#h#iNz#i;'S(o;'S;=`)]<%lO(oi! RX|W!O`Or(ors&osv(owx'}x#m(o#m#n! n#n;'S(o;'S;=`)]<%lO(oi! uX|W!O`Or(ors&osv(owx'}x#d(o#d#e!!b#e;'S(o;'S;=`)]<%lO(oi!!iX|W!O`Or(ors&osv(owx'}x#X(o#X#Y?y#Y;'S(o;'S;=`)]<%lO(oi!#_V!SP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(ok!$PXaQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo!$wX[UVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!%mZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!&`!a;'S$q;'S;=`)c<%lO$qk!&kX!RQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!'aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_#P$q#P#Q!(S#Q;'S$q;'S;=`)c<%lO$qk!(]ZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!)O!a;'S$q;'S;=`)c<%lO$qk!)ZXxQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$q",tokenizers:[ie,ce,me,$e,0,1,2,3,4],topRules:{Document:[0,6]},tokenPrec:0});function T(e,t){let o=t&&t.getChild("TagName");return o?e.sliceString(o.from,o.to):""}function w(e,t){let o=t&&t.firstChild;return!o||o.name!="OpenTag"?"":T(e,o)}function ge(e,t,o){let O=t&&t.getChildren("Attribute").find(a=>a.from<=o&&a.to>=o),r=O&&O.getChild("AttributeName");return r?e.sliceString(r.from,r.to):""}function y(e){for(let t=e&&e.parent;t;t=t.parent)if(t.name=="Element")return t;return null}function pe(e,t){var o;let O=P(e).resolveInner(t,-1),r=null;for(let a=O;!r&&a.parent;a=a.parent)(a.name=="OpenTag"||a.name=="CloseTag"||a.name=="SelfClosingTag"||a.name=="MismatchedCloseTag")&&(r=a);if(r&&(r.to>t||r.lastChild.type.isError)){let a=r.parent;if(O.name=="TagName")return r.name=="CloseTag"||r.name=="MismatchedCloseTag"?{type:"closeTag",from:O.from,context:a}:{type:"openTag",from:O.from,context:y(a)};if(O.name=="AttributeName")return{type:"attrName",from:O.from,context:r};if(O.name=="AttributeValue")return{type:"attrValue",from:O.from,context:r};let s=O==r||O.name=="Attribute"?O.childBefore(t):O;return s?.name=="StartTag"?{type:"openTag",from:t,context:y(a)}:s?.name=="StartCloseTag"&&s.to<=t?{type:"closeTag",from:t,context:a}:s?.name=="Is"?{type:"attrValue",from:t,context:r}:s?{type:"attrName",from:t,context:r}:null}else if(O.name=="StartCloseTag")return{type:"closeTag",from:t,context:O.parent};for(;O.parent&&O.to==t&&!(!((o=O.lastChild)===null||o===void 0)&&o.type.isError);)O=O.parent;return O.name=="Element"||O.name=="Text"||O.name=="Document"?{type:"tag",from:t,context:O.name=="Element"?O:y(O)}:null}var V=class{constructor(t,o,O){this.attrs=o,this.attrValues=O,this.children=[],this.name=t.name,this.completion=Object.assign(Object.assign({type:"type"},t.completion||{}),{label:this.name}),this.openCompletion=Object.assign(Object.assign({},this.completion),{label:"<"+this.name}),this.closeCompletion=Object.assign(Object.assign({},this.completion),{label:"</"+this.name+">",boost:2}),this.closeNameCompletion=Object.assign(Object.assign({},this.completion),{label:this.name+">"}),this.text=t.textContent?t.textContent.map(r=>({label:r,type:"text"})):[]}},Q=/^[:\-\.\w\u00b7-\uffff]*$/;function M(e){return Object.assign(Object.assign({type:"property"},e.completion||{}),{label:e.name})}function F(e){return typeof e=="string"?{label:`"${e}"`,type:"constant"}:/^"/.test(e.label)?e:Object.assign(Object.assign({},e),{label:`"${e.label}"`})}function ue(e,t){let o=[],O=[],r=Object.create(null);for(let n of t){let $=M(n);o.push($),n.global&&O.push($),n.values&&(r[n.name]=n.values.map(F))}let a=[],s=[],f=Object.create(null);for(let n of e){let $=O,c=r;n.attributes&&($=$.concat(n.attributes.map(l=>typeof l=="string"?o.find(d=>d.label==l)||{label:l,type:"property"}:(l.values&&(c==r&&(c=Object.create(c)),c[l.name]=l.values.map(F)),M(l)))));let p=new V(n,$,c);f[p.name]=p,a.push(p),n.top&&s.push(p)}s.length||(s=a);for(let n=0;n<a.length;n++){let $=e[n],c=a[n];if($.children)for(let p of $.children)f[p]&&c.children.push(f[p]);else c.children=a}return n=>{var $;let{doc:c}=n.state,p=pe(n.state,n.pos);if(!p||p.type=="tag"&&!n.explicit)return null;let{type:l,from:d,context:S}=p;if(l=="openTag"){let i=s,m=w(c,S);if(m){let g=f[m];i=g?.children||a}return{from:d,options:i.map(g=>g.completion),validFor:Q}}else if(l=="closeTag"){let i=w(c,S);return i?{from:d,to:n.pos+(c.sliceString(n.pos,n.pos+1)==">"?1:0),options:[(($=f[i])===null||$===void 0?void 0:$.closeNameCompletion)||{label:i+">",type:"type"}],validFor:Q}:null}else if(l=="attrName"){let i=f[T(c,S)];return{from:d,options:i?.attrs||O,validFor:Q}}else if(l=="attrValue"){let i=ge(c,S,d);if(!i)return null;let m=f[T(c,S)],g=(m?.attrValues||r)[i];return!g||!g.length?null:{from:d,to:n.pos+(c.sliceString(n.pos,n.pos+1)=='"'?1:0),options:g,validFor:/^"[^"]*"?$/}}else if(l=="tag"){let i=w(c,S),m=f[i],g=[],q=S&&S.lastChild;i&&(!q||q.name!="CloseTag"||T(c,q)!=i)&&g.push(m?m.closeCompletion:{label:"</"+i+">",type:"type",boost:2});let v=g.concat((m?.children||(S?a:s)).map(x=>x.openCompletion));if(S&&m?.text.length){let x=S.firstChild;x.to>n.pos-20&&!/\S/.test(n.state.sliceDoc(x.to,n.pos))&&(v=v.concat(m.text))}return{from:d,options:v,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}else return null}}var X=z.define({name:"xml",parser:D.configure({props:[k.add({Element(e){let t=/^\s*<\//.test(e.textAfter);return e.lineIndent(e.node.from)+(t?0:e.unit)},"OpenTag CloseTag SelfClosingTag"(e){return e.column(e.node.from)+e.unit}}),G.add({Element(e){let t=e.firstChild,o=e.lastChild;return!t||t.name!="OpenTag"?null:{from:t.to,to:o.name=="CloseTag"?o.from:e.to}}}),N.add({"OpenTag CloseTag":e=>e.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:"<!--",close:"-->"}},indentOnInput:/^\s*<\/$/}});function be(e={}){let t=[X.data.of({autocomplete:ue(e.elements||[],e.attributes||[])})];return e.autoCloseTags!==!1&&t.push(fe),new A(X,t)}function K(e,t,o=e.length){if(!t)return"";let O=t.firstChild,r=O&&O.getChild("TagName");return r?e.sliceString(r.from,Math.min(r.to,o)):""}var fe=E.inputHandler.of((e,t,o,O,r)=>{if(e.composing||e.state.readOnly||t!=o||O!=">"&&O!="/"||!X.isActiveAt(e.state,t,-1))return!1;let a=r(),{state:s}=a,f=s.changeByRange(n=>{var $,c,p;let{head:l}=n,d=s.doc.sliceString(l-1,l)==O,S=P(s).resolveInner(l,-1),i;if(d&&O==">"&&S.name=="EndTag"){let m=S.parent;if(((c=($=m.parent)===null||$===void 0?void 0:$.lastChild)===null||c===void 0?void 0:c.name)!="CloseTag"&&(i=K(s.doc,m.parent,l))){let g=l+(s.doc.sliceString(l,l+1)===">"?1:0),q=`</${i}>`;return{range:n,changes:{from:l,to:g,insert:q}}}}else if(d&&O=="/"&&S.name=="StartCloseTag"){let m=S.parent;if(S.from==l-2&&((p=m.lastChild)===null||p===void 0?void 0:p.name)!="CloseTag"&&(i=K(s.doc,m,l))){let g=l+(s.doc.sliceString(l,l+1)===">"?1:0),q=`${i}>`;return{range:_.cursor(l+q.length,-1),changes:{from:l,to:g,insert:q}}}}return{range:n}});return f.changes.empty?!1:(e.dispatch([a,s.update(f,{userEvent:"input.complete",scrollIntoView:!0})]),!0)});export{fe as autoCloseTags,ue as completeFromSchema,be as xml,X as xmlLanguage};
@@ -0,0 +1,4 @@
1
+ import{p as it,t as nt}from"./chunk-NGUAJIGI.js";import{e as ot}from"./chunk-IWWBV6EM.js";import{a as at,b as st}from"./chunk-MZQK6LNV.js";import{J as qe,Qb as et,Sb as tt,c as Be,d as X,f as z,g as fe,h as J,ib as Je,l as ye,o as $,p as ee,s as Ye,t as Qe}from"./chunk-B6PDYCRO.js";import{Aa as R,Ac as ue,Bb as M,Cd as $e,Df as Ze,E as be,Eb as b,Ed as We,Gb as r,H as Se,Ha as U,Ia as ne,Ic as Fe,J as ie,Jc as De,Jd as Ge,Kb as B,Kd as je,Lb as H,Mb as V,Mc as ke,Oa as c,Pb as D,Pc as Re,Qa as g,Qb as Ae,Qc as Ue,Ra as Q,Rb as le,Sb as q,Tb as S,Ub as T,Wa as ae,Xa as v,Xb as he,Ya as Ie,Yb as ce,Zb as pe,_ as Te,a as ve,aa as Y,ab as K,bb as we,c as Ce,cb as Z,cc as Pe,db as Me,ea as Ee,ec as de,fa as Oe,fb as w,fd as He,id as Ve,ja as F,jc as me,jd as Ne,k as te,kb as se,kc as E,lb as C,lc as Le,mb as x,mc as I,o as xe,oa as y,oc as N,od as ze,pa as _,pb as oe,qb as re,r as G,rb as p,sb as m,sg as Xe,tb as u,ub as f,x as j,zf as Ke}from"./chunk-QJVC3SRJ.js";var Jt=(()=>{let a=class a{constructor(){this.maxMove=10,this.maxDuration=350,this.doubleTapInterval=600,this.doubleTapSlop=24,this.enableDoubleTap=!0,this.emitSingleWhenNoDouble=!1,this.preventGhostClick=!0,this.preventDefault=!1,this.disabled=!1,this.appTap=new g,this.elRef=F(R),this.zone=F(Q),this.removeFns=[],this.active=!1,this.pointerId=null,this.startX=0,this.startY=0,this.startTime=0,this.moved=!1,this.lastEmitTs=0,this.pendingSingle=null,this.singleTimer=null,this.onDown=e=>{this.disabled||e.button!==0||this.active||(this.active=!0,this.pointerId=e.pointerId,this.startX=e.clientX,this.startY=e.clientY,this.startTime=e.timeStamp,this.moved=!1,e.target.setPointerCapture?.(e.pointerId))},this.onMove=e=>{if(!(!this.active||e.pointerId!==this.pointerId)&&!this.moved){let t=Math.abs(e.clientX-this.startX),i=Math.abs(e.clientY-this.startY);(t>this.maxMove||i>this.maxMove)&&(this.moved=!0)}},this.onUp=e=>{if(!this.active||e.pointerId!==this.pointerId)return;let t=e.timeStamp-this.startTime,i=Math.abs(e.clientX-this.startX),o=Math.abs(e.clientY-this.startY),l=!this.moved&&i<=this.maxMove&&o<=this.maxMove&&t<=this.maxDuration;if(this.resetGesture(),!l)return;this.preventDefault&&e.preventDefault();let h=performance.now(),d=e.clientX,O=e.clientY;if(!this.enableDoubleTap){this.emit("single",d,O,e);return}if(this.pendingSingle){let P=h-this.pendingSingle.t,L=Math.hypot(d-this.pendingSingle.x,O-this.pendingSingle.y);if(P<=this.doubleTapInterval&&L<=this.doubleTapSlop){clearTimeout(this.singleTimer),this.singleTimer=null,this.pendingSingle=null,this.emit("double",d,O,e);return}}this.pendingSingle={x:d,y:O,t:h},clearTimeout(this.singleTimer),this.singleTimer=setTimeout(()=>{if(this.emitSingleWhenNoDouble){let P=this.pendingSingle;this.emit("single",P.x,P.y)}this.pendingSingle=null,this.singleTimer=null},this.doubleTapInterval)},this.onCancel=()=>this.resetGesture(),this.onContextMenu=e=>{this.preventDefault&&e.preventDefault()},this.onNativeClick=e=>{this.preventGhostClick&&performance.now()-this.lastEmitTs<350&&(e.stopImmediatePropagation(),e.stopPropagation(),e.preventDefault())},this.el=this.elRef.nativeElement,this.zone.runOutsideAngular(()=>{this.add("pointerdown",this.onDown,{passive:!0}),this.add("pointermove",this.onMove,{passive:!0}),this.add("pointerup",this.onUp,{passive:!1}),this.add("pointercancel",this.onCancel,{passive:!0}),this.add("pointerleave",this.onCancel,{passive:!0}),this.add("contextmenu",this.onContextMenu,{passive:!1}),this.add("click",this.onNativeClick,{passive:!1,capture:!0})})}ngOnDestroy(){for(let e of this.removeFns)e();this.removeFns=[],clearTimeout(this.singleTimer)}emit(e,t,i,o){this.lastEmitTs=performance.now(),this.zone.run(()=>this.appTap.emit({x:t,y:i,type:e,sourceEvent:o}))}add(e,t,i){this.el.addEventListener(e,t,i),this.removeFns.push(()=>this.el.removeEventListener(e,t,i))}resetGesture(){this.active=!1,this.pointerId=null,this.startTime=0}};a.\u0275fac=function(t){return new(t||a)},a.\u0275dir=Z({type:a,selectors:[["","appTap",""]],hostAttrs:[2,"touch-action","manipulation","-webkit-tap-highlight-color","transparent"],inputs:{maxMove:"maxMove",maxDuration:"maxDuration",doubleTapInterval:"doubleTapInterval",doubleTapSlop:"doubleTapSlop",enableDoubleTap:"enableDoubleTap",emitSingleWhenNoDouble:"emitSingleWhenNoDouble",preventGhostClick:"preventGhostClick",preventDefault:"preventDefault",disabled:"disabled"},outputs:{appTap:"appTap"}});let n=a;return n})();var ut=["ulElement"],ft=["liElements"],yt=(n,a,s,e)=>({matches:n,itemTemplate:a,query:s,$implicit:e}),_t=(n,a,s,e)=>({item:n,index:a,match:s,query:e});function gt(n,a){}function vt(n,a){if(n&1&&f(0,"span",4),n&2){let s=a.match,e=a.query,t=r();p("innerHtml",t.highlight(s,e),U)}}function Ct(n,a){if(n&1&&(m(0,"h6",8),S(1),u()),n&2){let s=r().$implicit;c(),T(s)}}function xt(n,a){}function bt(n,a){if(n&1){let s=M();m(0,"button",9,2),b("click",function(t){y(s);let i=r().$implicit,o=r(2);return _(o.selectMatch(i,t))})("mouseenter",function(){y(s);let t=r().$implicit,i=r(2);return _(i.selectActive(t))}),w(2,xt,0,0,"ng-template",3),u()}if(n&2){let s=r(),e=s.$implicit,t=s.index,i=r(2),o=D(2);le("active",i.isActive(e)),p("id",i.popupId+"-"+t)("@typeaheadAnimation",i.animationState),c(2),p("ngTemplateOutlet",i.itemTemplate||o)("ngTemplateOutletContext",me(6,_t,e.item,t,e,i.query))}}function St(n,a){if(n&1&&w(0,Ct,2,1,"h6",6)(1,bt,3,11,"ng-template",7),n&2){let s=a.$implicit;p("ngIf",s.isHeader()),c(),p("ngIf",!s.isHeader())}}function Tt(n,a){if(n&1&&w(0,St,2,2,"ng-template",5),n&2){let s=r();p("ngForOf",s.matches)}}var Et={\u00C1:"A",\u0102:"A",\u1EAE:"A",\u1EB6:"A",\u1EB0:"A",\u1EB2:"A",\u1EB4:"A",\u01CD:"A",\u00C2:"A",\u1EA4:"A",\u1EAC:"A",\u1EA6:"A",\u1EA8:"A",\u1EAA:"A",\u00C4:"A",\u01DE:"A",\u0226:"A",\u01E0:"A",\u1EA0:"A",\u0200:"A",\u00C0:"A",\u1EA2:"A",\u0202:"A",\u0100:"A",\u0104:"A",\u00C5:"A",\u01FA:"A",\u1E00:"A","\u023A":"A",\u00C3:"A","\uA732":"AA",\u00C6:"AE",\u01FC:"AE",\u01E2:"AE","\uA734":"AO","\uA736":"AU","\uA738":"AV","\uA73A":"AV","\uA73C":"AY",\u1E02:"B",\u1E04:"B",\u0181:"B",\u1E06:"B","\u0243":"B",\u0182:"B",\u0106:"C",\u010C:"C",\u00C7:"C",\u1E08:"C",\u0108:"C",\u010A:"C",\u0187:"C","\u023B":"C",\u010E:"D",\u1E10:"D",\u1E12:"D",\u1E0A:"D",\u1E0C:"D",\u018A:"D",\u1E0E:"D",\u01F2:"D",\u01C5:"D",\u0110:"D",\u018B:"D",\u01F1:"DZ",\u01C4:"DZ",\u00C9:"E",\u0114:"E",\u011A:"E",\u0228:"E",\u1E1C:"E",\u00CA:"E",\u1EBE:"E",\u1EC6:"E",\u1EC0:"E",\u1EC2:"E",\u1EC4:"E",\u1E18:"E",\u00CB:"E",\u0116:"E",\u1EB8:"E",\u0204:"E",\u00C8:"E",\u1EBA:"E",\u0206:"E",\u0112:"E",\u1E16:"E",\u1E14:"E",\u0118:"E","\u0246":"E",\u1EBC:"E",\u1E1A:"E","\uA76A":"ET",\u1E1E:"F",\u0191:"F",\u01F4:"G",\u011E:"G",\u01E6:"G",\u0122:"G",\u011C:"G",\u0120:"G",\u0193:"G",\u1E20:"G",\u01E4:"G",\u1E2A:"H",\u021E:"H",\u1E28:"H",\u0124:"H","\u2C67":"H",\u1E26:"H",\u1E22:"H",\u1E24:"H",\u0126:"H",\u00CD:"I",\u012C:"I",\u01CF:"I",\u00CE:"I",\u00CF:"I",\u1E2E:"I",\u0130:"I",\u1ECA:"I",\u0208:"I",\u00CC:"I",\u1EC8:"I",\u020A:"I",\u012A:"I",\u012E:"I",\u0197:"I",\u0128:"I",\u1E2C:"I","\uA779":"D","\uA77B":"F","\uA77D":"G","\uA782":"R","\uA784":"S","\uA786":"T","\uA76C":"IS",\u0134:"J","\u0248":"J",\u1E30:"K",\u01E8:"K",\u0136:"K","\u2C69":"K","\uA742":"K",\u1E32:"K",\u0198:"K",\u1E34:"K","\uA740":"K","\uA744":"K",\u0139:"L","\u023D":"L",\u013D:"L",\u013B:"L",\u1E3C:"L",\u1E36:"L",\u1E38:"L","\u2C60":"L","\uA748":"L",\u1E3A:"L",\u013F:"L","\u2C62":"L",\u01C8:"L",\u0141:"L",\u01C7:"LJ",\u1E3E:"M",\u1E40:"M",\u1E42:"M","\u2C6E":"M",\u0143:"N",\u0147:"N",\u0145:"N",\u1E4A:"N",\u1E44:"N",\u1E46:"N",\u01F8:"N",\u019D:"N",\u1E48:"N","\u0220":"N",\u01CB:"N",\u00D1:"N",\u01CA:"NJ",\u00D3:"O",\u014E:"O",\u01D1:"O",\u00D4:"O",\u1ED0:"O",\u1ED8:"O",\u1ED2:"O",\u1ED4:"O",\u1ED6:"O",\u00D6:"O",\u022A:"O",\u022E:"O",\u0230:"O",\u1ECC:"O",\u0150:"O",\u020C:"O",\u00D2:"O",\u1ECE:"O",\u01A0:"O",\u1EDA:"O",\u1EE2:"O",\u1EDC:"O",\u1EDE:"O",\u1EE0:"O",\u020E:"O","\uA74A":"O","\uA74C":"O",\u014C:"O",\u1E52:"O",\u1E50:"O",\u019F:"O",\u01EA:"O",\u01EC:"O",\u00D8:"O",\u01FE:"O",\u00D5:"O",\u1E4C:"O",\u1E4E:"O",\u022C:"O",\u01A2:"OI","\uA74E":"OO",\u0190:"E",\u0186:"O",\u0222:"OU",\u1E54:"P",\u1E56:"P","\uA752":"P",\u01A4:"P","\uA754":"P","\u2C63":"P","\uA750":"P","\uA758":"Q","\uA756":"Q",\u0154:"R",\u0158:"R",\u0156:"R",\u1E58:"R",\u1E5A:"R",\u1E5C:"R",\u0210:"R",\u0212:"R",\u1E5E:"R","\u024C":"R","\u2C64":"R","\uA73E":"C",\u018E:"E",\u015A:"S",\u1E64:"S",\u0160:"S",\u1E66:"S",\u015E:"S",\u015C:"S",\u0218:"S",\u1E60:"S",\u1E62:"S",\u1E68:"S",\u0164:"T",\u0162:"T",\u1E70:"T",\u021A:"T","\u023E":"T",\u1E6A:"T",\u1E6C:"T",\u01AC:"T",\u1E6E:"T",\u01AE:"T",\u0166:"T","\u2C6F":"A","\uA780":"L",\u019C:"M","\u0245":"V","\uA728":"TZ",\u00DA:"U",\u016C:"U",\u01D3:"U",\u00DB:"U",\u1E76:"U",\u00DC:"U",\u01D7:"U",\u01D9:"U",\u01DB:"U",\u01D5:"U",\u1E72:"U",\u1EE4:"U",\u0170:"U",\u0214:"U",\u00D9:"U",\u1EE6:"U",\u01AF:"U",\u1EE8:"U",\u1EF0:"U",\u1EEA:"U",\u1EEC:"U",\u1EEE:"U",\u0216:"U",\u016A:"U",\u1E7A:"U",\u0172:"U",\u016E:"U",\u0168:"U",\u1E78:"U",\u1E74:"U","\uA75E":"V",\u1E7E:"V",\u01B2:"V",\u1E7C:"V","\uA760":"VY",\u1E82:"W",\u0174:"W",\u1E84:"W",\u1E86:"W",\u1E88:"W",\u1E80:"W","\u2C72":"W",\u1E8C:"X",\u1E8A:"X",\u00DD:"Y",\u0176:"Y",\u0178:"Y",\u1E8E:"Y",\u1EF4:"Y",\u1EF2:"Y",\u01B3:"Y",\u1EF6:"Y","\u1EFE":"Y",\u0232:"Y","\u024E":"Y",\u1EF8:"Y",\u0179:"Z",\u017D:"Z",\u1E90:"Z","\u2C6B":"Z",\u017B:"Z",\u1E92:"Z",\u0224:"Z",\u1E94:"Z",\u01B5:"Z",\u0132:"IJ",\u0152:"OE","\u1D00":"A","\u1D01":"AE",\u0299:"B","\u1D03":"B","\u1D04":"C","\u1D05":"D","\u1D07":"E","\uA730":"F",\u0262:"G",\u029B:"G",\u029C:"H",\u026A:"I",\u0281:"R","\u1D0A":"J","\u1D0B":"K",\u029F:"L","\u1D0C":"L","\u1D0D":"M",\u0274:"N","\u1D0F":"O",\u0276:"OE","\u1D10":"O","\u1D15":"OU","\u1D18":"P",\u0280:"R","\u1D0E":"N","\u1D19":"R","\uA731":"S","\u1D1B":"T","\u2C7B":"E","\u1D1A":"R","\u1D1C":"U","\u1D20":"V","\u1D21":"W",\u028F:"Y","\u1D22":"Z",\u00E1:"a",\u0103:"a",\u1EAF:"a",\u1EB7:"a",\u1EB1:"a",\u1EB3:"a",\u1EB5:"a",\u01CE:"a",\u00E2:"a",\u1EA5:"a",\u1EAD:"a",\u1EA7:"a",\u1EA9:"a",\u1EAB:"a",\u00E4:"a",\u01DF:"a",\u0227:"a",\u01E1:"a",\u1EA1:"a",\u0201:"a",\u00E0:"a",\u1EA3:"a",\u0203:"a",\u0101:"a",\u0105:"a","\u1D8F":"a",\u1E9A:"a",\u00E5:"a",\u01FB:"a",\u1E01:"a","\u2C65":"a",\u00E3:"a","\uA733":"aa",\u00E6:"ae",\u01FD:"ae",\u01E3:"ae","\uA735":"ao","\uA737":"au","\uA739":"av","\uA73B":"av","\uA73D":"ay",\u1E03:"b",\u1E05:"b",\u0253:"b",\u1E07:"b","\u1D6C":"b","\u1D80":"b",\u0180:"b",\u0183:"b",\u0275:"o",\u0107:"c",\u010D:"c",\u00E7:"c",\u1E09:"c",\u0109:"c",\u0255:"c",\u010B:"c",\u0188:"c","\u023C":"c",\u010F:"d",\u1E11:"d",\u1E13:"d","\u0221":"d",\u1E0B:"d",\u1E0D:"d",\u0257:"d","\u1D91":"d",\u1E0F:"d","\u1D6D":"d","\u1D81":"d",\u0111:"d",\u0256:"d",\u018C:"d",\u0131:"i","\u0237":"j",\u025F:"j",\u0284:"j",\u01F3:"dz",\u01C6:"dz",\u00E9:"e",\u0115:"e",\u011B:"e",\u0229:"e",\u1E1D:"e",\u00EA:"e",\u1EBF:"e",\u1EC7:"e",\u1EC1:"e",\u1EC3:"e",\u1EC5:"e",\u1E19:"e",\u00EB:"e",\u0117:"e",\u1EB9:"e",\u0205:"e",\u00E8:"e",\u1EBB:"e",\u0207:"e",\u0113:"e",\u1E17:"e",\u1E15:"e","\u2C78":"e",\u0119:"e","\u1D92":"e","\u0247":"e",\u1EBD:"e",\u1E1B:"e","\uA76B":"et",\u1E1F:"f",\u0192:"f","\u1D6E":"f","\u1D82":"f",\u01F5:"g",\u011F:"g",\u01E7:"g",\u0123:"g",\u011D:"g",\u0121:"g",\u0260:"g",\u1E21:"g","\u1D83":"g",\u01E5:"g",\u1E2B:"h",\u021F:"h",\u1E29:"h",\u0125:"h","\u2C68":"h",\u1E27:"h",\u1E23:"h",\u1E25:"h",\u0266:"h",\u1E96:"h",\u0127:"h",\u0195:"hv",\u00ED:"i",\u012D:"i",\u01D0:"i",\u00EE:"i",\u00EF:"i",\u1E2F:"i",\u1ECB:"i",\u0209:"i",\u00EC:"i",\u1EC9:"i",\u020B:"i",\u012B:"i",\u012F:"i","\u1D96":"i",\u0268:"i",\u0129:"i",\u1E2D:"i","\uA77A":"d","\uA77C":"f","\u1D79":"g","\uA783":"r","\uA785":"s","\uA787":"t","\uA76D":"is",\u01F0:"j",\u0135:"j",\u029D:"j","\u0249":"j",\u1E31:"k",\u01E9:"k",\u0137:"k","\u2C6A":"k","\uA743":"k",\u1E33:"k",\u0199:"k",\u1E35:"k","\u1D84":"k","\uA741":"k","\uA745":"k",\u013A:"l",\u019A:"l",\u026C:"l",\u013E:"l",\u013C:"l",\u1E3D:"l","\u0234":"l",\u1E37:"l",\u1E39:"l","\u2C61":"l","\uA749":"l",\u1E3B:"l",\u0140:"l",\u026B:"l","\u1D85":"l",\u026D:"l",\u0142:"l",\u01C9:"lj",\u017F:"s","\u1E9C":"s",\u1E9B:"s","\u1E9D":"s",\u1E3F:"m",\u1E41:"m",\u1E43:"m",\u0271:"m","\u1D6F":"m","\u1D86":"m",\u0144:"n",\u0148:"n",\u0146:"n",\u1E4B:"n","\u0235":"n",\u1E45:"n",\u1E47:"n",\u01F9:"n",\u0272:"n",\u1E49:"n",\u019E:"n","\u1D70":"n","\u1D87":"n",\u0273:"n",\u00F1:"n",\u01CC:"nj",\u00F3:"o",\u014F:"o",\u01D2:"o",\u00F4:"o",\u1ED1:"o",\u1ED9:"o",\u1ED3:"o",\u1ED5:"o",\u1ED7:"o",\u00F6:"o",\u022B:"o",\u022F:"o",\u0231:"o",\u1ECD:"o",\u0151:"o",\u020D:"o",\u00F2:"o",\u1ECF:"o",\u01A1:"o",\u1EDB:"o",\u1EE3:"o",\u1EDD:"o",\u1EDF:"o",\u1EE1:"o",\u020F:"o","\uA74B":"o","\uA74D":"o","\u2C7A":"o",\u014D:"o",\u1E53:"o",\u1E51:"o",\u01EB:"o",\u01ED:"o",\u00F8:"o",\u01FF:"o",\u00F5:"o",\u1E4D:"o",\u1E4F:"o",\u022D:"o",\u01A3:"oi","\uA74F":"oo",\u025B:"e","\u1D93":"e",\u0254:"o","\u1D97":"o",\u0223:"ou",\u1E55:"p",\u1E57:"p","\uA753":"p",\u01A5:"p","\u1D71":"p","\u1D88":"p","\uA755":"p","\u1D7D":"p","\uA751":"p","\uA759":"q",\u02A0:"q","\u024B":"q","\uA757":"q",\u0155:"r",\u0159:"r",\u0157:"r",\u1E59:"r",\u1E5B:"r",\u1E5D:"r",\u0211:"r",\u027E:"r","\u1D73":"r",\u0213:"r",\u1E5F:"r",\u027C:"r","\u1D72":"r","\u1D89":"r","\u024D":"r",\u027D:"r","\u2184":"c","\uA73F":"c",\u0258:"e",\u027F:"r",\u015B:"s",\u1E65:"s",\u0161:"s",\u1E67:"s",\u015F:"s",\u015D:"s",\u0219:"s",\u1E61:"s",\u1E63:"s",\u1E69:"s",\u0282:"s","\u1D74":"s","\u1D8A":"s","\u023F":"s",\u0261:"g","\u1D11":"o","\u1D13":"o","\u1D1D":"u",\u0165:"t",\u0163:"t",\u1E71:"t",\u021B:"t","\u0236":"t",\u1E97:"t","\u2C66":"t",\u1E6B:"t",\u1E6D:"t",\u01AD:"t",\u1E6F:"t","\u1D75":"t",\u01AB:"t",\u0288:"t",\u0167:"t","\u1D7A":"th",\u0250:"a","\u1D02":"ae",\u01DD:"e","\u1D77":"g",\u0265:"h","\u02AE":"h","\u02AF":"h","\u1D09":"i",\u029E:"k","\uA781":"l",\u026F:"m",\u0270:"m","\u1D14":"oe",\u0279:"r",\u027B:"r",\u027A:"r","\u2C79":"r",\u0287:"t",\u028C:"v",\u028D:"w",\u028E:"y","\uA729":"tz",\u00FA:"u",\u016D:"u",\u01D4:"u",\u00FB:"u",\u1E77:"u",\u00FC:"u",\u01D8:"u",\u01DA:"u",\u01DC:"u",\u01D6:"u",\u1E73:"u",\u1EE5:"u",\u0171:"u",\u0215:"u",\u00F9:"u",\u1EE7:"u",\u01B0:"u",\u1EE9:"u",\u1EF1:"u",\u1EEB:"u",\u1EED:"u",\u1EEF:"u",\u0217:"u",\u016B:"u",\u1E7B:"u",\u0173:"u","\u1D99":"u",\u016F:"u",\u0169:"u",\u1E79:"u",\u1E75:"u","\u1D6B":"ue","\uA778":"um","\u2C74":"v","\uA75F":"v",\u1E7F:"v",\u028B:"v","\u1D8C":"v","\u2C71":"v",\u1E7D:"v","\uA761":"vy",\u1E83:"w",\u0175:"w",\u1E85:"w",\u1E87:"w",\u1E89:"w",\u1E81:"w","\u2C73":"w",\u1E98:"w",\u1E8D:"x",\u1E8B:"x","\u1D8D":"x",\u00FD:"y",\u0177:"y",\u00FF:"y",\u1E8F:"y",\u1EF5:"y",\u1EF3:"y",\u01B4:"y",\u1EF7:"y","\u1EFF":"y",\u0233:"y",\u1E99:"y","\u024F":"y",\u1EF9:"y",\u017A:"z",\u017E:"z",\u1E91:"z",\u0291:"z","\u2C6C":"z",\u017C:"z",\u1E93:"z",\u0225:"z",\u1E95:"z","\u1D76":"z","\u1D8E":"z",\u0290:"z",\u01B6:"z","\u0240":"z",\uFB00:"ff",\uFB03:"ffi",\uFB04:"ffl",\uFB01:"fi",\uFB02:"fl",\u0133:"ij",\u0153:"oe",\uFB06:"st","\u2090":"a","\u2091":"e","\u1D62":"i","\u2C7C":"j","\u2092":"o","\u1D63":"r","\u1D64":"u","\u1D65":"v","\u2093":"x"};var k=class{constructor(a,s=a,e=!1){this.item=a,this.value=s,this.header=e}isHeader(){return this.header}toString(){return this.value}};function W(n){return n?n.replace(/[^A-Za-z0-9[\] ]/g,function(a){return Et[a]||a}):""}function ge(n,a=" ",s="",e){let t=[];if(!e)t=rt(n,a,s);else{let i=`([${e}]+)`,o=n.split(new RegExp(i,"g")),l=o[o.length-1];l>""&&(a&&s?t=rt(l,a,s):t.push(l))}return t}function rt(n,a,s){let e=[],t=`(?:[${s}])([^${s}]+)(?:[${s}])|([^${a}]+)`,i=n.split(new RegExp(t,"g")),o=i.length,l,h=new RegExp(`[${s}]+`,"g");for(let d=0;d<o;d+=1)l=i[d],l&&l.length&&l!==a&&e.push(l.replace(h,""));return e}function A(n,a){if(!a||typeof n!="object")return n.toString();if(a.endsWith("()")){let t=a.slice(0,a.length-2);return n[t]().toString()}let e=a.replace(/\[(\w+)\]/g,".$1").replace(/^\./,"").split(".");for(let t of e)t in n&&(n=n[t]);return n?n.toString():""}var lt="220ms cubic-bezier(0, 0, 0.2, 1)",Ot=Be("typeaheadAnimation",[fe("animated-down",z({height:"*",overflow:"hidden"})),J("* => animated-down",[z({height:0,overflow:"hidden"}),X(lt)]),fe("animated-up",z({height:"*",overflow:"hidden"})),J("* => animated-up",[z({height:"*",overflow:"hidden"}),X(lt)]),J("* => unanimated",X("0s"))]),It=0,wt=(()=>{let a=class a{get typeaheadTemplateMethods(){return{selectMatch:this.selectMatch.bind(this),selectActive:this.selectActive.bind(this),isActive:this.isActive.bind(this)}}constructor(e,t,i,o){this.positionService=e,this.renderer=t,this.element=i,this.changeDetectorRef=o,this.activeChangeEvent=new g,this.isFocused=!1,this.positionServiceSubscription=new ve,this.height=0,this.popupId=`ngb-typeahead-${It++}`,this._matches=[],this.renderer.setAttribute(this.element.nativeElement,"id",this.popupId),this.positionServiceSubscription.add(this.positionService.event$?.subscribe(()=>{if(this.isAnimated){this.animationState=this.isTopPosition?"animated-up":"animated-down",this.changeDetectorRef.detectChanges();return}this.animationState="unanimated",this.changeDetectorRef.detectChanges()}))}get active(){return this._active}set active(e){this._active=e,this.activeChanged()}get matches(){return this._matches}set matches(e){if(this.positionService.setOptions({modifiers:{flip:{enabled:this.adaptivePosition}},allowedPositions:["top","bottom"]}),this._matches=e,this.needScrollbar=this.typeaheadScrollable&&this.typeaheadOptionsInScrollableView<this.matches.length,this.typeaheadScrollable&&setTimeout(()=>{this.setScrollableMode()}),this.typeaheadIsFirstItemActive&&this._matches.length>0&&(this.setActive(this._matches[0]),this._active?.isHeader()&&this.nextActiveMatch()),this._active&&!this.typeaheadIsFirstItemActive){let t=this._matches.find(i=>i.value===this._active?.value);if(t){this.selectActive(t);return}this.active=void 0}}get isTopPosition(){return this.element.nativeElement.classList.contains("top")}get optionsListTemplate(){return this.parent?this.parent.optionsListTemplate:void 0}get isAnimated(){return this.parent?this.parent.isAnimated:!1}get adaptivePosition(){return this.parent?this.parent.adaptivePosition:!1}get typeaheadScrollable(){return this.parent?this.parent.typeaheadScrollable:!1}get typeaheadOptionsInScrollableView(){return this.parent?this.parent.typeaheadOptionsInScrollableView:5}get typeaheadIsFirstItemActive(){return this.parent?this.parent.typeaheadIsFirstItemActive:!0}get itemTemplate(){return this.parent?this.parent.typeaheadItemTemplate:void 0}get canSelectItemsOnBlur(){return!!this.parent?.selectItemOnBlur}selectActiveMatch(e){this._active&&this.parent?.typeaheadSelectFirstItem&&this.selectMatch(this._active),!this.parent?.typeaheadSelectFirstItem&&e&&this.selectMatch(this._active)}activeChanged(){if(!this._active)return;let e=this.matches.indexOf(this._active);this.activeChangeEvent.emit(`${this.popupId}-${e}`)}prevActiveMatch(){if(!this._active)return;let e=this.matches.indexOf(this._active);this.setActive(this.matches[e-1<0?this.matches.length-1:e-1]),this._active.isHeader()&&this.prevActiveMatch(),this.typeaheadScrollable&&this.scrollPrevious(e)}nextActiveMatch(){let e=this._active?this.matches.indexOf(this._active):-1;this.setActive(this.matches[e+1>this.matches.length-1?0:e+1]),this._active?.isHeader()&&this.nextActiveMatch(),this.typeaheadScrollable&&this.scrollNext(e)}selectActive(e){this.isFocused=!0,this.setActive(e)}highlight(e,t){let i=e.value,o=(this.parent&&this.parent.typeaheadLatinize?W(i):i).toLowerCase(),l,h;if(typeof t=="object"){let d=t.length,O="\u2063",P=17;for(let L=0;L<d;L+=1)l=o.indexOf(t[L]),h=t[L].length,l>=0&&h>0&&(i=`${i.substring(0,l)}<strong>${i.substring(l,l+h)}</strong>${i.substring(l+h)}`,o=`${o.substring(0,l)}${O.repeat(P+h)}${o.substring(l+h)}`)}else t&&(l=o.indexOf(t),h=t.length,l>=0&&h>0&&(i=`${i.substring(0,l)}<strong>${i.substring(l,l+h)}</strong>${i.substring(l+h)}`));return i}focusLost(){this.isFocused=!1,this.canSelectItemsOnBlur||this.setActive(void 0)}isActive(e){return this.active===e}selectMatch(e,t){return t&&(t.stopPropagation(),t.preventDefault()),this.parent?.changeModel(e),setTimeout(()=>this.parent?.typeaheadOnSelect.emit(e),0),!1}setScrollableMode(){if(this.ulElement||(this.ulElement=this.element),this.liElements?.first){let e=ye.getStyles(this.ulElement.nativeElement),t=ye.getStyles(this.liElements.first.nativeElement),i=parseFloat((e["padding-bottom"]?e["padding-bottom"]:"").replace("px","")),o=parseFloat((e["padding-top"]?e["padding-top"]:"0").replace("px","")),l=parseFloat((t.height?t.height:"0").replace("px","")),h=this.typeaheadOptionsInScrollableView*l;this.guiHeight=`${h+o+i}px`}this.renderer.setStyle(this.element.nativeElement,"visibility","visible")}scrollPrevious(e){if(e===0){this.scrollToBottom();return}if(this.liElements&&this.ulElement){let t=this.liElements.toArray()[e-1];t&&!this.isScrolledIntoView(t.nativeElement)&&(this.ulElement.nativeElement.scrollTop=t.nativeElement.offsetTop)}}scrollNext(e){if(e+1>this.matches.length-1){this.scrollToTop();return}if(this.liElements&&this.ulElement){let t=this.liElements.toArray()[e+1];t&&!this.isScrolledIntoView(t.nativeElement)&&(this.ulElement.nativeElement.scrollTop=t.nativeElement.offsetTop-Number(this.ulElement.nativeElement.offsetHeight)+Number(t.nativeElement.offsetHeight))}}ngOnDestroy(){this.positionServiceSubscription.unsubscribe()}setActive(e){this._active=e;let t;this._active==null||this._active.isHeader()||(t=e),this.parent?.typeaheadOnPreview.emit(t)}isScrolledIntoView(e){if(!this.ulElement)return!1;let t=this.ulElement.nativeElement.scrollTop,i=t+Number(this.ulElement.nativeElement.offsetHeight),o=e.offsetTop;return o+e.offsetHeight<=i&&o>=t}scrollToBottom(){this.ulElement?.nativeElement&&(this.ulElement.nativeElement.scrollTop=this.ulElement.nativeElement.scrollHeight)}scrollToTop(){this.ulElement?.nativeElement&&(this.ulElement.nativeElement.scrollTop=0)}};a.\u0275fac=function(t){return new(t||a)(v($),v(ae),v(R),v(ue))},a.\u0275cmp=K({type:a,selectors:[["typeahead-container"]],viewQuery:function(t,i){if(t&1&&(B(ut,5),B(ft,5)),t&2){let o;H(o=V())&&(i.ulElement=o.first),H(o=V())&&(i.liElements=o)}},hostAttrs:[1,"dropdown","open","bottom","dropdown-menu",2,"position","absolute","display","block"],hostVars:7,hostBindings:function(t,i){t&1&&b("mouseleave",function(){return i.focusLost()})("blur",function(){return i.focusLost()}),t&2&&(se("role","listbox"),Ae("height",i.needScrollbar?i.guiHeight:"auto")("visibility","inherit"),le("dropup",i.dropup))},outputs:{activeChangeEvent:"activeChange"},features:[de([$])],decls:5,vars:7,consts:[["bsItemTemplate",""],["bs4Template",""],["liElements",""],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"innerHtml"],["ngFor","",3,"ngForOf"],["class","dropdown-header",4,"ngIf"],[3,"ngIf"],[1,"dropdown-header"],["role","option",1,"dropdown-item",3,"click","mouseenter","id"]],template:function(t,i){if(t&1&&w(0,gt,0,0,"ng-template",3)(1,vt,1,1,"ng-template",null,0,N)(3,Tt,1,1,"ng-template",null,1,N),t&2){let o=D(2),l=D(4);p("ngTemplateOutlet",i.optionsListTemplate||l)("ngTemplateOutletContext",me(2,yt,i.matches,i.itemTemplate||o,i.query,i.typeaheadTemplateMethods))}},dependencies:[ke,Fe,De],styles:[".dropdown[_nghost-%COMP%]{z-index:1000}.dropdown-menu[_nghost-%COMP%], .dropdown-menu[_ngcontent-%COMP%]{overflow-y:auto;height:100px}"],data:{animation:[Ot]}});let n=a;return n})(),ht=(()=>{let a=class a{constructor(){this.adaptivePosition=!1,this.isAnimated=!1,this.hideResultsOnBlur=!0,this.cancelRequestOnFocusLost=!1,this.selectFirstItem=!0,this.isFirstItemActive=!0,this.minLength=1,this.selectItemOnBlur=!1}};a.\u0275fac=function(t){return new(t||a)},a.\u0275prov=Ee({token:a,factory:a.\u0275fac,providedIn:"root"});let n=a;return n})(),ct=(()=>{let a=class a{constructor(e,t,i,o,l,h,d){this.changeDetection=i,this.element=o,this.ngControl=l,this.renderer=h,this.typeaheadMinLength=1,this.adaptivePosition=!1,this.isAnimated=!1,this.typeaheadWaitMs=0,this.typeaheadLatinize=!0,this.typeaheadSingleWords=!0,this.typeaheadWordDelimiters=" ",this.typeaheadMultipleSearchDelimiters=",",this.typeaheadPhraseDelimiters=`'"`,this.typeaheadScrollable=!1,this.typeaheadOptionsInScrollableView=5,this.typeaheadSelectFirstItem=!0,this.typeaheadIsFirstItemActive=!0,this.typeaheadLoading=new g,this.typeaheadNoResults=new g,this.typeaheadOnSelect=new g,this.typeaheadOnPreview=new g,this.typeaheadOnBlur=new g,this.dropup=!1,this.isOpen=!1,this.list="list",this.isActiveItemChanged=!1,this.isFocused=!1,this.cancelRequestOnFocusLost=!1,this.selectItemOnBlur=!1,this.keyUpEventEmitter=new g,this.placement="bottom left",this._matches=[],this._subscriptions=[],this._outsideClickListener=()=>{},this._typeahead=e.createLoader(o,d,h).provide({provide:ht,useValue:t}),Object.assign(this,{typeaheadHideResultsOnBlur:t.hideResultsOnBlur,cancelRequestOnFocusLost:t.cancelRequestOnFocusLost,typeaheadSelectFirstItem:t.selectFirstItem,typeaheadIsFirstItemActive:t.isFirstItemActive,typeaheadMinLength:t.minLength,adaptivePosition:t.adaptivePosition,isAnimated:t.isAnimated,selectItemOnBlur:t.selectItemOnBlur})}get matches(){return this._matches}ngOnInit(){this.typeaheadOptionsLimit=this.typeaheadOptionsLimit||20,this.typeaheadMinLength=this.typeaheadMinLength===void 0?1:this.typeaheadMinLength,this.typeaheadAsync===void 0&&!G(this.typeahead)&&(this.typeaheadAsync=!1),G(this.typeahead)&&(this.typeaheadAsync=!0),this.typeaheadAsync?this.asyncActions():this.syncActions(),this.checkDelimitersConflict()}onInput(e){let t=e.target.value!==void 0?e.target.value:e.target.textContent!==void 0?e.target.textContent:e.target.innerText;t!=null&&t.trim().length>=this.typeaheadMinLength?(this.typeaheadLoading.emit(!0),this.keyUpEventEmitter.emit(e.target.value)):(this.typeaheadLoading.emit(!1),this.typeaheadNoResults.emit(!1),this.hide())}onChange(e){if(this._container){if(e.keyCode===27||e.key==="Escape"){this.hide();return}if(e.keyCode===38||e.key==="ArrowUp"){this.isActiveItemChanged=!0,this._container.prevActiveMatch();return}if(e.keyCode===40||e.key==="ArrowDown"){this.isActiveItemChanged=!0,this._container.nextActiveMatch();return}if(e.keyCode===13||e.key==="Enter"){this._container.selectActiveMatch();return}}}onFocus(){this.isFocused=!0,setTimeout(()=>{this.typeaheadMinLength===0&&(this.typeaheadLoading.emit(!0),this.keyUpEventEmitter.emit(this.element.nativeElement.value||""))},0)}onBlur(){this.isFocused=!1,this._container&&!this._container.isFocused&&this.typeaheadOnBlur.emit(this._container.active),!this.container&&this._matches?.length===0&&this.typeaheadOnBlur.emit(new k(this.element.nativeElement.value,this.element.nativeElement.value,!1))}onKeydown(e){if(this._container&&((e.keyCode===9||e.key==="Tab")&&this.onBlur(),e.keyCode===9||e.key==="Tab"||e.keyCode===13||e.key==="Enter")){if(e.preventDefault(),this.typeaheadSelectFirstItem){this._container.selectActiveMatch();return}this.typeaheadSelectFirstItem||(this._container.selectActiveMatch(this.isActiveItemChanged),this.isActiveItemChanged=!1,this.hide())}}changeModel(e){if(!e)return;let t;if(this.typeaheadMultipleSearch&&this._allEnteredValue){let i=this._allEnteredValue.split(new RegExp(`([${this.typeaheadMultipleSearchDelimiters}]+)`));this._allEnteredValue=i.slice(0,i.length-1).concat(e.value).join(""),t=this._allEnteredValue}else t=e.value;this.ngControl.viewToModelUpdate(t),this.ngControl.control?.setValue(t),this.changeDetection.markForCheck(),this.hide()}show(){if(this._typeahead.attach(wt).to(this.container).position({attachment:`${this.dropup?"top":"bottom"} left`}).show({typeaheadRef:this,placement:this.placement,animation:!1,dropup:this.dropup}),this._outsideClickListener=this.renderer.listen("document","click",t=>{this.typeaheadMinLength===0&&this.element.nativeElement.contains(t.target)||!this.typeaheadHideResultsOnBlur||this.element.nativeElement.contains(t.target)||this.onOutsideClick()}),!this._typeahead.instance||!this.ngControl.control)return;this._container=this._typeahead.instance,this._container.parent=this;let e=(this.typeaheadLatinize?W(this.ngControl.control.value):this.ngControl.control.value).toString().toLowerCase();this._container.query=this.tokenizeQuery(e),this._container.matches=this._matches,this.element.nativeElement.focus(),this._container.activeChangeEvent.subscribe(t=>{this.activeDescendant=t,this.changeDetection.markForCheck()}),this.isOpen=!0}hide(){this._typeahead.isShown&&(this._typeahead.hide(),this._outsideClickListener(),this._container=void 0,this.isOpen=!1,this.changeDetection.markForCheck()),this.typeaheadOnPreview.emit()}onOutsideClick(){this._container&&!this._container.isFocused&&this.hide()}ngOnDestroy(){for(let e of this._subscriptions)e.unsubscribe();this._typeahead.dispose()}asyncActions(){this._subscriptions.push(this.keyUpEventEmitter.pipe(ie(this.typeaheadWaitMs),Y(e=>this._allEnteredValue=e),Te(()=>this.typeahead?this.typeahead:te)).subscribe(e=>{this.finalizeAsyncCall(e)}))}syncActions(){this._subscriptions.push(this.keyUpEventEmitter.pipe(ie(this.typeaheadWaitMs),j(e=>{this._allEnteredValue=e;let t=this.normalizeQuery(e);return this.typeahead?(G(this.typeahead)?this.typeahead:xe(this.typeahead)).pipe(be(o=>!!o&&this.testMatch(this.normalizeOption(o),t)),Se()):te})).subscribe(e=>{this.finalizeAsyncCall(e)}))}normalizeOption(e){let t=A(e,this.typeaheadOptionField);return(this.typeaheadLatinize?W(t):t).toLowerCase()}tokenizeQuery(e){let t=e;return this.typeaheadMultipleSearch&&this.typeaheadSingleWords?this.haveCommonCharacters(`${this.typeaheadPhraseDelimiters}${this.typeaheadWordDelimiters}`,this.typeaheadMultipleSearchDelimiters)||(t=ge(t,this.typeaheadWordDelimiters,this.typeaheadPhraseDelimiters,this.typeaheadMultipleSearchDelimiters)):this.typeaheadSingleWords?t=ge(t,this.typeaheadWordDelimiters,this.typeaheadPhraseDelimiters):t=ge(t,void 0,void 0,this.typeaheadMultipleSearchDelimiters),t}normalizeQuery(e){let t=(this.typeaheadLatinize?W(e):e).toString().toLowerCase();return t=this.tokenizeQuery(t),t}testMatch(e,t){let i;if(typeof t=="object"){i=t.length;for(let o=0;o<i;o+=1)if(t[o].length>0&&e.indexOf(t[o])<0)return!1;return!0}return e.indexOf(t)>=0}finalizeAsyncCall(e){if(this.prepareMatches(e||[]),this.typeaheadLoading.emit(!1),this.typeaheadNoResults.emit(!this.hasMatches()),!this.hasMatches()){this.hide();return}if(!(!this.isFocused&&this.cancelRequestOnFocusLost))if(this._container&&this.ngControl.control){let i=((this.typeaheadLatinize?W(this.ngControl.control.value):this.ngControl.control.value)||"").toString().toLowerCase();this._container.query=this.tokenizeQuery(i),this._container.matches=this._matches}else this.show()}prepareMatches(e){let t=e.slice(0,this.typeaheadOptionsLimit),i=this.typeaheadOrderBy?this.orderMatches(t):t;if(this.typeaheadGroupField){let o=[];i.map(h=>A(h,this.typeaheadGroupField)).filter((h,d,O)=>O.indexOf(h)===d).forEach(h=>{o.push(new k(h,h,!0)),o=o.concat(i.filter(d=>A(d,this.typeaheadGroupField)===h).map(d=>new k(d,A(d,this.typeaheadOptionField))))}),this._matches=o}else this._matches=i.map(o=>new k(o,A(o,this.typeaheadOptionField)))}orderMatches(e){if(!e.length)return e;if(this.typeaheadOrderBy!==null&&this.typeaheadOrderBy!==void 0&&typeof this.typeaheadOrderBy=="object"&&Object.keys(this.typeaheadOrderBy).length===0)return console.error("Field and direction properties for typeaheadOrderBy have to be set according to documentation!"),e;let{field:t,direction:i}=this.typeaheadOrderBy||{};return!i||!(i==="asc"||i==="desc")?(console.error('typeaheadOrderBy direction has to equal "asc" or "desc". Please follow the documentation.'),e):typeof e[0]=="string"?i==="asc"?e.sort():e.sort().reverse():!t||typeof t!="string"?(console.error("typeaheadOrderBy field has to set according to the documentation."),e):e.sort((o,l)=>{let h=A(o,t),d=A(l,t);return h<d?i==="asc"?-1:1:h>d?i==="asc"?1:-1:0})}hasMatches(){return this._matches.length>0}checkDelimitersConflict(){if(this.typeaheadMultipleSearch&&this.typeaheadSingleWords&&this.haveCommonCharacters(`${this.typeaheadPhraseDelimiters}${this.typeaheadWordDelimiters}`,this.typeaheadMultipleSearchDelimiters))throw new Error(`Delimiters used in typeaheadMultipleSearchDelimiters must be different
2
+ from delimiters used in typeaheadWordDelimiters (current value: ${this.typeaheadWordDelimiters}) and
3
+ typeaheadPhraseDelimiters (current value: ${this.typeaheadPhraseDelimiters}).
4
+ Please refer to the documentation`)}haveCommonCharacters(e,t){for(let i=0;i<e.length;i++)if(e.charAt(i).indexOf(t)>-1)return!0;return!1}};a.\u0275fac=function(t){return new(t||a)(v(ee),v(ht),v(ue),v(R),v(Ve),v(ae),v(Ie))},a.\u0275dir=Z({type:a,selectors:[["","typeahead",""]],hostVars:4,hostBindings:function(t,i){t&1&&b("input",function(l){return i.onInput(l)})("keyup",function(l){return i.onChange(l)})("click",function(){return i.onFocus()})("focus",function(){return i.onFocus()})("blur",function(){return i.onBlur()})("keydown",function(l){return i.onKeydown(l)}),t&2&&se("aria-activedescendant",i.activeDescendant)("aria-owns",i.isOpen?i._container.popupId:null)("aria-expanded",i.isOpen)("aria-autocomplete",i.list)},inputs:{typeahead:"typeahead",typeaheadMinLength:"typeaheadMinLength",adaptivePosition:"adaptivePosition",isAnimated:"isAnimated",typeaheadWaitMs:"typeaheadWaitMs",typeaheadOptionsLimit:"typeaheadOptionsLimit",typeaheadOptionField:"typeaheadOptionField",typeaheadGroupField:"typeaheadGroupField",typeaheadOrderBy:"typeaheadOrderBy",typeaheadAsync:"typeaheadAsync",typeaheadLatinize:"typeaheadLatinize",typeaheadSingleWords:"typeaheadSingleWords",typeaheadWordDelimiters:"typeaheadWordDelimiters",typeaheadMultipleSearch:"typeaheadMultipleSearch",typeaheadMultipleSearchDelimiters:"typeaheadMultipleSearchDelimiters",typeaheadPhraseDelimiters:"typeaheadPhraseDelimiters",typeaheadItemTemplate:"typeaheadItemTemplate",optionsListTemplate:"optionsListTemplate",typeaheadScrollable:"typeaheadScrollable",typeaheadOptionsInScrollableView:"typeaheadOptionsInScrollableView",typeaheadHideResultsOnBlur:"typeaheadHideResultsOnBlur",typeaheadSelectFirstItem:"typeaheadSelectFirstItem",typeaheadIsFirstItemActive:"typeaheadIsFirstItemActive",container:"container",dropup:"dropup"},outputs:{typeaheadLoading:"typeaheadLoading",typeaheadNoResults:"typeaheadNoResults",typeaheadOnSelect:"typeaheadOnSelect",typeaheadOnPreview:"typeaheadOnPreview",typeaheadOnBlur:"typeaheadOnBlur"},exportAs:["bs-typeahead"],features:[de([ee,$])]});let n=a;return n})(),pt=(()=>{let a=class a{static forRoot(){return{ngModule:a,providers:[]}}};a.\u0275fac=function(t){return new(t||a)},a.\u0275mod=we({type:a}),a.\u0275inj=Oe({imports:[Ue]});let n=a;return n})();var dt=(()=>{let a=class a{transform(e,t,i=!1){if(i&&t.length<1)return e;if(t&&e){let o=t.replace(/[-[\]/{}()*+?.\\^$|]/g,"\\$&");o=o.split(" ").filter(h=>h.length>0).join("|");let l=new RegExp(o,"gi");return e.replace(l,h=>`<b>${h}</b>`)}else return e}};a.\u0275fac=function(t){return new(t||a)},a.\u0275pipe=Me({name:"highlight",type:a,pure:!0});let n=a;return n})();var At=["InputTypeHead"],Pt=(n,a)=>a.mid,Lt=(n,a)=>a.key;function Ft(n,a){if(n&1&&f(0,"img",7),n&2){let s=r().item;p("src",s.avatarUrl,ne)}}function Dt(n,a){if(n&1&&f(0,"fa-icon",13),n&2){let s=r().item,e=r();q(s.isPersonalGroup?"circle-purple-icon":"circle-primary-icon"),p("icon",e.icons.GROUPS)}}function kt(n,a){if(n&1&&(f(0,"span",10),E(1,"highlight")),n&2){let s=r().item,e=r();p("innerHTML",I(1,1,s.description,e.selection),U)}}function Rt(n,a){if(n&1&&(m(0,"div",5)(1,"div",6),C(2,Ft,1,1,"img",7)(3,Dt,1,3,"fa-icon",8),u(),m(4,"div"),f(5,"div",9),E(6,"highlight"),C(7,kt,2,4,"span",10),u(),m(8,"div",11)(9,"span",12),S(10),u()()()),n&2){let s=a.item,e=r();c(2),x(s.isUser?2:3),c(2),q(Pe("d-flex ms-2 pe-5 ",s.description?"flex-column align-items-start":"align-items-center")),c(),p("innerHTML",I(6,7,s.name,e.selection),U),c(2),x(s.description?7:-1),c(3),T(s.type)}}function Ut(n,a){if(n&1){let s=M();m(0,"input",14,1),E(2,"translate"),b("typeaheadOnSelect",function(t){y(s);let i=r();return _(i.onSelect(t))})("typeaheadLoading",function(){y(s);let t=r();return _(t.onLoading())})("typeaheadNoResults",function(){y(s);let t=r();return _(t.onNoResults())})("typeaheadOnPreview",function(){y(s);let t=r();return _(t.onPreview())}),pe("ngModelChange",function(t){y(s);let i=r();return ce(i.selection,t)||(i.selection=t),_(t)}),u()}if(n&2){let s=r(),e=D(1);he("ngModel",s.selection),p("placeholder",I(2,10,s.placeHolder,s.locale.language))("typeaheadItemTemplate",e)("typeaheadAsync",!0)("typeaheadMinLength",0)("typeaheadSingleWords",!0)("typeaheadOptionField","name")("typeaheadWaitMs",100)("typeaheadHideResultsOnBlur",!0)("typeahead",s.asyncSearchUsersOrGroups)}}function Bt(n,a){if(n&1&&f(0,"img",7),n&2){let s=r().$implicit;p("src",s.avatarUrl,ne)}}function Ht(n,a){if(n&1&&f(0,"fa-icon",17),n&2){let s=r(2);p("icon",s.icons.LINKS)}}function Vt(n,a){if(n&1&&f(0,"fa-icon",13),n&2){let s=r().$implicit,e=r();q(s.isPersonalGroup?"circle-purple-icon":"circle-primary-icon"),p("icon",e.icons.GROUPS)}}function Nt(n,a){if(n&1&&(m(0,"span",21),S(1),u()),n&2){let s=r().$implicit;c(),T(s.description)}}function zt(n,a){if(n&1&&(m(0,"span",22),S(1),u()),n&2){let s=r().$implicit;c(),T(s.type)}}function $t(n,a){if(n&1){let s=M();m(0,"button",32),E(1,"translate"),pe("ngModelChange",function(t){y(s);let i=r().$implicit,o=r(3).$implicit;return ce(o.hPerms[i.key],t)||(o.hPerms[i.key]=t),_(t)}),b("ngModelChange",function(){y(s);let t=r(4).$implicit,i=r();return _(i.onPermissionChange(t))}),f(2,"fa-icon",33),u()}if(n&2){let s=r().$implicit,e=r(3).$implicit,t=r();he("ngModel",e.hPerms[s.key]),p("tooltip",I(1,3,t.SPACES_PERMISSIONS_TEXT[s.key].text,t.locale.language)),c(2),p("icon",t.SPACES_PERMISSIONS_TEXT[s.key].icon)}}function Wt(n,a){if(n&1&&C(0,$t,3,6,"button",31),n&2){let s=a.$implicit,e=r(4);x(!e.filterPermissions||(e.filterPermissions&&e.allowedPermissions.indexOf(s.key))>-1?0:-1)}}function Gt(n,a){if(n&1&&(oe(0,Wt,1,1,null,null,Lt),E(2,"keyvalue"),f(3,"div",30)),n&2){let s=r(2).$implicit,e=r();re(I(2,0,s.hPerms,e.originalOrderKeyValue))}}function jt(n,a){if(n&1){let s=M();m(0,"button",34),E(1,"translate"),b("click",function(){y(s);let t=r(2).$implicit,i=r();return _(i.editFunction(t))}),f(2,"fa-icon",13),u()}if(n&2){let s=r(3);p("tooltip",I(1,2,"Edit",s.locale.language)),c(2),p("icon",s.icons.faPen)}}function Yt(n,a){if(n&1){let s=M();m(0,"div",26),f(1,"div",27),C(2,Gt,4,3),C(3,jt,3,5,"button",28),m(4,"button",29),E(5,"translate"),b("click",function(){y(s);let t=r().$implicit,i=r();return _(i.removeMember(t))}),f(6,"fa-icon",13),u()()}if(n&2){let s=r(2);c(2),x(s.withPermissions?2:-1),c(),x(s.editFunction?3:-1),c(),p("tooltip",I(5,4,"Remove",s.locale.language)),c(2),p("icon",s.icons.faTimes)}}function Qt(n,a){if(n&1&&(m(0,"div",4)(1,"div",15)(2,"div",16),C(3,Bt,1,1,"img",7)(4,Ht,1,1,"fa-icon",17)(5,Vt,1,3,"fa-icon",8),m(6,"div",18)(7,"div",19),S(8),u(),m(9,"div",20),C(10,Nt,2,1,"span",21)(11,zt,2,1,"span",22),u()()(),m(12,"div",23)(13,"div",24),S(14),u(),m(15,"div",25),S(16),E(17,"amTimeAgo"),u()(),C(18,Yt,7,7,"div",26),u()()),n&2){let s=a.$implicit,e=r();c(3),x(s.isUser?3:s.isLink?4:5),c(5),T(s.name),c(2),x(s.description?10:s.linkId?-1:11),c(4),T(s.isLink?e.MEMBER_TYPE.LINK:s.type),c(2),T(Le(17,6,s.createdAt)),c(2),x(e.editMode?18:-1)}}var Gi=(()=>{let a=class a{constructor(){this.members=[],this.membersChange=new g,this.withPermissions=!1,this.filterPermissions=!1,this.allowedPermissions=[],this.editMode=!0,this.hideInput=!1,this.editFunction=null,this.locale=F(We),this.MEMBER_TYPE=it,this.originalOrderKeyValue=Je,this.SPACES_PERMISSIONS_TEXT=tt,this.icons={GROUPS:qe.GROUPS,LINKS:et.LINKS,faTimes:Ke,faPen:Ze},this.selection="",this.ngZone=F(Q),this.defaultPlaceholder="Type to search for users or groups to add",this.placeHolder=this.defaultPlaceholder,this.lastResults=[],this.asyncSearchUsersOrGroups=new Ce(e=>e.next(this.selection)).pipe(j(e=>this.searchFunction(e||"").pipe(Y(t=>this.lastResults=t))))}ngOnInit(){this.setDefaultPlaceHolder()}onSelect(e){this.ngZone.run(()=>{this.selection="",this.inputTypeHead.nativeElement.value=""});let t=e.item;t.createdAt||(t.createdAt=new Date),this.members.unshift(e.item),this.membersChange.emit(this.members),this.lastResults=this.lastResults.filter(i=>i.mid!==t.mid)}onPermissionChange(e){e.permissions=nt(e.hPerms)}removeMember(e){this.members=this.members.filter(t=>t.mid!==e.mid),this.membersChange.emit(this.members),this.lastResults.push(e)}onLoading(){this.placeHolder="Loading..."}onNoResults(){this.placeHolder="No results"}onPreview(){this.setDefaultPlaceHolder()}setDefaultPlaceHolder(){this.placeHolder=this.customPlaceholder||this.defaultPlaceholder}};a.\u0275fac=function(t){return new(t||a)},a.\u0275cmp=K({type:a,selectors:[["app-user-search"]],viewQuery:function(t,i){if(t&1&&B(At,5),t&2){let o;H(o=V())&&(i.inputTypeHead=o.first)}},inputs:{members:"members",withPermissions:"withPermissions",filterPermissions:"filterPermissions",allowedPermissions:"allowedPermissions",editMode:"editMode",hideInput:"hideInput",searchFunction:"searchFunction",editFunction:"editFunction",customPlaceholder:"customPlaceholder"},outputs:{membersChange:"membersChange"},decls:6,vars:1,consts:[["searchMembers",""],["InputTypeHead",""],[1,"form-control","form-control-sm","mb-2",3,"ngModel","placeholder","typeaheadItemTemplate","typeaheadAsync","typeaheadMinLength","typeaheadSingleWords","typeaheadOptionField","typeaheadWaitMs","typeaheadHideResultsOnBlur","typeahead"],[1,"col-12","mt-1"],[1,"bg-theme","mb-1","p-2",2,"border-radius","4px"],["role","button",1,"d-flex"],[1,"d-flex","align-items-center","text-truncate"],["alt","","height","30","width","30",1,"avatar-base-img",3,"src"],[3,"icon","class"],[3,"innerHTML"],[1,"fs-xxxs","me-4",3,"innerHTML"],[1,"ms-auto","ps-5","me-1","text-muted","d-none","d-lg-block","fs-xxxs","align-self-center"],["l10nTranslate",""],[3,"icon"],[1,"form-control","form-control-sm","mb-2",3,"typeaheadOnSelect","typeaheadLoading","typeaheadNoResults","typeaheadOnPreview","ngModelChange","ngModel","placeholder","typeaheadItemTemplate","typeaheadAsync","typeaheadMinLength","typeaheadSingleWords","typeaheadOptionField","typeaheadWaitMs","typeaheadHideResultsOnBlur","typeahead"],[1,"d-flex","align-items-center","text-truncate","no-select","fs-xs",2,"height","32px"],[1,"d-flex","align-items-center","text-truncate","me-auto"],[1,"circle-primary-icon",3,"icon"],[1,"d-flex","flex-column","text-truncate","ms-2"],[1,"text-truncate"],[1,"fs-xxxs","text-truncate"],[1,"fs-xxxs"],["l10nTranslate","",1,"fs-xxxs"],[1,"d-flex","flex-column","fs-xxxs","text-muted","d-none","d-lg-block","ms-3"],["l10nTranslate","",1,"d-flex","justify-content-end"],[1,"d-flex","justify-content-end"],[1,"d-flex","no-select"],[1,"vr","mx-2"],["type","button",1,"btn","btn-sm","btn-custom","me-2",3,"tooltip"],["type","button",1,"btn","btn-sm","btn-danger",3,"click","tooltip"],[1,"vr","ms-1","me-2"],["btnCheckbox","","type","button",1,"btn","btn-sm","btn-custom",3,"ngModel","tooltip"],["btnCheckbox","","type","button",1,"btn","btn-sm","btn-custom",3,"ngModelChange","ngModel","tooltip"],["size","lg",3,"icon"],["type","button",1,"btn","btn-sm","btn-custom","me-2",3,"click","tooltip"]],template:function(t,i){t&1&&(w(0,Rt,11,10,"ng-template",null,0,N),C(2,Ut,3,13,"input",2),m(3,"div",3),oe(4,Qt,19,8,"div",4,Pt),u()),t&2&&(c(2),x(i.hideInput?-1:2),c(2),re(i.members))},dependencies:[pt,ct,$e,He,Ne,ze,Xe,je,st,at,Qe,Ye,Ge,ot,dt,Re],encapsulation:2});let n=a;return n})();export{Jt as a,dt as b,Gi as c};
@@ -1 +1 @@
1
- import{b as h,c as o,d as i,e as r}from"./chunk-QIGUDEZF.js";import{h as e,m}from"./chunk-RTNEBRKJ.js";import{$a as s}from"./chunk-YWLMFOB4.js";import{n as t}from"./chunk-DM4NXKEP.js";var a=class{constructor(l){this.selected=!1,this.hovered=!1,this.isFiltered=!1,this.newly=0,Object.assign(this,l),this.sideIcon=o[this.side],this.sideIconClass=h[this.side],this.actionText=i[this.action],this.actionIcon=r[this.actionText],this.isFiltered=this.actionText===i.FILTERED,this.mimeUrl=e(this.mime),this.timestamp&&(this.hTimeAgo=t(this.timestamp).fromNow(!0),this.timestamp=t(this.timestamp).format("YYYY-MM-DD HH:mm:ss"),this.newly=s(this.timestamp))}fallBackMimeUrl(){this.mimeUrl=m}};export{a};
1
+ import{b as h,c as o,d as i,e as r}from"./chunk-QIGUDEZF.js";import{h as e,m}from"./chunk-RTNEBRKJ.js";import{bb as s}from"./chunk-B6PDYCRO.js";import{n as t}from"./chunk-DM4NXKEP.js";var a=class{constructor(l){this.selected=!1,this.hovered=!1,this.isFiltered=!1,this.newly=0,Object.assign(this,l),this.sideIcon=o[this.side],this.sideIconClass=h[this.side],this.actionText=i[this.action],this.actionIcon=r[this.actionText],this.isFiltered=this.actionText===i.FILTERED,this.mimeUrl=e(this.mime),this.timestamp&&(this.hTimeAgo=t(this.timestamp).fromNow(!0),this.timestamp=t(this.timestamp).format("YYYY-MM-DD HH:mm:ss"),this.newly=s(this.timestamp))}fallBackMimeUrl(){this.mimeUrl=m}};export{a};