phx-react 1.3.1570 → 1.3.1571

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 (847) hide show
  1. package/dist/cjs/components/TextEditorV2/commenting/index.d.ts +41 -0
  2. package/dist/cjs/components/TextEditorV2/commenting/index.js +340 -0
  3. package/dist/cjs/components/TextEditorV2/commenting/index.js.map +1 -0
  4. package/dist/cjs/components/TextEditorV2/constants.d.ts +1 -0
  5. package/dist/cjs/components/TextEditorV2/constants.js +5 -0
  6. package/dist/cjs/components/TextEditorV2/constants.js.map +1 -0
  7. package/dist/cjs/components/TextEditorV2/context/SettingsContext.d.ts +12 -0
  8. package/dist/cjs/components/TextEditorV2/context/SettingsContext.js +59 -0
  9. package/dist/cjs/components/TextEditorV2/context/SettingsContext.js.map +1 -0
  10. package/dist/cjs/components/TextEditorV2/context/SharedAutocompleteContext.d.ts +10 -0
  11. package/dist/cjs/components/TextEditorV2/context/SharedAutocompleteContext.js +50 -0
  12. package/dist/cjs/components/TextEditorV2/context/SharedAutocompleteContext.js.map +1 -0
  13. package/dist/cjs/components/TextEditorV2/context/SharedHistoryContext.d.ts +11 -0
  14. package/dist/cjs/components/TextEditorV2/context/SharedHistoryContext.js +17 -0
  15. package/dist/cjs/components/TextEditorV2/context/SharedHistoryContext.js.map +1 -0
  16. package/dist/cjs/components/TextEditorV2/editor.d.ts +10 -0
  17. package/dist/cjs/components/TextEditorV2/editor.js +203 -0
  18. package/dist/cjs/components/TextEditorV2/editor.js.map +1 -0
  19. package/dist/cjs/components/TextEditorV2/hooks/useModal.d.ts +5 -0
  20. package/dist/cjs/components/TextEditorV2/hooks/useModal.js +32 -0
  21. package/dist/cjs/components/TextEditorV2/hooks/useModal.js.map +1 -0
  22. package/dist/cjs/components/TextEditorV2/hooks/useReport.d.ts +1 -0
  23. package/dist/cjs/components/TextEditorV2/hooks/useReport.js +45 -0
  24. package/dist/cjs/components/TextEditorV2/hooks/useReport.js.map +1 -0
  25. package/dist/cjs/components/TextEditorV2/lib/Settings.d.ts +2 -0
  26. package/dist/cjs/components/TextEditorV2/lib/Settings.js +52 -0
  27. package/dist/cjs/components/TextEditorV2/lib/Settings.js.map +1 -0
  28. package/dist/cjs/components/TextEditorV2/lib/appSettings.d.ts +19 -0
  29. package/dist/cjs/components/TextEditorV2/lib/appSettings.js +21 -0
  30. package/dist/cjs/components/TextEditorV2/lib/appSettings.js.map +1 -0
  31. package/dist/cjs/components/TextEditorV2/lib/collaboration.d.ts +3 -0
  32. package/dist/cjs/components/TextEditorV2/lib/collaboration.js +26 -0
  33. package/dist/cjs/components/TextEditorV2/lib/collaboration.js.map +1 -0
  34. package/dist/cjs/components/TextEditorV2/lib/setupEnv.d.ts +1 -0
  35. package/dist/cjs/components/TextEditorV2/lib/setupEnv.js +23 -0
  36. package/dist/cjs/components/TextEditorV2/lib/setupEnv.js.map +1 -0
  37. package/dist/cjs/components/TextEditorV2/nodes/AutocompleteNode.d.ts +25 -0
  38. package/dist/cjs/components/TextEditorV2/nodes/AutocompleteNode.js +58 -0
  39. package/dist/cjs/components/TextEditorV2/nodes/AutocompleteNode.js.map +1 -0
  40. package/dist/cjs/components/TextEditorV2/nodes/EmojiNode.d.ts +18 -0
  41. package/dist/cjs/components/TextEditorV2/nodes/EmojiNode.js +62 -0
  42. package/dist/cjs/components/TextEditorV2/nodes/EmojiNode.js.map +1 -0
  43. package/dist/cjs/components/TextEditorV2/nodes/EquationComponent.d.ts +9 -0
  44. package/dist/cjs/components/TextEditorV2/nodes/EquationComponent.js +72 -0
  45. package/dist/cjs/components/TextEditorV2/nodes/EquationComponent.js.map +1 -0
  46. package/dist/cjs/components/TextEditorV2/nodes/EquationNode.d.ts +26 -0
  47. package/dist/cjs/components/TextEditorV2/nodes/EquationNode.js +126 -0
  48. package/dist/cjs/components/TextEditorV2/nodes/EquationNode.js.map +1 -0
  49. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawComponent.d.ts +6 -0
  50. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawComponent.js +117 -0
  51. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawComponent.js.map +1 -0
  52. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawImage.d.ts +50 -0
  53. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawImage.js +59 -0
  54. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawImage.js.map +1 -0
  55. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawModal.d.ts +44 -0
  56. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawModal.js +143 -0
  57. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawModal.js.map +1 -0
  58. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/index.d.ts +22 -0
  59. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/index.js +103 -0
  60. package/dist/cjs/components/TextEditorV2/nodes/ExcalidrawNode/index.js.map +1 -0
  61. package/dist/cjs/components/TextEditorV2/nodes/ExtendedTextNode.d.ts +12 -0
  62. package/dist/cjs/components/TextEditorV2/nodes/ExtendedTextNode.js +106 -0
  63. package/dist/cjs/components/TextEditorV2/nodes/ExtendedTextNode.js.map +1 -0
  64. package/dist/cjs/components/TextEditorV2/nodes/FigmaNode.d.ts +19 -0
  65. package/dist/cjs/components/TextEditorV2/nodes/FigmaNode.js +63 -0
  66. package/dist/cjs/components/TextEditorV2/nodes/FigmaNode.js.map +1 -0
  67. package/dist/cjs/components/TextEditorV2/nodes/ImageComponent.d.ts +14 -0
  68. package/dist/cjs/components/TextEditorV2/nodes/ImageComponent.js +212 -0
  69. package/dist/cjs/components/TextEditorV2/nodes/ImageComponent.js.map +1 -0
  70. package/dist/cjs/components/TextEditorV2/nodes/ImageNode.d.ts +56 -0
  71. package/dist/cjs/components/TextEditorV2/nodes/ImageNode.js +136 -0
  72. package/dist/cjs/components/TextEditorV2/nodes/ImageNode.js.map +1 -0
  73. package/dist/cjs/components/TextEditorV2/nodes/InlineImageComponent.d.ts +18 -0
  74. package/dist/cjs/components/TextEditorV2/nodes/InlineImageComponent.js +194 -0
  75. package/dist/cjs/components/TextEditorV2/nodes/InlineImageComponent.js.map +1 -0
  76. package/dist/cjs/components/TextEditorV2/nodes/InlineImageNode.d.ts +54 -0
  77. package/dist/cjs/components/TextEditorV2/nodes/InlineImageNode.js +142 -0
  78. package/dist/cjs/components/TextEditorV2/nodes/InlineImageNode.js.map +1 -0
  79. package/dist/cjs/components/TextEditorV2/nodes/KeywordNode.d.ts +15 -0
  80. package/dist/cjs/components/TextEditorV2/nodes/KeywordNode.js +54 -0
  81. package/dist/cjs/components/TextEditorV2/nodes/KeywordNode.js.map +1 -0
  82. package/dist/cjs/components/TextEditorV2/nodes/LayoutContainerNode.d.ts +21 -0
  83. package/dist/cjs/components/TextEditorV2/nodes/LayoutContainerNode.js +63 -0
  84. package/dist/cjs/components/TextEditorV2/nodes/LayoutContainerNode.js.map +1 -0
  85. package/dist/cjs/components/TextEditorV2/nodes/LayoutItemNode.d.ts +15 -0
  86. package/dist/cjs/components/TextEditorV2/nodes/LayoutItemNode.js +51 -0
  87. package/dist/cjs/components/TextEditorV2/nodes/LayoutItemNode.js.map +1 -0
  88. package/dist/cjs/components/TextEditorV2/nodes/MentionNode.d.ts +20 -0
  89. package/dist/cjs/components/TextEditorV2/nodes/MentionNode.js +89 -0
  90. package/dist/cjs/components/TextEditorV2/nodes/MentionNode.js.map +1 -0
  91. package/dist/cjs/components/TextEditorV2/nodes/PageBreakNode/index.d.ts +17 -0
  92. package/dist/cjs/components/TextEditorV2/nodes/PageBreakNode/index.js +113 -0
  93. package/dist/cjs/components/TextEditorV2/nodes/PageBreakNode/index.js.map +1 -0
  94. package/dist/cjs/components/TextEditorV2/nodes/PlaygroundNodes.d.ts +3 -0
  95. package/dist/cjs/components/TextEditorV2/nodes/PlaygroundNodes.js +68 -0
  96. package/dist/cjs/components/TextEditorV2/nodes/PlaygroundNodes.js.map +1 -0
  97. package/dist/cjs/components/TextEditorV2/nodes/PollComponent.d.ts +8 -0
  98. package/dist/cjs/components/TextEditorV2/nodes/PollComponent.js +113 -0
  99. package/dist/cjs/components/TextEditorV2/nodes/PollComponent.js.map +1 -0
  100. package/dist/cjs/components/TextEditorV2/nodes/PollNode.d.ts +33 -0
  101. package/dist/cjs/components/TextEditorV2/nodes/PollNode.js +149 -0
  102. package/dist/cjs/components/TextEditorV2/nodes/PollNode.js.map +1 -0
  103. package/dist/cjs/components/TextEditorV2/nodes/StickyComponent.d.ts +9 -0
  104. package/dist/cjs/components/TextEditorV2/nodes/StickyComponent.js +167 -0
  105. package/dist/cjs/components/TextEditorV2/nodes/StickyComponent.js.map +1 -0
  106. package/dist/cjs/components/TextEditorV2/nodes/StickyNode.d.ts +37 -0
  107. package/dist/cjs/components/TextEditorV2/nodes/StickyNode.js +94 -0
  108. package/dist/cjs/components/TextEditorV2/nodes/StickyNode.js.map +1 -0
  109. package/dist/cjs/components/TextEditorV2/nodes/TableNode.d.ts +54 -0
  110. package/dist/cjs/components/TextEditorV2/nodes/TableNode.js +198 -0
  111. package/dist/cjs/components/TextEditorV2/nodes/TableNode.js.map +1 -0
  112. package/dist/cjs/components/TextEditorV2/nodes/TweetNode.d.ts +28 -0
  113. package/dist/cjs/components/TextEditorV2/nodes/TweetNode.js +156 -0
  114. package/dist/cjs/components/TextEditorV2/nodes/TweetNode.js.map +1 -0
  115. package/dist/cjs/components/TextEditorV2/nodes/YouTubeNode.d.ts +28 -0
  116. package/dist/cjs/components/TextEditorV2/nodes/YouTubeNode.js +103 -0
  117. package/dist/cjs/components/TextEditorV2/nodes/YouTubeNode.js.map +1 -0
  118. package/dist/cjs/components/TextEditorV2/plugins/ActionsPlugin/index.d.ts +2 -0
  119. package/dist/cjs/components/TextEditorV2/plugins/ActionsPlugin/index.js +183 -0
  120. package/dist/cjs/components/TextEditorV2/plugins/ActionsPlugin/index.js.map +1 -0
  121. package/dist/cjs/components/TextEditorV2/plugins/AutoEmbedPlugin/index.d.ts +19 -0
  122. package/dist/cjs/components/TextEditorV2/plugins/AutoEmbedPlugin/index.js +179 -0
  123. package/dist/cjs/components/TextEditorV2/plugins/AutoEmbedPlugin/index.js.map +1 -0
  124. package/dist/cjs/components/TextEditorV2/plugins/AutoLinkPlugin/index.d.ts +2 -0
  125. package/dist/cjs/components/TextEditorV2/plugins/AutoLinkPlugin/index.js +16 -0
  126. package/dist/cjs/components/TextEditorV2/plugins/AutoLinkPlugin/index.js.map +1 -0
  127. package/dist/cjs/components/TextEditorV2/plugins/AutocompletePlugin/index.d.ts +2 -0
  128. package/dist/cjs/components/TextEditorV2/plugins/AutocompletePlugin/index.js +2465 -0
  129. package/dist/cjs/components/TextEditorV2/plugins/AutocompletePlugin/index.js.map +1 -0
  130. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/CopyButton/index.d.ts +8 -0
  131. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/CopyButton/index.js +55 -0
  132. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/CopyButton/index.js.map +1 -0
  133. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/PrettierButton/index.d.ts +10 -0
  134. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/PrettierButton/index.js +159 -0
  135. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/PrettierButton/index.js.map +1 -0
  136. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/index.d.ts +4 -0
  137. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/index.js +111 -0
  138. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/index.js.map +1 -0
  139. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/utils.d.ts +1 -0
  140. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/utils.js +21 -0
  141. package/dist/cjs/components/TextEditorV2/plugins/CodeActionMenuPlugin/utils.js.map +1 -0
  142. package/dist/cjs/components/TextEditorV2/plugins/CodeHighlightPlugin/index.d.ts +1 -0
  143. package/dist/cjs/components/TextEditorV2/plugins/CodeHighlightPlugin/index.js +12 -0
  144. package/dist/cjs/components/TextEditorV2/plugins/CodeHighlightPlugin/index.js.map +1 -0
  145. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContainerNode.d.ts +23 -0
  146. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContainerNode.js +88 -0
  147. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContainerNode.js.map +1 -0
  148. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContentNode.d.ts +17 -0
  149. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContentNode.js +70 -0
  150. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContentNode.js.map +1 -0
  151. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleTitleNode.d.ts +18 -0
  152. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleTitleNode.js +95 -0
  153. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleTitleNode.js.map +1 -0
  154. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/index.d.ts +3 -0
  155. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/index.js +148 -0
  156. package/dist/cjs/components/TextEditorV2/plugins/CollapsiblePlugin/index.js.map +1 -0
  157. package/dist/cjs/components/TextEditorV2/plugins/ComponentPickerPlugin/index.d.ts +2 -0
  158. package/dist/cjs/components/TextEditorV2/plugins/ComponentPickerPlugin/index.js +264 -0
  159. package/dist/cjs/components/TextEditorV2/plugins/ComponentPickerPlugin/index.js.map +1 -0
  160. package/dist/cjs/components/TextEditorV2/plugins/ContextMenuPlugin/index.d.ts +11 -0
  161. package/dist/cjs/components/TextEditorV2/plugins/ContextMenuPlugin/index.js +171 -0
  162. package/dist/cjs/components/TextEditorV2/plugins/ContextMenuPlugin/index.js.map +1 -0
  163. package/dist/cjs/components/TextEditorV2/plugins/DocsPlugin/index.d.ts +2 -0
  164. package/dist/cjs/components/TextEditorV2/plugins/DocsPlugin/index.js +10 -0
  165. package/dist/cjs/components/TextEditorV2/plugins/DocsPlugin/index.js.map +1 -0
  166. package/dist/cjs/components/TextEditorV2/plugins/DragDropPastePlugin/index.d.ts +1 -0
  167. package/dist/cjs/components/TextEditorV2/plugins/DragDropPastePlugin/index.js +44 -0
  168. package/dist/cjs/components/TextEditorV2/plugins/DragDropPastePlugin/index.js.map +1 -0
  169. package/dist/cjs/components/TextEditorV2/plugins/DraggableBlockPlugin/index.d.ts +4 -0
  170. package/dist/cjs/components/TextEditorV2/plugins/DraggableBlockPlugin/index.js +288 -0
  171. package/dist/cjs/components/TextEditorV2/plugins/DraggableBlockPlugin/index.js.map +1 -0
  172. package/dist/cjs/components/TextEditorV2/plugins/EmojiPickerPlugin/index.d.ts +2 -0
  173. package/dist/cjs/components/TextEditorV2/plugins/EmojiPickerPlugin/index.js +97 -0
  174. package/dist/cjs/components/TextEditorV2/plugins/EmojiPickerPlugin/index.js.map +1 -0
  175. package/dist/cjs/components/TextEditorV2/plugins/EmojisPlugin/index.d.ts +1 -0
  176. package/dist/cjs/components/TextEditorV2/plugins/EmojisPlugin/index.js +64 -0
  177. package/dist/cjs/components/TextEditorV2/plugins/EmojisPlugin/index.js.map +1 -0
  178. package/dist/cjs/components/TextEditorV2/plugins/EquationsPlugin/index.d.ts +14 -0
  179. package/dist/cjs/components/TextEditorV2/plugins/EquationsPlugin/index.js +42 -0
  180. package/dist/cjs/components/TextEditorV2/plugins/EquationsPlugin/index.js.map +1 -0
  181. package/dist/cjs/components/TextEditorV2/plugins/ExcalidrawPlugin/index.d.ts +3 -0
  182. package/dist/cjs/components/TextEditorV2/plugins/ExcalidrawPlugin/index.js +28 -0
  183. package/dist/cjs/components/TextEditorV2/plugins/ExcalidrawPlugin/index.js.map +1 -0
  184. package/dist/cjs/components/TextEditorV2/plugins/FigmaPlugin/index.d.ts +3 -0
  185. package/dist/cjs/components/TextEditorV2/plugins/FigmaPlugin/index.js +25 -0
  186. package/dist/cjs/components/TextEditorV2/plugins/FigmaPlugin/index.js.map +1 -0
  187. package/dist/cjs/components/TextEditorV2/plugins/FloatingLinkEditorPlugin/index.d.ts +7 -0
  188. package/dist/cjs/components/TextEditorV2/plugins/FloatingLinkEditorPlugin/index.js +200 -0
  189. package/dist/cjs/components/TextEditorV2/plugins/FloatingLinkEditorPlugin/index.js.map +1 -0
  190. package/dist/cjs/components/TextEditorV2/plugins/FloatingTextFormatToolbarPlugin/index.d.ts +4 -0
  191. package/dist/cjs/components/TextEditorV2/plugins/FloatingTextFormatToolbarPlugin/index.js +229 -0
  192. package/dist/cjs/components/TextEditorV2/plugins/FloatingTextFormatToolbarPlugin/index.js.map +1 -0
  193. package/dist/cjs/components/TextEditorV2/plugins/ImagesPlugin/index.d.ts +22 -0
  194. package/dist/cjs/components/TextEditorV2/plugins/ImagesPlugin/index.js +188 -0
  195. package/dist/cjs/components/TextEditorV2/plugins/ImagesPlugin/index.js.map +1 -0
  196. package/dist/cjs/components/TextEditorV2/plugins/InlineImagePlugin/index.d.ts +17 -0
  197. package/dist/cjs/components/TextEditorV2/plugins/InlineImagePlugin/index.js +193 -0
  198. package/dist/cjs/components/TextEditorV2/plugins/InlineImagePlugin/index.js.map +1 -0
  199. package/dist/cjs/components/TextEditorV2/plugins/KeywordsPlugin/index.d.ts +1 -0
  200. package/dist/cjs/components/TextEditorV2/plugins/KeywordsPlugin/index.js +33 -0
  201. package/dist/cjs/components/TextEditorV2/plugins/KeywordsPlugin/index.js.map +1 -0
  202. package/dist/cjs/components/TextEditorV2/plugins/LayoutPlugin/InsertLayoutDialog.d.ts +6 -0
  203. package/dist/cjs/components/TextEditorV2/plugins/LayoutPlugin/InsertLayoutDialog.js +34 -0
  204. package/dist/cjs/components/TextEditorV2/plugins/LayoutPlugin/InsertLayoutDialog.js.map +1 -0
  205. package/dist/cjs/components/TextEditorV2/plugins/LayoutPlugin/LayoutPlugin.d.ts +7 -0
  206. package/dist/cjs/components/TextEditorV2/plugins/LayoutPlugin/LayoutPlugin.js +89 -0
  207. package/dist/cjs/components/TextEditorV2/plugins/LayoutPlugin/LayoutPlugin.js.map +1 -0
  208. package/dist/cjs/components/TextEditorV2/plugins/LinkPlugin/index.d.ts +2 -0
  209. package/dist/cjs/components/TextEditorV2/plugins/LinkPlugin/index.js +11 -0
  210. package/dist/cjs/components/TextEditorV2/plugins/LinkPlugin/index.js.map +1 -0
  211. package/dist/cjs/components/TextEditorV2/plugins/ListMaxIndentLevelPlugin/index.d.ts +5 -0
  212. package/dist/cjs/components/TextEditorV2/plugins/ListMaxIndentLevelPlugin/index.js +44 -0
  213. package/dist/cjs/components/TextEditorV2/plugins/ListMaxIndentLevelPlugin/index.js.map +1 -0
  214. package/dist/cjs/components/TextEditorV2/plugins/MarkdownShortcutPlugin/index.d.ts +2 -0
  215. package/dist/cjs/components/TextEditorV2/plugins/MarkdownShortcutPlugin/index.js +11 -0
  216. package/dist/cjs/components/TextEditorV2/plugins/MarkdownShortcutPlugin/index.js.map +1 -0
  217. package/dist/cjs/components/TextEditorV2/plugins/MarkdownTransformers/index.d.ts +8 -0
  218. package/dist/cjs/components/TextEditorV2/plugins/MarkdownTransformers/index.js +242 -0
  219. package/dist/cjs/components/TextEditorV2/plugins/MarkdownTransformers/index.js.map +1 -0
  220. package/dist/cjs/components/TextEditorV2/plugins/MaxLengthPlugin/index.d.ts +3 -0
  221. package/dist/cjs/components/TextEditorV2/plugins/MaxLengthPlugin/index.js +41 -0
  222. package/dist/cjs/components/TextEditorV2/plugins/MaxLengthPlugin/index.js.map +1 -0
  223. package/dist/cjs/components/TextEditorV2/plugins/MentionsPlugin/index.d.ts +2 -0
  224. package/dist/cjs/components/TextEditorV2/plugins/MentionsPlugin/index.js +560 -0
  225. package/dist/cjs/components/TextEditorV2/plugins/MentionsPlugin/index.js.map +1 -0
  226. package/dist/cjs/components/TextEditorV2/plugins/PageBreakPlugin/index.d.ts +3 -0
  227. package/dist/cjs/components/TextEditorV2/plugins/PageBreakPlugin/index.js +31 -0
  228. package/dist/cjs/components/TextEditorV2/plugins/PageBreakPlugin/index.js.map +1 -0
  229. package/dist/cjs/components/TextEditorV2/plugins/PasteLogPlugin/index.d.ts +2 -0
  230. package/dist/cjs/components/TextEditorV2/plugins/PasteLogPlugin/index.js +37 -0
  231. package/dist/cjs/components/TextEditorV2/plugins/PasteLogPlugin/index.js.map +1 -0
  232. package/dist/cjs/components/TextEditorV2/plugins/PollPlugin/index.d.ts +8 -0
  233. package/dist/cjs/components/TextEditorV2/plugins/PollPlugin/index.js +46 -0
  234. package/dist/cjs/components/TextEditorV2/plugins/PollPlugin/index.js.map +1 -0
  235. package/dist/cjs/components/TextEditorV2/plugins/StickyPlugin/index.d.ts +1 -0
  236. package/dist/cjs/components/TextEditorV2/plugins/StickyPlugin/index.js +16 -0
  237. package/dist/cjs/components/TextEditorV2/plugins/StickyPlugin/index.js.map +1 -0
  238. package/dist/cjs/components/TextEditorV2/plugins/TabFocusPlugin/index.d.ts +1 -0
  239. package/dist/cjs/components/TextEditorV2/plugins/TabFocusPlugin/index.js +38 -0
  240. package/dist/cjs/components/TextEditorV2/plugins/TabFocusPlugin/index.js.map +1 -0
  241. package/dist/cjs/components/TextEditorV2/plugins/TableActionMenuPlugin/index.d.ts +5 -0
  242. package/dist/cjs/components/TextEditorV2/plugins/TableActionMenuPlugin/index.js +487 -0
  243. package/dist/cjs/components/TextEditorV2/plugins/TableActionMenuPlugin/index.js.map +1 -0
  244. package/dist/cjs/components/TextEditorV2/plugins/TableCellResizer/index.d.ts +2 -0
  245. package/dist/cjs/components/TextEditorV2/plugins/TableCellResizer/index.js +253 -0
  246. package/dist/cjs/components/TextEditorV2/plugins/TableCellResizer/index.js.map +1 -0
  247. package/dist/cjs/components/TextEditorV2/plugins/TableOfContentsPlugin/index.d.ts +2 -0
  248. package/dist/cjs/components/TextEditorV2/plugins/TableOfContentsPlugin/index.js +117 -0
  249. package/dist/cjs/components/TextEditorV2/plugins/TableOfContentsPlugin/index.js.map +1 -0
  250. package/dist/cjs/components/TextEditorV2/plugins/TablePlugin.d.ts +32 -0
  251. package/dist/cjs/components/TextEditorV2/plugins/TablePlugin.js +85 -0
  252. package/dist/cjs/components/TextEditorV2/plugins/TablePlugin.js.map +1 -0
  253. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/bold-text.d.ts +6 -0
  254. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/bold-text.js +18 -0
  255. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/bold-text.js.map +1 -0
  256. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/bullet.d.ts +6 -0
  257. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/bullet.js +28 -0
  258. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/bullet.js.map +1 -0
  259. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/font-size.d.ts +6 -0
  260. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/font-size.js +65 -0
  261. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/font-size.js.map +1 -0
  262. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/heading.d.ts +6 -0
  263. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/heading.js +71 -0
  264. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/heading.js.map +1 -0
  265. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/italic-text.d.ts +6 -0
  266. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/italic-text.js +18 -0
  267. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/italic-text.js.map +1 -0
  268. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/link.d.ts +5 -0
  269. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/link.js +46 -0
  270. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/link.js.map +1 -0
  271. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/number-bullet.d.ts +6 -0
  272. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/number-bullet.js +28 -0
  273. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/number-bullet.js.map +1 -0
  274. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/text-align.d.ts +6 -0
  275. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/text-align.js +52 -0
  276. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/text-align.js.map +1 -0
  277. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/text-color.d.ts +6 -0
  278. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/text-color.js +28 -0
  279. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/text-color.js.map +1 -0
  280. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/underline-text.d.ts +6 -0
  281. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/underline-text.js +19 -0
  282. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/underline-text.js.map +1 -0
  283. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-image.d.ts +6 -0
  284. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-image.js +41 -0
  285. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-image.js.map +1 -0
  286. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-pdf.d.ts +11 -0
  287. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-pdf.js +162 -0
  288. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-pdf.js.map +1 -0
  289. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/index.d.ts +4 -0
  290. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/index.js +163 -0
  291. package/dist/cjs/components/TextEditorV2/plugins/ToolbarPlugin/index.js.map +1 -0
  292. package/dist/cjs/components/TextEditorV2/plugins/TreeViewPlugin/index.d.ts +2 -0
  293. package/dist/cjs/components/TextEditorV2/plugins/TreeViewPlugin/index.js +12 -0
  294. package/dist/cjs/components/TextEditorV2/plugins/TreeViewPlugin/index.js.map +1 -0
  295. package/dist/cjs/components/TextEditorV2/plugins/TwitterPlugin/index.d.ts +3 -0
  296. package/dist/cjs/components/TextEditorV2/plugins/TwitterPlugin/index.js +25 -0
  297. package/dist/cjs/components/TextEditorV2/plugins/TwitterPlugin/index.js.map +1 -0
  298. package/dist/cjs/components/TextEditorV2/plugins/YouTubePlugin/index.d.ts +3 -0
  299. package/dist/cjs/components/TextEditorV2/plugins/YouTubePlugin/index.js +25 -0
  300. package/dist/cjs/components/TextEditorV2/plugins/YouTubePlugin/index.js.map +1 -0
  301. package/dist/cjs/components/TextEditorV2/shared/canUseDOM.d.ts +1 -0
  302. package/dist/cjs/components/TextEditorV2/shared/canUseDOM.js +7 -0
  303. package/dist/cjs/components/TextEditorV2/shared/canUseDOM.js.map +1 -0
  304. package/dist/cjs/components/TextEditorV2/shared/caretFromPoint.d.ts +4 -0
  305. package/dist/cjs/components/TextEditorV2/shared/caretFromPoint.js +32 -0
  306. package/dist/cjs/components/TextEditorV2/shared/caretFromPoint.js.map +1 -0
  307. package/dist/cjs/components/TextEditorV2/shared/environment.d.ts +16 -0
  308. package/dist/cjs/components/TextEditorV2/shared/environment.js +17 -0
  309. package/dist/cjs/components/TextEditorV2/shared/environment.js.map +1 -0
  310. package/dist/cjs/components/TextEditorV2/shared/invariant.d.ts +1 -0
  311. package/dist/cjs/components/TextEditorV2/shared/invariant.js +15 -0
  312. package/dist/cjs/components/TextEditorV2/shared/invariant.js.map +1 -0
  313. package/dist/cjs/components/TextEditorV2/shared/simpleDiffWithCursor.d.ts +5 -0
  314. package/dist/cjs/components/TextEditorV2/shared/simpleDiffWithCursor.js +28 -0
  315. package/dist/cjs/components/TextEditorV2/shared/simpleDiffWithCursor.js.map +1 -0
  316. package/dist/cjs/components/TextEditorV2/shared/useLayoutEffect.d.ts +3 -0
  317. package/dist/cjs/components/TextEditorV2/shared/useLayoutEffect.js +7 -0
  318. package/dist/cjs/components/TextEditorV2/shared/useLayoutEffect.js.map +1 -0
  319. package/dist/cjs/components/TextEditorV2/shared/warnOnlyOnce.d.ts +1 -0
  320. package/dist/cjs/components/TextEditorV2/shared/warnOnlyOnce.js +16 -0
  321. package/dist/cjs/components/TextEditorV2/shared/warnOnlyOnce.js.map +1 -0
  322. package/dist/cjs/components/TextEditorV2/style.d.ts +2 -0
  323. package/dist/cjs/components/TextEditorV2/style.js +9 -0
  324. package/dist/cjs/components/TextEditorV2/style.js.map +1 -0
  325. package/dist/cjs/components/TextEditorV2/themes/CommentEditorTheme.d.ts +3 -0
  326. package/dist/cjs/components/TextEditorV2/themes/CommentEditorTheme.js +7 -0
  327. package/dist/cjs/components/TextEditorV2/themes/CommentEditorTheme.js.map +1 -0
  328. package/dist/cjs/components/TextEditorV2/themes/PlaygroundEditorTheme.d.ts +3 -0
  329. package/dist/cjs/components/TextEditorV2/themes/PlaygroundEditorTheme.js +107 -0
  330. package/dist/cjs/components/TextEditorV2/themes/PlaygroundEditorTheme.js.map +1 -0
  331. package/dist/cjs/components/TextEditorV2/themes/StickyEditorTheme.d.ts +3 -0
  332. package/dist/cjs/components/TextEditorV2/themes/StickyEditorTheme.js +7 -0
  333. package/dist/cjs/components/TextEditorV2/themes/StickyEditorTheme.js.map +1 -0
  334. package/dist/cjs/components/TextEditorV2/ui/Button.d.ts +11 -0
  335. package/dist/cjs/components/TextEditorV2/ui/Button.js +11 -0
  336. package/dist/cjs/components/TextEditorV2/ui/Button.js.map +1 -0
  337. package/dist/cjs/components/TextEditorV2/ui/ColorPicker.d.ts +12 -0
  338. package/dist/cjs/components/TextEditorV2/ui/ColorPicker.js +216 -0
  339. package/dist/cjs/components/TextEditorV2/ui/ColorPicker.js.map +1 -0
  340. package/dist/cjs/components/TextEditorV2/ui/ContentEditable.d.ts +4 -0
  341. package/dist/cjs/components/TextEditorV2/ui/ContentEditable.js +11 -0
  342. package/dist/cjs/components/TextEditorV2/ui/ContentEditable.js.map +1 -0
  343. package/dist/cjs/components/TextEditorV2/ui/Dialog.d.ts +9 -0
  344. package/dist/cjs/components/TextEditorV2/ui/Dialog.js +15 -0
  345. package/dist/cjs/components/TextEditorV2/ui/Dialog.js.map +1 -0
  346. package/dist/cjs/components/TextEditorV2/ui/DropDown.d.ts +17 -0
  347. package/dist/cjs/components/TextEditorV2/ui/DropDown.js +133 -0
  348. package/dist/cjs/components/TextEditorV2/ui/DropDown.js.map +1 -0
  349. package/dist/cjs/components/TextEditorV2/ui/DropdownColorPicker.d.ts +21 -0
  350. package/dist/cjs/components/TextEditorV2/ui/DropdownColorPicker.js +20 -0
  351. package/dist/cjs/components/TextEditorV2/ui/DropdownColorPicker.js.map +1 -0
  352. package/dist/cjs/components/TextEditorV2/ui/EquationEditor.d.ts +8 -0
  353. package/dist/cjs/components/TextEditorV2/ui/EquationEditor.js +20 -0
  354. package/dist/cjs/components/TextEditorV2/ui/EquationEditor.js.map +1 -0
  355. package/dist/cjs/components/TextEditorV2/ui/FileInput.d.ts +9 -0
  356. package/dist/cjs/components/TextEditorV2/ui/FileInput.js +12 -0
  357. package/dist/cjs/components/TextEditorV2/ui/FileInput.js.map +1 -0
  358. package/dist/cjs/components/TextEditorV2/ui/ImageResizer.d.ts +11 -0
  359. package/dist/cjs/components/TextEditorV2/ui/ImageResizer.js +178 -0
  360. package/dist/cjs/components/TextEditorV2/ui/ImageResizer.js.map +1 -0
  361. package/dist/cjs/components/TextEditorV2/ui/KatexEquationAlterer.d.ts +7 -0
  362. package/dist/cjs/components/TextEditorV2/ui/KatexEquationAlterer.js +39 -0
  363. package/dist/cjs/components/TextEditorV2/ui/KatexEquationAlterer.js.map +1 -0
  364. package/dist/cjs/components/TextEditorV2/ui/KatexRenderer.d.ts +6 -0
  365. package/dist/cjs/components/TextEditorV2/ui/KatexRenderer.js +33 -0
  366. package/dist/cjs/components/TextEditorV2/ui/KatexRenderer.js.map +1 -0
  367. package/dist/cjs/components/TextEditorV2/ui/Modal.d.ts +8 -0
  368. package/dist/cjs/components/TextEditorV2/ui/Modal.js +54 -0
  369. package/dist/cjs/components/TextEditorV2/ui/Modal.js.map +1 -0
  370. package/dist/cjs/components/TextEditorV2/ui/Placeholder.d.ts +6 -0
  371. package/dist/cjs/components/TextEditorV2/ui/Placeholder.js +10 -0
  372. package/dist/cjs/components/TextEditorV2/ui/Placeholder.js.map +1 -0
  373. package/dist/cjs/components/TextEditorV2/ui/Select.d.ts +7 -0
  374. package/dist/cjs/components/TextEditorV2/ui/Select.js +12 -0
  375. package/dist/cjs/components/TextEditorV2/ui/Select.js.map +1 -0
  376. package/dist/cjs/components/TextEditorV2/ui/Switch.d.ts +7 -0
  377. package/dist/cjs/components/TextEditorV2/ui/Switch.js +15 -0
  378. package/dist/cjs/components/TextEditorV2/ui/Switch.js.map +1 -0
  379. package/dist/cjs/components/TextEditorV2/ui/TextInput.d.ts +12 -0
  380. package/dist/cjs/components/TextEditorV2/ui/TextInput.js +14 -0
  381. package/dist/cjs/components/TextEditorV2/ui/TextInput.js.map +1 -0
  382. package/dist/cjs/components/TextEditorV2/utils/emoji-list.d.ts +20 -0
  383. package/dist/cjs/components/TextEditorV2/utils/emoji-list.js +16607 -0
  384. package/dist/cjs/components/TextEditorV2/utils/emoji-list.js.map +1 -0
  385. package/dist/cjs/components/TextEditorV2/utils/getDOMRangeRect.d.ts +1 -0
  386. package/dist/cjs/components/TextEditorV2/utils/getDOMRangeRect.js +19 -0
  387. package/dist/cjs/components/TextEditorV2/utils/getDOMRangeRect.js.map +1 -0
  388. package/dist/cjs/components/TextEditorV2/utils/getPrepopulatedRichText.d.ts +1 -0
  389. package/dist/cjs/components/TextEditorV2/utils/getPrepopulatedRichText.js +35 -0
  390. package/dist/cjs/components/TextEditorV2/utils/getPrepopulatedRichText.js.map +1 -0
  391. package/dist/cjs/components/TextEditorV2/utils/getSelectedNode.d.ts +2 -0
  392. package/dist/cjs/components/TextEditorV2/utils/getSelectedNode.js +21 -0
  393. package/dist/cjs/components/TextEditorV2/utils/getSelectedNode.js.map +1 -0
  394. package/dist/cjs/components/TextEditorV2/utils/guard.d.ts +1 -0
  395. package/dist/cjs/components/TextEditorV2/utils/guard.js +7 -0
  396. package/dist/cjs/components/TextEditorV2/utils/guard.js.map +1 -0
  397. package/dist/cjs/components/TextEditorV2/utils/isMobileWidth.d.ts +0 -0
  398. package/dist/cjs/components/TextEditorV2/utils/isMobileWidth.js +2 -0
  399. package/dist/cjs/components/TextEditorV2/utils/isMobileWidth.js.map +1 -0
  400. package/dist/cjs/components/TextEditorV2/utils/joinClasses.d.ts +1 -0
  401. package/dist/cjs/components/TextEditorV2/utils/joinClasses.js +11 -0
  402. package/dist/cjs/components/TextEditorV2/utils/joinClasses.js.map +1 -0
  403. package/dist/cjs/components/TextEditorV2/utils/point.d.ts +14 -0
  404. package/dist/cjs/components/TextEditorV2/utils/point.js +51 -0
  405. package/dist/cjs/components/TextEditorV2/utils/point.js.map +1 -0
  406. package/dist/cjs/components/TextEditorV2/utils/rect.d.ts +38 -0
  407. package/dist/cjs/components/TextEditorV2/utils/rect.js +125 -0
  408. package/dist/cjs/components/TextEditorV2/utils/rect.js.map +1 -0
  409. package/dist/cjs/components/TextEditorV2/utils/setFloatingElemPosition.d.ts +1 -0
  410. package/dist/cjs/components/TextEditorV2/utils/setFloatingElemPosition.js +33 -0
  411. package/dist/cjs/components/TextEditorV2/utils/setFloatingElemPosition.js.map +1 -0
  412. package/dist/cjs/components/TextEditorV2/utils/setFloatingElemPositionForLinkEditor.d.ts +1 -0
  413. package/dist/cjs/components/TextEditorV2/utils/setFloatingElemPositionForLinkEditor.js +31 -0
  414. package/dist/cjs/components/TextEditorV2/utils/setFloatingElemPositionForLinkEditor.js.map +1 -0
  415. package/dist/cjs/components/TextEditorV2/utils/swipe.d.ts +4 -0
  416. package/dist/cjs/components/TextEditorV2/utils/swipe.js +97 -0
  417. package/dist/cjs/components/TextEditorV2/utils/swipe.js.map +1 -0
  418. package/dist/cjs/components/TextEditorV2/utils/url.d.ts +2 -0
  419. package/dist/cjs/components/TextEditorV2/utils/url.js +26 -0
  420. package/dist/cjs/components/TextEditorV2/utils/url.js.map +1 -0
  421. package/dist/cjs/index.d.ts +2 -1
  422. package/dist/cjs/index.js +5 -3
  423. package/dist/cjs/index.js.map +1 -1
  424. package/dist/esm/components/TextEditorV2/commenting/index.d.ts +41 -0
  425. package/dist/esm/components/TextEditorV2/commenting/index.js +334 -0
  426. package/dist/esm/components/TextEditorV2/commenting/index.js.map +1 -0
  427. package/dist/esm/components/TextEditorV2/constants.d.ts +1 -0
  428. package/dist/esm/components/TextEditorV2/constants.js +2 -0
  429. package/dist/esm/components/TextEditorV2/constants.js.map +1 -0
  430. package/dist/esm/components/TextEditorV2/context/SettingsContext.d.ts +12 -0
  431. package/dist/esm/components/TextEditorV2/context/SettingsContext.js +54 -0
  432. package/dist/esm/components/TextEditorV2/context/SettingsContext.js.map +1 -0
  433. package/dist/esm/components/TextEditorV2/context/SharedAutocompleteContext.d.ts +10 -0
  434. package/dist/esm/components/TextEditorV2/context/SharedAutocompleteContext.js +44 -0
  435. package/dist/esm/components/TextEditorV2/context/SharedAutocompleteContext.js.map +1 -0
  436. package/dist/esm/components/TextEditorV2/context/SharedHistoryContext.d.ts +11 -0
  437. package/dist/esm/components/TextEditorV2/context/SharedHistoryContext.js +11 -0
  438. package/dist/esm/components/TextEditorV2/context/SharedHistoryContext.js.map +1 -0
  439. package/dist/esm/components/TextEditorV2/editor.d.ts +10 -0
  440. package/dist/esm/components/TextEditorV2/editor.js +200 -0
  441. package/dist/esm/components/TextEditorV2/editor.js.map +1 -0
  442. package/dist/esm/components/TextEditorV2/hooks/useModal.d.ts +5 -0
  443. package/dist/esm/components/TextEditorV2/hooks/useModal.js +28 -0
  444. package/dist/esm/components/TextEditorV2/hooks/useModal.js.map +1 -0
  445. package/dist/esm/components/TextEditorV2/hooks/useReport.d.ts +1 -0
  446. package/dist/esm/components/TextEditorV2/hooks/useReport.js +42 -0
  447. package/dist/esm/components/TextEditorV2/hooks/useReport.js.map +1 -0
  448. package/dist/esm/components/TextEditorV2/lib/Settings.d.ts +2 -0
  449. package/dist/esm/components/TextEditorV2/lib/Settings.js +48 -0
  450. package/dist/esm/components/TextEditorV2/lib/Settings.js.map +1 -0
  451. package/dist/esm/components/TextEditorV2/lib/appSettings.d.ts +19 -0
  452. package/dist/esm/components/TextEditorV2/lib/appSettings.js +18 -0
  453. package/dist/esm/components/TextEditorV2/lib/appSettings.js.map +1 -0
  454. package/dist/esm/components/TextEditorV2/lib/collaboration.d.ts +3 -0
  455. package/dist/esm/components/TextEditorV2/lib/collaboration.js +23 -0
  456. package/dist/esm/components/TextEditorV2/lib/collaboration.js.map +1 -0
  457. package/dist/esm/components/TextEditorV2/lib/setupEnv.d.ts +1 -0
  458. package/dist/esm/components/TextEditorV2/lib/setupEnv.js +21 -0
  459. package/dist/esm/components/TextEditorV2/lib/setupEnv.js.map +1 -0
  460. package/dist/esm/components/TextEditorV2/nodes/AutocompleteNode.d.ts +25 -0
  461. package/dist/esm/components/TextEditorV2/nodes/AutocompleteNode.js +54 -0
  462. package/dist/esm/components/TextEditorV2/nodes/AutocompleteNode.js.map +1 -0
  463. package/dist/esm/components/TextEditorV2/nodes/EmojiNode.d.ts +18 -0
  464. package/dist/esm/components/TextEditorV2/nodes/EmojiNode.js +57 -0
  465. package/dist/esm/components/TextEditorV2/nodes/EmojiNode.js.map +1 -0
  466. package/dist/esm/components/TextEditorV2/nodes/EquationComponent.d.ts +9 -0
  467. package/dist/esm/components/TextEditorV2/nodes/EquationComponent.js +68 -0
  468. package/dist/esm/components/TextEditorV2/nodes/EquationComponent.js.map +1 -0
  469. package/dist/esm/components/TextEditorV2/nodes/EquationNode.d.ts +26 -0
  470. package/dist/esm/components/TextEditorV2/nodes/EquationNode.js +121 -0
  471. package/dist/esm/components/TextEditorV2/nodes/EquationNode.js.map +1 -0
  472. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawComponent.d.ts +6 -0
  473. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawComponent.js +113 -0
  474. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawComponent.js.map +1 -0
  475. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawImage.d.ts +50 -0
  476. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawImage.js +56 -0
  477. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawImage.js.map +1 -0
  478. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawModal.d.ts +44 -0
  479. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawModal.js +137 -0
  480. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/ExcalidrawModal.js.map +1 -0
  481. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/index.d.ts +22 -0
  482. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/index.js +98 -0
  483. package/dist/esm/components/TextEditorV2/nodes/ExcalidrawNode/index.js.map +1 -0
  484. package/dist/esm/components/TextEditorV2/nodes/ExtendedTextNode.d.ts +12 -0
  485. package/dist/esm/components/TextEditorV2/nodes/ExtendedTextNode.js +101 -0
  486. package/dist/esm/components/TextEditorV2/nodes/ExtendedTextNode.js.map +1 -0
  487. package/dist/esm/components/TextEditorV2/nodes/FigmaNode.d.ts +19 -0
  488. package/dist/esm/components/TextEditorV2/nodes/FigmaNode.js +58 -0
  489. package/dist/esm/components/TextEditorV2/nodes/FigmaNode.js.map +1 -0
  490. package/dist/esm/components/TextEditorV2/nodes/ImageComponent.d.ts +14 -0
  491. package/dist/esm/components/TextEditorV2/nodes/ImageComponent.js +207 -0
  492. package/dist/esm/components/TextEditorV2/nodes/ImageComponent.js.map +1 -0
  493. package/dist/esm/components/TextEditorV2/nodes/ImageNode.d.ts +56 -0
  494. package/dist/esm/components/TextEditorV2/nodes/ImageNode.js +131 -0
  495. package/dist/esm/components/TextEditorV2/nodes/ImageNode.js.map +1 -0
  496. package/dist/esm/components/TextEditorV2/nodes/InlineImageComponent.d.ts +18 -0
  497. package/dist/esm/components/TextEditorV2/nodes/InlineImageComponent.js +189 -0
  498. package/dist/esm/components/TextEditorV2/nodes/InlineImageComponent.js.map +1 -0
  499. package/dist/esm/components/TextEditorV2/nodes/InlineImageNode.d.ts +54 -0
  500. package/dist/esm/components/TextEditorV2/nodes/InlineImageNode.js +137 -0
  501. package/dist/esm/components/TextEditorV2/nodes/InlineImageNode.js.map +1 -0
  502. package/dist/esm/components/TextEditorV2/nodes/KeywordNode.d.ts +15 -0
  503. package/dist/esm/components/TextEditorV2/nodes/KeywordNode.js +49 -0
  504. package/dist/esm/components/TextEditorV2/nodes/KeywordNode.js.map +1 -0
  505. package/dist/esm/components/TextEditorV2/nodes/LayoutContainerNode.d.ts +21 -0
  506. package/dist/esm/components/TextEditorV2/nodes/LayoutContainerNode.js +58 -0
  507. package/dist/esm/components/TextEditorV2/nodes/LayoutContainerNode.js.map +1 -0
  508. package/dist/esm/components/TextEditorV2/nodes/LayoutItemNode.d.ts +15 -0
  509. package/dist/esm/components/TextEditorV2/nodes/LayoutItemNode.js +46 -0
  510. package/dist/esm/components/TextEditorV2/nodes/LayoutItemNode.js.map +1 -0
  511. package/dist/esm/components/TextEditorV2/nodes/MentionNode.d.ts +20 -0
  512. package/dist/esm/components/TextEditorV2/nodes/MentionNode.js +84 -0
  513. package/dist/esm/components/TextEditorV2/nodes/MentionNode.js.map +1 -0
  514. package/dist/esm/components/TextEditorV2/nodes/PageBreakNode/index.d.ts +17 -0
  515. package/dist/esm/components/TextEditorV2/nodes/PageBreakNode/index.js +108 -0
  516. package/dist/esm/components/TextEditorV2/nodes/PageBreakNode/index.js.map +1 -0
  517. package/dist/esm/components/TextEditorV2/nodes/PlaygroundNodes.d.ts +3 -0
  518. package/dist/esm/components/TextEditorV2/nodes/PlaygroundNodes.js +66 -0
  519. package/dist/esm/components/TextEditorV2/nodes/PlaygroundNodes.js.map +1 -0
  520. package/dist/esm/components/TextEditorV2/nodes/PollComponent.d.ts +8 -0
  521. package/dist/esm/components/TextEditorV2/nodes/PollComponent.js +109 -0
  522. package/dist/esm/components/TextEditorV2/nodes/PollComponent.js.map +1 -0
  523. package/dist/esm/components/TextEditorV2/nodes/PollNode.d.ts +33 -0
  524. package/dist/esm/components/TextEditorV2/nodes/PollNode.js +143 -0
  525. package/dist/esm/components/TextEditorV2/nodes/PollNode.js.map +1 -0
  526. package/dist/esm/components/TextEditorV2/nodes/StickyComponent.d.ts +9 -0
  527. package/dist/esm/components/TextEditorV2/nodes/StickyComponent.js +163 -0
  528. package/dist/esm/components/TextEditorV2/nodes/StickyComponent.js.map +1 -0
  529. package/dist/esm/components/TextEditorV2/nodes/StickyNode.d.ts +37 -0
  530. package/dist/esm/components/TextEditorV2/nodes/StickyNode.js +89 -0
  531. package/dist/esm/components/TextEditorV2/nodes/StickyNode.js.map +1 -0
  532. package/dist/esm/components/TextEditorV2/nodes/TableNode.d.ts +54 -0
  533. package/dist/esm/components/TextEditorV2/nodes/TableNode.js +188 -0
  534. package/dist/esm/components/TextEditorV2/nodes/TableNode.js.map +1 -0
  535. package/dist/esm/components/TextEditorV2/nodes/TweetNode.d.ts +28 -0
  536. package/dist/esm/components/TextEditorV2/nodes/TweetNode.js +151 -0
  537. package/dist/esm/components/TextEditorV2/nodes/TweetNode.js.map +1 -0
  538. package/dist/esm/components/TextEditorV2/nodes/YouTubeNode.d.ts +28 -0
  539. package/dist/esm/components/TextEditorV2/nodes/YouTubeNode.js +98 -0
  540. package/dist/esm/components/TextEditorV2/nodes/YouTubeNode.js.map +1 -0
  541. package/dist/esm/components/TextEditorV2/plugins/ActionsPlugin/index.d.ts +2 -0
  542. package/dist/esm/components/TextEditorV2/plugins/ActionsPlugin/index.js +180 -0
  543. package/dist/esm/components/TextEditorV2/plugins/ActionsPlugin/index.js.map +1 -0
  544. package/dist/esm/components/TextEditorV2/plugins/AutoEmbedPlugin/index.d.ts +19 -0
  545. package/dist/esm/components/TextEditorV2/plugins/AutoEmbedPlugin/index.js +174 -0
  546. package/dist/esm/components/TextEditorV2/plugins/AutoEmbedPlugin/index.js.map +1 -0
  547. package/dist/esm/components/TextEditorV2/plugins/AutoLinkPlugin/index.d.ts +2 -0
  548. package/dist/esm/components/TextEditorV2/plugins/AutoLinkPlugin/index.js +12 -0
  549. package/dist/esm/components/TextEditorV2/plugins/AutoLinkPlugin/index.js.map +1 -0
  550. package/dist/esm/components/TextEditorV2/plugins/AutocompletePlugin/index.d.ts +2 -0
  551. package/dist/esm/components/TextEditorV2/plugins/AutocompletePlugin/index.js +2461 -0
  552. package/dist/esm/components/TextEditorV2/plugins/AutocompletePlugin/index.js.map +1 -0
  553. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/CopyButton/index.d.ts +8 -0
  554. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/CopyButton/index.js +52 -0
  555. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/CopyButton/index.js.map +1 -0
  556. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/PrettierButton/index.d.ts +10 -0
  557. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/PrettierButton/index.js +155 -0
  558. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/components/PrettierButton/index.js.map +1 -0
  559. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/index.d.ts +4 -0
  560. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/index.js +108 -0
  561. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/index.js.map +1 -0
  562. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/utils.d.ts +1 -0
  563. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/utils.js +18 -0
  564. package/dist/esm/components/TextEditorV2/plugins/CodeActionMenuPlugin/utils.js.map +1 -0
  565. package/dist/esm/components/TextEditorV2/plugins/CodeHighlightPlugin/index.d.ts +1 -0
  566. package/dist/esm/components/TextEditorV2/plugins/CodeHighlightPlugin/index.js +9 -0
  567. package/dist/esm/components/TextEditorV2/plugins/CodeHighlightPlugin/index.js.map +1 -0
  568. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContainerNode.d.ts +23 -0
  569. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContainerNode.js +82 -0
  570. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContainerNode.js.map +1 -0
  571. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContentNode.d.ts +17 -0
  572. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContentNode.js +64 -0
  573. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleContentNode.js.map +1 -0
  574. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleTitleNode.d.ts +18 -0
  575. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleTitleNode.js +89 -0
  576. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/CollapsibleTitleNode.js.map +1 -0
  577. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/index.d.ts +3 -0
  578. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/index.js +144 -0
  579. package/dist/esm/components/TextEditorV2/plugins/CollapsiblePlugin/index.js.map +1 -0
  580. package/dist/esm/components/TextEditorV2/plugins/ComponentPickerPlugin/index.d.ts +2 -0
  581. package/dist/esm/components/TextEditorV2/plugins/ComponentPickerPlugin/index.js +261 -0
  582. package/dist/esm/components/TextEditorV2/plugins/ComponentPickerPlugin/index.js.map +1 -0
  583. package/dist/esm/components/TextEditorV2/plugins/ContextMenuPlugin/index.d.ts +11 -0
  584. package/dist/esm/components/TextEditorV2/plugins/ContextMenuPlugin/index.js +167 -0
  585. package/dist/esm/components/TextEditorV2/plugins/ContextMenuPlugin/index.js.map +1 -0
  586. package/dist/esm/components/TextEditorV2/plugins/DocsPlugin/index.d.ts +2 -0
  587. package/dist/esm/components/TextEditorV2/plugins/DocsPlugin/index.js +6 -0
  588. package/dist/esm/components/TextEditorV2/plugins/DocsPlugin/index.js.map +1 -0
  589. package/dist/esm/components/TextEditorV2/plugins/DragDropPastePlugin/index.d.ts +1 -0
  590. package/dist/esm/components/TextEditorV2/plugins/DragDropPastePlugin/index.js +41 -0
  591. package/dist/esm/components/TextEditorV2/plugins/DragDropPastePlugin/index.js.map +1 -0
  592. package/dist/esm/components/TextEditorV2/plugins/DraggableBlockPlugin/index.d.ts +4 -0
  593. package/dist/esm/components/TextEditorV2/plugins/DraggableBlockPlugin/index.js +284 -0
  594. package/dist/esm/components/TextEditorV2/plugins/DraggableBlockPlugin/index.js.map +1 -0
  595. package/dist/esm/components/TextEditorV2/plugins/EmojiPickerPlugin/index.d.ts +2 -0
  596. package/dist/esm/components/TextEditorV2/plugins/EmojiPickerPlugin/index.js +94 -0
  597. package/dist/esm/components/TextEditorV2/plugins/EmojiPickerPlugin/index.js.map +1 -0
  598. package/dist/esm/components/TextEditorV2/plugins/EmojisPlugin/index.d.ts +1 -0
  599. package/dist/esm/components/TextEditorV2/plugins/EmojisPlugin/index.js +61 -0
  600. package/dist/esm/components/TextEditorV2/plugins/EmojisPlugin/index.js.map +1 -0
  601. package/dist/esm/components/TextEditorV2/plugins/EquationsPlugin/index.d.ts +14 -0
  602. package/dist/esm/components/TextEditorV2/plugins/EquationsPlugin/index.js +36 -0
  603. package/dist/esm/components/TextEditorV2/plugins/EquationsPlugin/index.js.map +1 -0
  604. package/dist/esm/components/TextEditorV2/plugins/ExcalidrawPlugin/index.d.ts +3 -0
  605. package/dist/esm/components/TextEditorV2/plugins/ExcalidrawPlugin/index.js +24 -0
  606. package/dist/esm/components/TextEditorV2/plugins/ExcalidrawPlugin/index.js.map +1 -0
  607. package/dist/esm/components/TextEditorV2/plugins/FigmaPlugin/index.d.ts +3 -0
  608. package/dist/esm/components/TextEditorV2/plugins/FigmaPlugin/index.js +21 -0
  609. package/dist/esm/components/TextEditorV2/plugins/FigmaPlugin/index.js.map +1 -0
  610. package/dist/esm/components/TextEditorV2/plugins/FloatingLinkEditorPlugin/index.d.ts +7 -0
  611. package/dist/esm/components/TextEditorV2/plugins/FloatingLinkEditorPlugin/index.js +196 -0
  612. package/dist/esm/components/TextEditorV2/plugins/FloatingLinkEditorPlugin/index.js.map +1 -0
  613. package/dist/esm/components/TextEditorV2/plugins/FloatingTextFormatToolbarPlugin/index.d.ts +4 -0
  614. package/dist/esm/components/TextEditorV2/plugins/FloatingTextFormatToolbarPlugin/index.js +225 -0
  615. package/dist/esm/components/TextEditorV2/plugins/FloatingTextFormatToolbarPlugin/index.js.map +1 -0
  616. package/dist/esm/components/TextEditorV2/plugins/ImagesPlugin/index.d.ts +22 -0
  617. package/dist/esm/components/TextEditorV2/plugins/ImagesPlugin/index.js +181 -0
  618. package/dist/esm/components/TextEditorV2/plugins/ImagesPlugin/index.js.map +1 -0
  619. package/dist/esm/components/TextEditorV2/plugins/InlineImagePlugin/index.d.ts +17 -0
  620. package/dist/esm/components/TextEditorV2/plugins/InlineImagePlugin/index.js +187 -0
  621. package/dist/esm/components/TextEditorV2/plugins/InlineImagePlugin/index.js.map +1 -0
  622. package/dist/esm/components/TextEditorV2/plugins/KeywordsPlugin/index.d.ts +1 -0
  623. package/dist/esm/components/TextEditorV2/plugins/KeywordsPlugin/index.js +30 -0
  624. package/dist/esm/components/TextEditorV2/plugins/KeywordsPlugin/index.js.map +1 -0
  625. package/dist/esm/components/TextEditorV2/plugins/LayoutPlugin/InsertLayoutDialog.d.ts +6 -0
  626. package/dist/esm/components/TextEditorV2/plugins/LayoutPlugin/InsertLayoutDialog.js +30 -0
  627. package/dist/esm/components/TextEditorV2/plugins/LayoutPlugin/InsertLayoutDialog.js.map +1 -0
  628. package/dist/esm/components/TextEditorV2/plugins/LayoutPlugin/LayoutPlugin.d.ts +7 -0
  629. package/dist/esm/components/TextEditorV2/plugins/LayoutPlugin/LayoutPlugin.js +85 -0
  630. package/dist/esm/components/TextEditorV2/plugins/LayoutPlugin/LayoutPlugin.js.map +1 -0
  631. package/dist/esm/components/TextEditorV2/plugins/LinkPlugin/index.d.ts +2 -0
  632. package/dist/esm/components/TextEditorV2/plugins/LinkPlugin/index.js +7 -0
  633. package/dist/esm/components/TextEditorV2/plugins/LinkPlugin/index.js.map +1 -0
  634. package/dist/esm/components/TextEditorV2/plugins/ListMaxIndentLevelPlugin/index.d.ts +5 -0
  635. package/dist/esm/components/TextEditorV2/plugins/ListMaxIndentLevelPlugin/index.js +41 -0
  636. package/dist/esm/components/TextEditorV2/plugins/ListMaxIndentLevelPlugin/index.js.map +1 -0
  637. package/dist/esm/components/TextEditorV2/plugins/MarkdownShortcutPlugin/index.d.ts +2 -0
  638. package/dist/esm/components/TextEditorV2/plugins/MarkdownShortcutPlugin/index.js +7 -0
  639. package/dist/esm/components/TextEditorV2/plugins/MarkdownShortcutPlugin/index.js.map +1 -0
  640. package/dist/esm/components/TextEditorV2/plugins/MarkdownTransformers/index.d.ts +8 -0
  641. package/dist/esm/components/TextEditorV2/plugins/MarkdownTransformers/index.js +239 -0
  642. package/dist/esm/components/TextEditorV2/plugins/MarkdownTransformers/index.js.map +1 -0
  643. package/dist/esm/components/TextEditorV2/plugins/MaxLengthPlugin/index.d.ts +3 -0
  644. package/dist/esm/components/TextEditorV2/plugins/MaxLengthPlugin/index.js +38 -0
  645. package/dist/esm/components/TextEditorV2/plugins/MaxLengthPlugin/index.js.map +1 -0
  646. package/dist/esm/components/TextEditorV2/plugins/MentionsPlugin/index.d.ts +2 -0
  647. package/dist/esm/components/TextEditorV2/plugins/MentionsPlugin/index.js +557 -0
  648. package/dist/esm/components/TextEditorV2/plugins/MentionsPlugin/index.js.map +1 -0
  649. package/dist/esm/components/TextEditorV2/plugins/PageBreakPlugin/index.d.ts +3 -0
  650. package/dist/esm/components/TextEditorV2/plugins/PageBreakPlugin/index.js +27 -0
  651. package/dist/esm/components/TextEditorV2/plugins/PageBreakPlugin/index.js.map +1 -0
  652. package/dist/esm/components/TextEditorV2/plugins/PasteLogPlugin/index.d.ts +2 -0
  653. package/dist/esm/components/TextEditorV2/plugins/PasteLogPlugin/index.js +33 -0
  654. package/dist/esm/components/TextEditorV2/plugins/PasteLogPlugin/index.js.map +1 -0
  655. package/dist/esm/components/TextEditorV2/plugins/PollPlugin/index.d.ts +8 -0
  656. package/dist/esm/components/TextEditorV2/plugins/PollPlugin/index.js +40 -0
  657. package/dist/esm/components/TextEditorV2/plugins/PollPlugin/index.js.map +1 -0
  658. package/dist/esm/components/TextEditorV2/plugins/StickyPlugin/index.d.ts +1 -0
  659. package/dist/esm/components/TextEditorV2/plugins/StickyPlugin/index.js +13 -0
  660. package/dist/esm/components/TextEditorV2/plugins/StickyPlugin/index.js.map +1 -0
  661. package/dist/esm/components/TextEditorV2/plugins/TabFocusPlugin/index.d.ts +1 -0
  662. package/dist/esm/components/TextEditorV2/plugins/TabFocusPlugin/index.js +35 -0
  663. package/dist/esm/components/TextEditorV2/plugins/TabFocusPlugin/index.js.map +1 -0
  664. package/dist/esm/components/TextEditorV2/plugins/TableActionMenuPlugin/index.d.ts +5 -0
  665. package/dist/esm/components/TextEditorV2/plugins/TableActionMenuPlugin/index.js +483 -0
  666. package/dist/esm/components/TextEditorV2/plugins/TableActionMenuPlugin/index.js.map +1 -0
  667. package/dist/esm/components/TextEditorV2/plugins/TableCellResizer/index.d.ts +2 -0
  668. package/dist/esm/components/TextEditorV2/plugins/TableCellResizer/index.js +249 -0
  669. package/dist/esm/components/TextEditorV2/plugins/TableCellResizer/index.js.map +1 -0
  670. package/dist/esm/components/TextEditorV2/plugins/TableOfContentsPlugin/index.d.ts +2 -0
  671. package/dist/esm/components/TextEditorV2/plugins/TableOfContentsPlugin/index.js +113 -0
  672. package/dist/esm/components/TextEditorV2/plugins/TableOfContentsPlugin/index.js.map +1 -0
  673. package/dist/esm/components/TextEditorV2/plugins/TablePlugin.d.ts +32 -0
  674. package/dist/esm/components/TextEditorV2/plugins/TablePlugin.js +78 -0
  675. package/dist/esm/components/TextEditorV2/plugins/TablePlugin.js.map +1 -0
  676. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/bold-text.d.ts +6 -0
  677. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/bold-text.js +14 -0
  678. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/bold-text.js.map +1 -0
  679. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/bullet.d.ts +6 -0
  680. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/bullet.js +24 -0
  681. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/bullet.js.map +1 -0
  682. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/font-size.d.ts +6 -0
  683. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/font-size.js +61 -0
  684. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/font-size.js.map +1 -0
  685. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/heading.d.ts +6 -0
  686. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/heading.js +67 -0
  687. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/heading.js.map +1 -0
  688. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/italic-text.d.ts +6 -0
  689. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/italic-text.js +14 -0
  690. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/italic-text.js.map +1 -0
  691. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/link.d.ts +5 -0
  692. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/link.js +42 -0
  693. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/link.js.map +1 -0
  694. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/number-bullet.d.ts +6 -0
  695. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/number-bullet.js +24 -0
  696. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/number-bullet.js.map +1 -0
  697. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/text-align.d.ts +6 -0
  698. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/text-align.js +48 -0
  699. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/text-align.js.map +1 -0
  700. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/text-color.d.ts +6 -0
  701. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/text-color.js +24 -0
  702. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/text-color.js.map +1 -0
  703. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/underline-text.d.ts +6 -0
  704. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/underline-text.js +15 -0
  705. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/underline-text.js.map +1 -0
  706. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-image.d.ts +6 -0
  707. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-image.js +37 -0
  708. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-image.js.map +1 -0
  709. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-pdf.d.ts +11 -0
  710. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-pdf.js +159 -0
  711. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/components/upload-pdf.js.map +1 -0
  712. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/index.d.ts +4 -0
  713. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/index.js +159 -0
  714. package/dist/esm/components/TextEditorV2/plugins/ToolbarPlugin/index.js.map +1 -0
  715. package/dist/esm/components/TextEditorV2/plugins/TreeViewPlugin/index.d.ts +2 -0
  716. package/dist/esm/components/TextEditorV2/plugins/TreeViewPlugin/index.js +8 -0
  717. package/dist/esm/components/TextEditorV2/plugins/TreeViewPlugin/index.js.map +1 -0
  718. package/dist/esm/components/TextEditorV2/plugins/TwitterPlugin/index.d.ts +3 -0
  719. package/dist/esm/components/TextEditorV2/plugins/TwitterPlugin/index.js +21 -0
  720. package/dist/esm/components/TextEditorV2/plugins/TwitterPlugin/index.js.map +1 -0
  721. package/dist/esm/components/TextEditorV2/plugins/YouTubePlugin/index.d.ts +3 -0
  722. package/dist/esm/components/TextEditorV2/plugins/YouTubePlugin/index.js +21 -0
  723. package/dist/esm/components/TextEditorV2/plugins/YouTubePlugin/index.js.map +1 -0
  724. package/dist/esm/components/TextEditorV2/shared/canUseDOM.d.ts +1 -0
  725. package/dist/esm/components/TextEditorV2/shared/canUseDOM.js +4 -0
  726. package/dist/esm/components/TextEditorV2/shared/canUseDOM.js.map +1 -0
  727. package/dist/esm/components/TextEditorV2/shared/caretFromPoint.d.ts +4 -0
  728. package/dist/esm/components/TextEditorV2/shared/caretFromPoint.js +29 -0
  729. package/dist/esm/components/TextEditorV2/shared/caretFromPoint.js.map +1 -0
  730. package/dist/esm/components/TextEditorV2/shared/environment.d.ts +16 -0
  731. package/dist/esm/components/TextEditorV2/shared/environment.js +14 -0
  732. package/dist/esm/components/TextEditorV2/shared/environment.js.map +1 -0
  733. package/dist/esm/components/TextEditorV2/shared/invariant.d.ts +1 -0
  734. package/dist/esm/components/TextEditorV2/shared/invariant.js +12 -0
  735. package/dist/esm/components/TextEditorV2/shared/invariant.js.map +1 -0
  736. package/dist/esm/components/TextEditorV2/shared/simpleDiffWithCursor.d.ts +5 -0
  737. package/dist/esm/components/TextEditorV2/shared/simpleDiffWithCursor.js +25 -0
  738. package/dist/esm/components/TextEditorV2/shared/simpleDiffWithCursor.js.map +1 -0
  739. package/dist/esm/components/TextEditorV2/shared/useLayoutEffect.d.ts +3 -0
  740. package/dist/esm/components/TextEditorV2/shared/useLayoutEffect.js +5 -0
  741. package/dist/esm/components/TextEditorV2/shared/useLayoutEffect.js.map +1 -0
  742. package/dist/esm/components/TextEditorV2/shared/warnOnlyOnce.d.ts +1 -0
  743. package/dist/esm/components/TextEditorV2/shared/warnOnlyOnce.js +13 -0
  744. package/dist/esm/components/TextEditorV2/shared/warnOnlyOnce.js.map +1 -0
  745. package/dist/esm/components/TextEditorV2/style.d.ts +2 -0
  746. package/dist/esm/components/TextEditorV2/style.js +5 -0
  747. package/dist/esm/components/TextEditorV2/style.js.map +1 -0
  748. package/dist/esm/components/TextEditorV2/themes/CommentEditorTheme.d.ts +3 -0
  749. package/dist/esm/components/TextEditorV2/themes/CommentEditorTheme.js +5 -0
  750. package/dist/esm/components/TextEditorV2/themes/CommentEditorTheme.js.map +1 -0
  751. package/dist/esm/components/TextEditorV2/themes/PlaygroundEditorTheme.d.ts +3 -0
  752. package/dist/esm/components/TextEditorV2/themes/PlaygroundEditorTheme.js +105 -0
  753. package/dist/esm/components/TextEditorV2/themes/PlaygroundEditorTheme.js.map +1 -0
  754. package/dist/esm/components/TextEditorV2/themes/StickyEditorTheme.d.ts +3 -0
  755. package/dist/esm/components/TextEditorV2/themes/StickyEditorTheme.js +5 -0
  756. package/dist/esm/components/TextEditorV2/themes/StickyEditorTheme.js.map +1 -0
  757. package/dist/esm/components/TextEditorV2/ui/Button.d.ts +11 -0
  758. package/dist/esm/components/TextEditorV2/ui/Button.js +8 -0
  759. package/dist/esm/components/TextEditorV2/ui/Button.js.map +1 -0
  760. package/dist/esm/components/TextEditorV2/ui/ColorPicker.d.ts +12 -0
  761. package/dist/esm/components/TextEditorV2/ui/ColorPicker.js +212 -0
  762. package/dist/esm/components/TextEditorV2/ui/ColorPicker.js.map +1 -0
  763. package/dist/esm/components/TextEditorV2/ui/ContentEditable.d.ts +4 -0
  764. package/dist/esm/components/TextEditorV2/ui/ContentEditable.js +7 -0
  765. package/dist/esm/components/TextEditorV2/ui/ContentEditable.js.map +1 -0
  766. package/dist/esm/components/TextEditorV2/ui/Dialog.d.ts +9 -0
  767. package/dist/esm/components/TextEditorV2/ui/Dialog.js +10 -0
  768. package/dist/esm/components/TextEditorV2/ui/Dialog.js.map +1 -0
  769. package/dist/esm/components/TextEditorV2/ui/DropDown.d.ts +17 -0
  770. package/dist/esm/components/TextEditorV2/ui/DropDown.js +129 -0
  771. package/dist/esm/components/TextEditorV2/ui/DropDown.js.map +1 -0
  772. package/dist/esm/components/TextEditorV2/ui/DropdownColorPicker.d.ts +21 -0
  773. package/dist/esm/components/TextEditorV2/ui/DropdownColorPicker.js +17 -0
  774. package/dist/esm/components/TextEditorV2/ui/DropdownColorPicker.js.map +1 -0
  775. package/dist/esm/components/TextEditorV2/ui/EquationEditor.d.ts +8 -0
  776. package/dist/esm/components/TextEditorV2/ui/EquationEditor.js +17 -0
  777. package/dist/esm/components/TextEditorV2/ui/EquationEditor.js.map +1 -0
  778. package/dist/esm/components/TextEditorV2/ui/FileInput.d.ts +9 -0
  779. package/dist/esm/components/TextEditorV2/ui/FileInput.js +8 -0
  780. package/dist/esm/components/TextEditorV2/ui/FileInput.js.map +1 -0
  781. package/dist/esm/components/TextEditorV2/ui/ImageResizer.d.ts +11 -0
  782. package/dist/esm/components/TextEditorV2/ui/ImageResizer.js +174 -0
  783. package/dist/esm/components/TextEditorV2/ui/ImageResizer.js.map +1 -0
  784. package/dist/esm/components/TextEditorV2/ui/KatexEquationAlterer.d.ts +7 -0
  785. package/dist/esm/components/TextEditorV2/ui/KatexEquationAlterer.js +35 -0
  786. package/dist/esm/components/TextEditorV2/ui/KatexEquationAlterer.js.map +1 -0
  787. package/dist/esm/components/TextEditorV2/ui/KatexRenderer.d.ts +6 -0
  788. package/dist/esm/components/TextEditorV2/ui/KatexRenderer.js +29 -0
  789. package/dist/esm/components/TextEditorV2/ui/KatexRenderer.js.map +1 -0
  790. package/dist/esm/components/TextEditorV2/ui/Modal.d.ts +8 -0
  791. package/dist/esm/components/TextEditorV2/ui/Modal.js +50 -0
  792. package/dist/esm/components/TextEditorV2/ui/Modal.js.map +1 -0
  793. package/dist/esm/components/TextEditorV2/ui/Placeholder.d.ts +6 -0
  794. package/dist/esm/components/TextEditorV2/ui/Placeholder.js +6 -0
  795. package/dist/esm/components/TextEditorV2/ui/Placeholder.js.map +1 -0
  796. package/dist/esm/components/TextEditorV2/ui/Select.d.ts +7 -0
  797. package/dist/esm/components/TextEditorV2/ui/Select.js +9 -0
  798. package/dist/esm/components/TextEditorV2/ui/Select.js.map +1 -0
  799. package/dist/esm/components/TextEditorV2/ui/Switch.d.ts +7 -0
  800. package/dist/esm/components/TextEditorV2/ui/Switch.js +11 -0
  801. package/dist/esm/components/TextEditorV2/ui/Switch.js.map +1 -0
  802. package/dist/esm/components/TextEditorV2/ui/TextInput.d.ts +12 -0
  803. package/dist/esm/components/TextEditorV2/ui/TextInput.js +10 -0
  804. package/dist/esm/components/TextEditorV2/ui/TextInput.js.map +1 -0
  805. package/dist/esm/components/TextEditorV2/utils/emoji-list.d.ts +20 -0
  806. package/dist/esm/components/TextEditorV2/utils/emoji-list.js +16605 -0
  807. package/dist/esm/components/TextEditorV2/utils/emoji-list.js.map +1 -0
  808. package/dist/esm/components/TextEditorV2/utils/getDOMRangeRect.d.ts +1 -0
  809. package/dist/esm/components/TextEditorV2/utils/getDOMRangeRect.js +16 -0
  810. package/dist/esm/components/TextEditorV2/utils/getDOMRangeRect.js.map +1 -0
  811. package/dist/esm/components/TextEditorV2/utils/getPrepopulatedRichText.d.ts +1 -0
  812. package/dist/esm/components/TextEditorV2/utils/getPrepopulatedRichText.js +32 -0
  813. package/dist/esm/components/TextEditorV2/utils/getPrepopulatedRichText.js.map +1 -0
  814. package/dist/esm/components/TextEditorV2/utils/getSelectedNode.d.ts +2 -0
  815. package/dist/esm/components/TextEditorV2/utils/getSelectedNode.js +18 -0
  816. package/dist/esm/components/TextEditorV2/utils/getSelectedNode.js.map +1 -0
  817. package/dist/esm/components/TextEditorV2/utils/guard.d.ts +1 -0
  818. package/dist/esm/components/TextEditorV2/utils/guard.js +4 -0
  819. package/dist/esm/components/TextEditorV2/utils/guard.js.map +1 -0
  820. package/dist/esm/components/TextEditorV2/utils/isMobileWidth.d.ts +0 -0
  821. package/dist/esm/components/TextEditorV2/utils/isMobileWidth.js +2 -0
  822. package/dist/esm/components/TextEditorV2/utils/isMobileWidth.js.map +1 -0
  823. package/dist/esm/components/TextEditorV2/utils/joinClasses.d.ts +1 -0
  824. package/dist/esm/components/TextEditorV2/utils/joinClasses.js +8 -0
  825. package/dist/esm/components/TextEditorV2/utils/joinClasses.js.map +1 -0
  826. package/dist/esm/components/TextEditorV2/utils/point.d.ts +14 -0
  827. package/dist/esm/components/TextEditorV2/utils/point.js +47 -0
  828. package/dist/esm/components/TextEditorV2/utils/point.js.map +1 -0
  829. package/dist/esm/components/TextEditorV2/utils/rect.d.ts +38 -0
  830. package/dist/esm/components/TextEditorV2/utils/rect.js +122 -0
  831. package/dist/esm/components/TextEditorV2/utils/rect.js.map +1 -0
  832. package/dist/esm/components/TextEditorV2/utils/setFloatingElemPosition.d.ts +1 -0
  833. package/dist/esm/components/TextEditorV2/utils/setFloatingElemPosition.js +30 -0
  834. package/dist/esm/components/TextEditorV2/utils/setFloatingElemPosition.js.map +1 -0
  835. package/dist/esm/components/TextEditorV2/utils/setFloatingElemPositionForLinkEditor.d.ts +1 -0
  836. package/dist/esm/components/TextEditorV2/utils/setFloatingElemPositionForLinkEditor.js +28 -0
  837. package/dist/esm/components/TextEditorV2/utils/setFloatingElemPositionForLinkEditor.js.map +1 -0
  838. package/dist/esm/components/TextEditorV2/utils/swipe.d.ts +4 -0
  839. package/dist/esm/components/TextEditorV2/utils/swipe.js +91 -0
  840. package/dist/esm/components/TextEditorV2/utils/swipe.js.map +1 -0
  841. package/dist/esm/components/TextEditorV2/utils/url.d.ts +2 -0
  842. package/dist/esm/components/TextEditorV2/utils/url.js +22 -0
  843. package/dist/esm/components/TextEditorV2/utils/url.js.map +1 -0
  844. package/dist/esm/index.d.ts +2 -1
  845. package/dist/esm/index.js +2 -1
  846. package/dist/esm/index.js.map +1 -1
  847. package/package.json +11 -2
@@ -0,0 +1,2461 @@
1
+ import { __spreadArray } from "tslib";
2
+ import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext';
3
+ import { $isAtNodeEnd } from '@lexical/selection';
4
+ import { mergeRegister } from '@lexical/utils';
5
+ import { $createTextNode, $getNodeByKey, $getSelection, $isRangeSelection, $isTextNode, $setSelection, COMMAND_PRIORITY_LOW, KEY_ARROW_RIGHT_COMMAND, KEY_TAB_COMMAND, } from 'lexical';
6
+ import { useCallback, useEffect } from 'react';
7
+ import { useSharedAutocompleteContext } from '../../context/SharedAutocompleteContext';
8
+ import { $createAutocompleteNode, AutocompleteNode } from '../../nodes/AutocompleteNode';
9
+ import { addSwipeRightListener } from '../../utils/swipe';
10
+ export var uuid = Math.random()
11
+ .toString(36)
12
+ .replace(/[^a-z]+/g, '')
13
+ .substr(0, 5);
14
+ // TODO lookup should be custom
15
+ function $search(selection) {
16
+ if (!$isRangeSelection(selection) || !selection.isCollapsed()) {
17
+ return [false, ''];
18
+ }
19
+ var node = selection.getNodes()[0];
20
+ var anchor = selection.anchor;
21
+ // Check siblings?
22
+ if (!$isTextNode(node) || !node.isSimpleText() || !$isAtNodeEnd(anchor)) {
23
+ return [false, ''];
24
+ }
25
+ var word = [];
26
+ var text = node.getTextContent();
27
+ var i = node.getTextContentSize();
28
+ var c;
29
+ while (i-- && i >= 0 && (c = text[i]) !== ' ') {
30
+ word.push(c);
31
+ }
32
+ if (word.length === 0) {
33
+ return [false, ''];
34
+ }
35
+ return [true, word.reverse().join('')];
36
+ }
37
+ // TODO query should be custom
38
+ function useQuery() {
39
+ return useCallback(function (searchText) {
40
+ // eslint-disable-next-line no-use-before-define
41
+ var server = new AutocompleteServer();
42
+ console.time('query');
43
+ var response = server.query(searchText);
44
+ console.timeEnd('query');
45
+ return response;
46
+ }, []);
47
+ }
48
+ export default function AutocompletePlugin() {
49
+ var editor = useLexicalComposerContext()[0];
50
+ var _a = useSharedAutocompleteContext(), setSuggestion = _a[1];
51
+ var query = useQuery();
52
+ useEffect(function () {
53
+ var autocompleteNodeKey = null;
54
+ var lastMatch = null;
55
+ var lastSuggestion = null;
56
+ var searchPromise = null;
57
+ function $clearSuggestion() {
58
+ var autocompleteNode = autocompleteNodeKey !== null ? $getNodeByKey(autocompleteNodeKey) : null;
59
+ if (autocompleteNode !== null && autocompleteNode.isAttached()) {
60
+ autocompleteNode.remove();
61
+ autocompleteNodeKey = null;
62
+ }
63
+ if (searchPromise !== null) {
64
+ searchPromise.dismiss();
65
+ searchPromise = null;
66
+ }
67
+ lastMatch = null;
68
+ lastSuggestion = null;
69
+ setSuggestion(null);
70
+ }
71
+ function updateAsyncSuggestion(refSearchPromise, newSuggestion) {
72
+ if (searchPromise !== refSearchPromise || newSuggestion === null) {
73
+ // Outdated or no suggestion
74
+ return;
75
+ }
76
+ editor.update(function () {
77
+ var selection = $getSelection();
78
+ var _a = $search(selection), hasMatch = _a[0], match = _a[1];
79
+ if (!hasMatch || match !== lastMatch || !$isRangeSelection(selection)) {
80
+ // Outdated
81
+ return;
82
+ }
83
+ var selectionCopy = selection.clone();
84
+ var node = $createAutocompleteNode(uuid);
85
+ autocompleteNodeKey = node.getKey();
86
+ selection.insertNodes([node]);
87
+ $setSelection(selectionCopy);
88
+ lastSuggestion = newSuggestion;
89
+ setSuggestion(newSuggestion);
90
+ }, { tag: 'history-merge' });
91
+ }
92
+ function handleAutocompleteNodeTransform(node) {
93
+ var key = node.getKey();
94
+ if (node.__uuid === uuid && key !== autocompleteNodeKey) {
95
+ // Max one Autocomplete node per session
96
+ $clearSuggestion();
97
+ }
98
+ }
99
+ function handleUpdate() {
100
+ editor.update(function () {
101
+ var selection = $getSelection();
102
+ var _a = $search(selection), hasMatch = _a[0], match = _a[1];
103
+ if (!hasMatch) {
104
+ $clearSuggestion();
105
+ return;
106
+ }
107
+ if (match === lastMatch) {
108
+ return;
109
+ }
110
+ $clearSuggestion();
111
+ searchPromise = query(match);
112
+ searchPromise.promise
113
+ .then(function (newSuggestion) {
114
+ if (searchPromise !== null) {
115
+ updateAsyncSuggestion(searchPromise, newSuggestion);
116
+ }
117
+ })
118
+ .catch(function (e) {
119
+ console.error(e);
120
+ });
121
+ lastMatch = match;
122
+ });
123
+ }
124
+ function $handleAutocompleteIntent() {
125
+ if (lastSuggestion === null || autocompleteNodeKey === null) {
126
+ return false;
127
+ }
128
+ var autocompleteNode = $getNodeByKey(autocompleteNodeKey);
129
+ if (autocompleteNode === null) {
130
+ return false;
131
+ }
132
+ var textNode = $createTextNode(lastSuggestion);
133
+ autocompleteNode.replace(textNode);
134
+ textNode.selectNext();
135
+ $clearSuggestion();
136
+ return true;
137
+ }
138
+ function $handleKeypressCommand(e) {
139
+ if ($handleAutocompleteIntent()) {
140
+ e.preventDefault();
141
+ return true;
142
+ }
143
+ return false;
144
+ }
145
+ function handleSwipeRight(_force, e) {
146
+ editor.update(function () {
147
+ if ($handleAutocompleteIntent()) {
148
+ e.preventDefault();
149
+ }
150
+ });
151
+ }
152
+ function unmountSuggestion() {
153
+ editor.update(function () {
154
+ $clearSuggestion();
155
+ });
156
+ }
157
+ var rootElem = editor.getRootElement();
158
+ return mergeRegister.apply(void 0, __spreadArray(__spreadArray([editor.registerNodeTransform(AutocompleteNode, handleAutocompleteNodeTransform),
159
+ editor.registerUpdateListener(handleUpdate),
160
+ editor.registerCommand(KEY_TAB_COMMAND, $handleKeypressCommand, COMMAND_PRIORITY_LOW),
161
+ editor.registerCommand(KEY_ARROW_RIGHT_COMMAND, $handleKeypressCommand, COMMAND_PRIORITY_LOW)], (rootElem !== null ? [addSwipeRightListener(rootElem, handleSwipeRight)] : []), false), [unmountSuggestion], false));
162
+ }, [editor, query, setSuggestion]);
163
+ return null;
164
+ }
165
+ /*
166
+ * Simulate an asynchronous autocomplete server (typical in more common use cases like GMail where
167
+ * the data is not static).
168
+ */
169
+ var AutocompleteServer = /** @class */ (function () {
170
+ function AutocompleteServer() {
171
+ var _this = this;
172
+ // eslint-disable-next-line no-use-before-define
173
+ this.DATABASE = DICTIONARY;
174
+ this.LATENCY = 200;
175
+ this.query = function (searchText) {
176
+ var isDismissed = false;
177
+ var dismiss = function () {
178
+ isDismissed = true;
179
+ };
180
+ var promise = new Promise(function (resolve, reject) {
181
+ setTimeout(function () {
182
+ if (isDismissed) {
183
+ // TODO cache result
184
+ return reject('Dismissed');
185
+ }
186
+ var searchTextLength = searchText.length;
187
+ if (searchText === '' || searchTextLength < 4) {
188
+ return resolve(null);
189
+ }
190
+ var char0 = searchText.charCodeAt(0);
191
+ var isCapitalized = char0 >= 65 && char0 <= 90;
192
+ var caseInsensitiveSearchText = isCapitalized
193
+ ? String.fromCharCode(char0 + 32) + searchText.substring(1)
194
+ : searchText;
195
+ var match = _this.DATABASE.find(function (dictionaryWord) { var _a; return (_a = dictionaryWord.startsWith(caseInsensitiveSearchText)) !== null && _a !== void 0 ? _a : null; });
196
+ if (match === undefined) {
197
+ return resolve(null);
198
+ }
199
+ var matchCapitalized = isCapitalized
200
+ ? String.fromCharCode(match.charCodeAt(0) - 32) + match.substring(1)
201
+ : match;
202
+ var autocompleteChunk = matchCapitalized.substring(searchTextLength);
203
+ if (autocompleteChunk === '') {
204
+ return resolve(null);
205
+ }
206
+ return resolve(autocompleteChunk);
207
+ }, _this.LATENCY);
208
+ });
209
+ return {
210
+ dismiss: dismiss,
211
+ promise: promise,
212
+ };
213
+ };
214
+ }
215
+ return AutocompleteServer;
216
+ }());
217
+ // https://raw.githubusercontent.com/first20hours/google-10000-english/master/google-10000-english-usa-no-swears-long.txt
218
+ var DICTIONARY = [
219
+ 'information',
220
+ 'available',
221
+ 'copyright',
222
+ 'university',
223
+ 'management',
224
+ 'international',
225
+ 'development',
226
+ 'education',
227
+ 'community',
228
+ 'technology',
229
+ 'following',
230
+ 'resources',
231
+ 'including',
232
+ 'directory',
233
+ 'government',
234
+ 'department',
235
+ 'description',
236
+ 'insurance',
237
+ 'different',
238
+ 'categories',
239
+ 'conditions',
240
+ 'accessories',
241
+ 'september',
242
+ 'questions',
243
+ 'application',
244
+ 'financial',
245
+ 'equipment',
246
+ 'performance',
247
+ 'experience',
248
+ 'important',
249
+ 'activities',
250
+ 'additional',
251
+ 'something',
252
+ 'professional',
253
+ 'committee',
254
+ 'washington',
255
+ 'california',
256
+ 'reference',
257
+ 'companies',
258
+ 'computers',
259
+ 'president',
260
+ 'australia',
261
+ 'discussion',
262
+ 'entertainment',
263
+ 'agreement',
264
+ 'marketing',
265
+ 'association',
266
+ 'collection',
267
+ 'solutions',
268
+ 'electronics',
269
+ 'technical',
270
+ 'microsoft',
271
+ 'conference',
272
+ 'environment',
273
+ 'statement',
274
+ 'downloads',
275
+ 'applications',
276
+ 'requirements',
277
+ 'individual',
278
+ 'subscribe',
279
+ 'everything',
280
+ 'production',
281
+ 'commercial',
282
+ 'advertising',
283
+ 'treatment',
284
+ 'newsletter',
285
+ 'knowledge',
286
+ 'currently',
287
+ 'construction',
288
+ 'registered',
289
+ 'protection',
290
+ 'engineering',
291
+ 'published',
292
+ 'corporate',
293
+ 'customers',
294
+ 'materials',
295
+ 'countries',
296
+ 'standards',
297
+ 'political',
298
+ 'advertise',
299
+ 'environmental',
300
+ 'availability',
301
+ 'employment',
302
+ 'commission',
303
+ 'administration',
304
+ 'institute',
305
+ 'sponsored',
306
+ 'electronic',
307
+ 'condition',
308
+ 'effective',
309
+ 'organization',
310
+ 'selection',
311
+ 'corporation',
312
+ 'executive',
313
+ 'necessary',
314
+ 'according',
315
+ 'particular',
316
+ 'facilities',
317
+ 'opportunities',
318
+ 'appropriate',
319
+ 'statistics',
320
+ 'investment',
321
+ 'christmas',
322
+ 'registration',
323
+ 'furniture',
324
+ 'wednesday',
325
+ 'structure',
326
+ 'distribution',
327
+ 'industrial',
328
+ 'potential',
329
+ 'responsible',
330
+ 'communications',
331
+ 'associated',
332
+ 'foundation',
333
+ 'documents',
334
+ 'communication',
335
+ 'independent',
336
+ 'operating',
337
+ 'developed',
338
+ 'telephone',
339
+ 'population',
340
+ 'navigation',
341
+ 'operations',
342
+ 'therefore',
343
+ 'christian',
344
+ 'understand',
345
+ 'publications',
346
+ 'worldwide',
347
+ 'connection',
348
+ 'publisher',
349
+ 'introduction',
350
+ 'properties',
351
+ 'accommodation',
352
+ 'excellent',
353
+ 'opportunity',
354
+ 'assessment',
355
+ 'especially',
356
+ 'interface',
357
+ 'operation',
358
+ 'restaurants',
359
+ 'beautiful',
360
+ 'locations',
361
+ 'significant',
362
+ 'technologies',
363
+ 'manufacturer',
364
+ 'providing',
365
+ 'authority',
366
+ 'considered',
367
+ 'programme',
368
+ 'enterprise',
369
+ 'educational',
370
+ 'employees',
371
+ 'alternative',
372
+ 'processing',
373
+ 'responsibility',
374
+ 'resolution',
375
+ 'publication',
376
+ 'relations',
377
+ 'photography',
378
+ 'components',
379
+ 'assistance',
380
+ 'completed',
381
+ 'organizations',
382
+ 'otherwise',
383
+ 'transportation',
384
+ 'disclaimer',
385
+ 'membership',
386
+ 'recommended',
387
+ 'background',
388
+ 'character',
389
+ 'maintenance',
390
+ 'functions',
391
+ 'trademarks',
392
+ 'phentermine',
393
+ 'submitted',
394
+ 'television',
395
+ 'interested',
396
+ 'throughout',
397
+ 'established',
398
+ 'programming',
399
+ 'regarding',
400
+ 'instructions',
401
+ 'increased',
402
+ 'understanding',
403
+ 'beginning',
404
+ 'associates',
405
+ 'instruments',
406
+ 'businesses',
407
+ 'specified',
408
+ 'restaurant',
409
+ 'procedures',
410
+ 'relationship',
411
+ 'traditional',
412
+ 'sometimes',
413
+ 'themselves',
414
+ 'transport',
415
+ 'interesting',
416
+ 'evaluation',
417
+ 'implementation',
418
+ 'galleries',
419
+ 'references',
420
+ 'presented',
421
+ 'literature',
422
+ 'respective',
423
+ 'definition',
424
+ 'secretary',
425
+ 'networking',
426
+ 'australian',
427
+ 'magazines',
428
+ 'francisco',
429
+ 'individuals',
430
+ 'guidelines',
431
+ 'installation',
432
+ 'described',
433
+ 'attention',
434
+ 'difference',
435
+ 'regulations',
436
+ 'certificate',
437
+ 'directions',
438
+ 'documentation',
439
+ 'automotive',
440
+ 'successful',
441
+ 'communities',
442
+ 'situation',
443
+ 'publishing',
444
+ 'emergency',
445
+ 'developing',
446
+ 'determine',
447
+ 'temperature',
448
+ 'announcements',
449
+ 'historical',
450
+ 'ringtones',
451
+ 'difficult',
452
+ 'scientific',
453
+ 'satellite',
454
+ 'particularly',
455
+ 'functional',
456
+ 'monitoring',
457
+ 'architecture',
458
+ 'recommend',
459
+ 'dictionary',
460
+ 'accounting',
461
+ 'manufacturing',
462
+ 'professor',
463
+ 'generally',
464
+ 'continued',
465
+ 'techniques',
466
+ 'permission',
467
+ 'generation',
468
+ 'component',
469
+ 'guarantee',
470
+ 'processes',
471
+ 'interests',
472
+ 'paperback',
473
+ 'classifieds',
474
+ 'supported',
475
+ 'competition',
476
+ 'providers',
477
+ 'characters',
478
+ 'thousands',
479
+ 'apartments',
480
+ 'generated',
481
+ 'administrative',
482
+ 'practices',
483
+ 'reporting',
484
+ 'essential',
485
+ 'affiliate',
486
+ 'immediately',
487
+ 'designated',
488
+ 'integrated',
489
+ 'configuration',
490
+ 'comprehensive',
491
+ 'universal',
492
+ 'presentation',
493
+ 'languages',
494
+ 'compliance',
495
+ 'improvement',
496
+ 'pennsylvania',
497
+ 'challenge',
498
+ 'acceptance',
499
+ 'strategies',
500
+ 'affiliates',
501
+ 'multimedia',
502
+ 'certified',
503
+ 'computing',
504
+ 'interactive',
505
+ 'procedure',
506
+ 'leadership',
507
+ 'religious',
508
+ 'breakfast',
509
+ 'developer',
510
+ 'approximately',
511
+ 'recommendations',
512
+ 'comparison',
513
+ 'automatically',
514
+ 'minnesota',
515
+ 'adventure',
516
+ 'institutions',
517
+ 'assistant',
518
+ 'advertisement',
519
+ 'headlines',
520
+ 'yesterday',
521
+ 'determined',
522
+ 'wholesale',
523
+ 'extension',
524
+ 'statements',
525
+ 'completely',
526
+ 'electrical',
527
+ 'applicable',
528
+ 'manufacturers',
529
+ 'classical',
530
+ 'dedicated',
531
+ 'direction',
532
+ 'basketball',
533
+ 'wisconsin',
534
+ 'personnel',
535
+ 'identified',
536
+ 'professionals',
537
+ 'advantage',
538
+ 'newsletters',
539
+ 'estimated',
540
+ 'anonymous',
541
+ 'miscellaneous',
542
+ 'integration',
543
+ 'interview',
544
+ 'framework',
545
+ 'installed',
546
+ 'massachusetts',
547
+ 'associate',
548
+ 'frequently',
549
+ 'discussions',
550
+ 'laboratory',
551
+ 'destination',
552
+ 'intelligence',
553
+ 'specifications',
554
+ 'tripadvisor',
555
+ 'residential',
556
+ 'decisions',
557
+ 'industries',
558
+ 'partnership',
559
+ 'editorial',
560
+ 'expression',
561
+ 'provisions',
562
+ 'principles',
563
+ 'suggestions',
564
+ 'replacement',
565
+ 'strategic',
566
+ 'economics',
567
+ 'compatible',
568
+ 'apartment',
569
+ 'netherlands',
570
+ 'consulting',
571
+ 'recreation',
572
+ 'participants',
573
+ 'favorites',
574
+ 'translation',
575
+ 'estimates',
576
+ 'protected',
577
+ 'philadelphia',
578
+ 'officials',
579
+ 'contained',
580
+ 'legislation',
581
+ 'parameters',
582
+ 'relationships',
583
+ 'tennessee',
584
+ 'representative',
585
+ 'frequency',
586
+ 'introduced',
587
+ 'departments',
588
+ 'residents',
589
+ 'displayed',
590
+ 'performed',
591
+ 'administrator',
592
+ 'addresses',
593
+ 'permanent',
594
+ 'agriculture',
595
+ 'constitutes',
596
+ 'portfolio',
597
+ 'practical',
598
+ 'delivered',
599
+ 'collectibles',
600
+ 'infrastructure',
601
+ 'exclusive',
602
+ 'originally',
603
+ 'utilities',
604
+ 'philosophy',
605
+ 'regulation',
606
+ 'reduction',
607
+ 'nutrition',
608
+ 'recording',
609
+ 'secondary',
610
+ 'wonderful',
611
+ 'announced',
612
+ 'prevention',
613
+ 'mentioned',
614
+ 'automatic',
615
+ 'healthcare',
616
+ 'maintained',
617
+ 'increasing',
618
+ 'connected',
619
+ 'directors',
620
+ 'participation',
621
+ 'containing',
622
+ 'combination',
623
+ 'amendment',
624
+ 'guaranteed',
625
+ 'libraries',
626
+ 'distributed',
627
+ 'singapore',
628
+ 'enterprises',
629
+ 'convention',
630
+ 'principal',
631
+ 'certification',
632
+ 'previously',
633
+ 'buildings',
634
+ 'household',
635
+ 'batteries',
636
+ 'positions',
637
+ 'subscription',
638
+ 'contemporary',
639
+ 'panasonic',
640
+ 'permalink',
641
+ 'signature',
642
+ 'provision',
643
+ 'certainly',
644
+ 'newspaper',
645
+ 'liability',
646
+ 'trademark',
647
+ 'trackback',
648
+ 'americans',
649
+ 'promotion',
650
+ 'conversion',
651
+ 'reasonable',
652
+ 'broadband',
653
+ 'influence',
654
+ 'importance',
655
+ 'webmaster',
656
+ 'prescription',
657
+ 'specifically',
658
+ 'represent',
659
+ 'conservation',
660
+ 'louisiana',
661
+ 'javascript',
662
+ 'marketplace',
663
+ 'evolution',
664
+ 'certificates',
665
+ 'objectives',
666
+ 'suggested',
667
+ 'concerned',
668
+ 'structures',
669
+ 'encyclopedia',
670
+ 'continuing',
671
+ 'interracial',
672
+ 'competitive',
673
+ 'suppliers',
674
+ 'preparation',
675
+ 'receiving',
676
+ 'accordance',
677
+ 'discussed',
678
+ 'elizabeth',
679
+ 'reservations',
680
+ 'playstation',
681
+ 'instruction',
682
+ 'annotation',
683
+ 'differences',
684
+ 'establish',
685
+ 'expressed',
686
+ 'paragraph',
687
+ 'mathematics',
688
+ 'compensation',
689
+ 'conducted',
690
+ 'percentage',
691
+ 'mississippi',
692
+ 'requested',
693
+ 'connecticut',
694
+ 'personals',
695
+ 'immediate',
696
+ 'agricultural',
697
+ 'supporting',
698
+ 'collections',
699
+ 'participate',
700
+ 'specialist',
701
+ 'experienced',
702
+ 'investigation',
703
+ 'institution',
704
+ 'searching',
705
+ 'proceedings',
706
+ 'transmission',
707
+ 'characteristics',
708
+ 'experiences',
709
+ 'extremely',
710
+ 'verzeichnis',
711
+ 'contracts',
712
+ 'concerning',
713
+ 'developers',
714
+ 'equivalent',
715
+ 'chemistry',
716
+ 'neighborhood',
717
+ 'variables',
718
+ 'continues',
719
+ 'curriculum',
720
+ 'psychology',
721
+ 'responses',
722
+ 'circumstances',
723
+ 'identification',
724
+ 'appliances',
725
+ 'elementary',
726
+ 'unlimited',
727
+ 'printable',
728
+ 'enforcement',
729
+ 'hardcover',
730
+ 'celebrity',
731
+ 'chocolate',
732
+ 'hampshire',
733
+ 'bluetooth',
734
+ 'controlled',
735
+ 'requirement',
736
+ 'authorities',
737
+ 'representatives',
738
+ 'pregnancy',
739
+ 'biography',
740
+ 'attractions',
741
+ 'transactions',
742
+ 'authorized',
743
+ 'retirement',
744
+ 'financing',
745
+ 'efficiency',
746
+ 'efficient',
747
+ 'commitment',
748
+ 'specialty',
749
+ 'interviews',
750
+ 'qualified',
751
+ 'discovery',
752
+ 'classified',
753
+ 'confidence',
754
+ 'lifestyle',
755
+ 'consistent',
756
+ 'clearance',
757
+ 'connections',
758
+ 'inventory',
759
+ 'converter',
760
+ 'organisation',
761
+ 'objective',
762
+ 'indicated',
763
+ 'securities',
764
+ 'volunteer',
765
+ 'democratic',
766
+ 'switzerland',
767
+ 'parameter',
768
+ 'processor',
769
+ 'dimensions',
770
+ 'contribute',
771
+ 'challenges',
772
+ 'recognition',
773
+ 'submission',
774
+ 'encourage',
775
+ 'regulatory',
776
+ 'inspection',
777
+ 'consumers',
778
+ 'territory',
779
+ 'transaction',
780
+ 'manchester',
781
+ 'contributions',
782
+ 'continuous',
783
+ 'resulting',
784
+ 'cambridge',
785
+ 'initiative',
786
+ 'execution',
787
+ 'disability',
788
+ 'increases',
789
+ 'contractor',
790
+ 'examination',
791
+ 'indicates',
792
+ 'committed',
793
+ 'extensive',
794
+ 'affordable',
795
+ 'candidate',
796
+ 'databases',
797
+ 'outstanding',
798
+ 'perspective',
799
+ 'messenger',
800
+ 'tournament',
801
+ 'consideration',
802
+ 'discounts',
803
+ 'catalogue',
804
+ 'publishers',
805
+ 'caribbean',
806
+ 'reservation',
807
+ 'remaining',
808
+ 'depending',
809
+ 'expansion',
810
+ 'purchased',
811
+ 'performing',
812
+ 'collected',
813
+ 'absolutely',
814
+ 'featuring',
815
+ 'implement',
816
+ 'scheduled',
817
+ 'calculator',
818
+ 'significantly',
819
+ 'temporary',
820
+ 'sufficient',
821
+ 'awareness',
822
+ 'vancouver',
823
+ 'contribution',
824
+ 'measurement',
825
+ 'constitution',
826
+ 'packaging',
827
+ 'consultation',
828
+ 'northwest',
829
+ 'classroom',
830
+ 'democracy',
831
+ 'wallpaper',
832
+ 'merchandise',
833
+ 'resistance',
834
+ 'baltimore',
835
+ 'candidates',
836
+ 'charlotte',
837
+ 'biological',
838
+ 'transition',
839
+ 'preferences',
840
+ 'instrument',
841
+ 'classification',
842
+ 'physician',
843
+ 'hollywood',
844
+ 'wikipedia',
845
+ 'spiritual',
846
+ 'photographs',
847
+ 'relatively',
848
+ 'satisfaction',
849
+ 'represents',
850
+ 'pittsburgh',
851
+ 'preferred',
852
+ 'intellectual',
853
+ 'comfortable',
854
+ 'interaction',
855
+ 'listening',
856
+ 'effectively',
857
+ 'experimental',
858
+ 'revolution',
859
+ 'consolidation',
860
+ 'landscape',
861
+ 'dependent',
862
+ 'mechanical',
863
+ 'consultants',
864
+ 'applicant',
865
+ 'cooperation',
866
+ 'acquisition',
867
+ 'implemented',
868
+ 'directories',
869
+ 'recognized',
870
+ 'notification',
871
+ 'licensing',
872
+ 'textbooks',
873
+ 'diversity',
874
+ 'cleveland',
875
+ 'investments',
876
+ 'accessibility',
877
+ 'sensitive',
878
+ 'templates',
879
+ 'completion',
880
+ 'universities',
881
+ 'technique',
882
+ 'contractors',
883
+ 'subscriptions',
884
+ 'calculate',
885
+ 'alexander',
886
+ 'broadcast',
887
+ 'converted',
888
+ 'anniversary',
889
+ 'improvements',
890
+ 'specification',
891
+ 'accessible',
892
+ 'accessory',
893
+ 'typically',
894
+ 'representation',
895
+ 'arrangements',
896
+ 'conferences',
897
+ 'uniprotkb',
898
+ 'consumption',
899
+ 'birmingham',
900
+ 'afternoon',
901
+ 'consultant',
902
+ 'controller',
903
+ 'ownership',
904
+ 'committees',
905
+ 'legislative',
906
+ 'researchers',
907
+ 'unsubscribe',
908
+ 'molecular',
909
+ 'residence',
910
+ 'attorneys',
911
+ 'operators',
912
+ 'sustainable',
913
+ 'philippines',
914
+ 'statistical',
915
+ 'innovation',
916
+ 'employers',
917
+ 'definitions',
918
+ 'elections',
919
+ 'stainless',
920
+ 'newspapers',
921
+ 'hospitals',
922
+ 'exception',
923
+ 'successfully',
924
+ 'indonesia',
925
+ 'primarily',
926
+ 'capabilities',
927
+ 'recommendation',
928
+ 'recruitment',
929
+ 'organized',
930
+ 'improving',
931
+ 'expensive',
932
+ 'organisations',
933
+ 'explained',
934
+ 'programmes',
935
+ 'expertise',
936
+ 'mechanism',
937
+ 'jewellery',
938
+ 'eventually',
939
+ 'agreements',
940
+ 'considering',
941
+ 'innovative',
942
+ 'conclusion',
943
+ 'disorders',
944
+ 'collaboration',
945
+ 'detection',
946
+ 'formation',
947
+ 'engineers',
948
+ 'proposals',
949
+ 'moderator',
950
+ 'tutorials',
951
+ 'settlement',
952
+ 'collectables',
953
+ 'fantastic',
954
+ 'governments',
955
+ 'purchasing',
956
+ 'appointed',
957
+ 'operational',
958
+ 'corresponding',
959
+ 'descriptions',
960
+ 'determination',
961
+ 'animation',
962
+ 'productions',
963
+ 'telecommunications',
964
+ 'instructor',
965
+ 'approaches',
966
+ 'highlights',
967
+ 'designers',
968
+ 'melbourne',
969
+ 'scientists',
970
+ 'blackjack',
971
+ 'argentina',
972
+ 'possibility',
973
+ 'commissioner',
974
+ 'dangerous',
975
+ 'reliability',
976
+ 'unfortunately',
977
+ 'respectively',
978
+ 'volunteers',
979
+ 'attachment',
980
+ 'appointment',
981
+ 'workshops',
982
+ 'hurricane',
983
+ 'represented',
984
+ 'mortgages',
985
+ 'responsibilities',
986
+ 'carefully',
987
+ 'productivity',
988
+ 'investors',
989
+ 'underground',
990
+ 'diagnosis',
991
+ 'principle',
992
+ 'vacations',
993
+ 'calculated',
994
+ 'appearance',
995
+ 'incorporated',
996
+ 'notebooks',
997
+ 'algorithm',
998
+ 'valentine',
999
+ 'involving',
1000
+ 'investing',
1001
+ 'christopher',
1002
+ 'admission',
1003
+ 'terrorism',
1004
+ 'parliament',
1005
+ 'situations',
1006
+ 'allocated',
1007
+ 'corrections',
1008
+ 'structural',
1009
+ 'municipal',
1010
+ 'describes',
1011
+ 'disabilities',
1012
+ 'substance',
1013
+ 'prohibited',
1014
+ 'addressed',
1015
+ 'simulation',
1016
+ 'initiatives',
1017
+ 'concentration',
1018
+ 'interpretation',
1019
+ 'bankruptcy',
1020
+ 'optimization',
1021
+ 'substances',
1022
+ 'discovered',
1023
+ 'restrictions',
1024
+ 'participating',
1025
+ 'exhibition',
1026
+ 'composition',
1027
+ 'nationwide',
1028
+ 'definitely',
1029
+ 'existence',
1030
+ 'commentary',
1031
+ 'limousines',
1032
+ 'developments',
1033
+ 'immigration',
1034
+ 'destinations',
1035
+ 'necessarily',
1036
+ 'attribute',
1037
+ 'apparently',
1038
+ 'surrounding',
1039
+ 'mountains',
1040
+ 'popularity',
1041
+ 'postposted',
1042
+ 'coordinator',
1043
+ 'obviously',
1044
+ 'fundamental',
1045
+ 'substantial',
1046
+ 'progressive',
1047
+ 'championship',
1048
+ 'sacramento',
1049
+ 'impossible',
1050
+ 'depression',
1051
+ 'testimonials',
1052
+ 'memorabilia',
1053
+ 'cartridge',
1054
+ 'explanation',
1055
+ 'cincinnati',
1056
+ 'subsection',
1057
+ 'electricity',
1058
+ 'permitted',
1059
+ 'workplace',
1060
+ 'confirmed',
1061
+ 'wallpapers',
1062
+ 'infection',
1063
+ 'eligibility',
1064
+ 'involvement',
1065
+ 'placement',
1066
+ 'observations',
1067
+ 'vbulletin',
1068
+ 'subsequent',
1069
+ 'motorcycle',
1070
+ 'disclosure',
1071
+ 'establishment',
1072
+ 'presentations',
1073
+ 'undergraduate',
1074
+ 'occupation',
1075
+ 'donations',
1076
+ 'associations',
1077
+ 'citysearch',
1078
+ 'radiation',
1079
+ 'seriously',
1080
+ 'elsewhere',
1081
+ 'pollution',
1082
+ 'conservative',
1083
+ 'guestbook',
1084
+ 'effectiveness',
1085
+ 'demonstrate',
1086
+ 'atmosphere',
1087
+ 'experiment',
1088
+ 'purchases',
1089
+ 'federation',
1090
+ 'assignment',
1091
+ 'chemicals',
1092
+ 'everybody',
1093
+ 'nashville',
1094
+ 'counseling',
1095
+ 'acceptable',
1096
+ 'satisfied',
1097
+ 'measurements',
1098
+ 'milwaukee',
1099
+ 'medication',
1100
+ 'warehouse',
1101
+ 'shareware',
1102
+ 'violation',
1103
+ 'configure',
1104
+ 'stability',
1105
+ 'southwest',
1106
+ 'institutional',
1107
+ 'expectations',
1108
+ 'independence',
1109
+ 'metabolism',
1110
+ 'personally',
1111
+ 'excellence',
1112
+ 'somewhere',
1113
+ 'attributes',
1114
+ 'recognize',
1115
+ 'screening',
1116
+ 'thumbnail',
1117
+ 'forgotten',
1118
+ 'intelligent',
1119
+ 'edinburgh',
1120
+ 'obligation',
1121
+ 'regardless',
1122
+ 'restricted',
1123
+ 'republican',
1124
+ 'merchants',
1125
+ 'attendance',
1126
+ 'arguments',
1127
+ 'amsterdam',
1128
+ 'adventures',
1129
+ 'announcement',
1130
+ 'appreciate',
1131
+ 'regularly',
1132
+ 'mechanisms',
1133
+ 'customize',
1134
+ 'tradition',
1135
+ 'indicators',
1136
+ 'emissions',
1137
+ 'physicians',
1138
+ 'complaint',
1139
+ 'experiments',
1140
+ 'afghanistan',
1141
+ 'scholarship',
1142
+ 'governance',
1143
+ 'supplements',
1144
+ 'camcorder',
1145
+ 'implementing',
1146
+ 'ourselves',
1147
+ 'conversation',
1148
+ 'capability',
1149
+ 'producing',
1150
+ 'precision',
1151
+ 'contributed',
1152
+ 'reproduction',
1153
+ 'ingredients',
1154
+ 'franchise',
1155
+ 'complaints',
1156
+ 'promotions',
1157
+ 'rehabilitation',
1158
+ 'maintaining',
1159
+ 'environments',
1160
+ 'reception',
1161
+ 'correctly',
1162
+ 'consequences',
1163
+ 'geography',
1164
+ 'appearing',
1165
+ 'integrity',
1166
+ 'discrimination',
1167
+ 'processed',
1168
+ 'implications',
1169
+ 'functionality',
1170
+ 'intermediate',
1171
+ 'emotional',
1172
+ 'platforms',
1173
+ 'overnight',
1174
+ 'geographic',
1175
+ 'preliminary',
1176
+ 'districts',
1177
+ 'introduce',
1178
+ 'promotional',
1179
+ 'chevrolet',
1180
+ 'specialists',
1181
+ 'generator',
1182
+ 'suspension',
1183
+ 'correction',
1184
+ 'authentication',
1185
+ 'communicate',
1186
+ 'supplement',
1187
+ 'showtimes',
1188
+ 'promoting',
1189
+ 'machinery',
1190
+ 'bandwidth',
1191
+ 'probability',
1192
+ 'dimension',
1193
+ 'schedules',
1194
+ 'admissions',
1195
+ 'quarterly',
1196
+ 'illustrated',
1197
+ 'continental',
1198
+ 'alternate',
1199
+ 'achievement',
1200
+ 'limitations',
1201
+ 'automated',
1202
+ 'passenger',
1203
+ 'convenient',
1204
+ 'orientation',
1205
+ 'childhood',
1206
+ 'flexibility',
1207
+ 'jurisdiction',
1208
+ 'displaying',
1209
+ 'encouraged',
1210
+ 'cartridges',
1211
+ 'declaration',
1212
+ 'automation',
1213
+ 'advantages',
1214
+ 'preparing',
1215
+ 'recipient',
1216
+ 'extensions',
1217
+ 'athletics',
1218
+ 'southeast',
1219
+ 'alternatives',
1220
+ 'determining',
1221
+ 'personalized',
1222
+ 'conditioning',
1223
+ 'partnerships',
1224
+ 'destruction',
1225
+ 'increasingly',
1226
+ 'migration',
1227
+ 'basically',
1228
+ 'conventional',
1229
+ 'applicants',
1230
+ 'occupational',
1231
+ 'adjustment',
1232
+ 'treatments',
1233
+ 'camcorders',
1234
+ 'difficulty',
1235
+ 'collective',
1236
+ 'coalition',
1237
+ 'enrollment',
1238
+ 'producers',
1239
+ 'collector',
1240
+ 'interfaces',
1241
+ 'advertisers',
1242
+ 'representing',
1243
+ 'observation',
1244
+ 'restoration',
1245
+ 'convenience',
1246
+ 'returning',
1247
+ 'opposition',
1248
+ 'container',
1249
+ 'defendant',
1250
+ 'confirmation',
1251
+ 'supervisor',
1252
+ 'peripherals',
1253
+ 'bestsellers',
1254
+ 'departure',
1255
+ 'minneapolis',
1256
+ 'interactions',
1257
+ 'intervention',
1258
+ 'attraction',
1259
+ 'modification',
1260
+ 'customized',
1261
+ 'understood',
1262
+ 'assurance',
1263
+ 'happening',
1264
+ 'amendments',
1265
+ 'metropolitan',
1266
+ 'compilation',
1267
+ 'verification',
1268
+ 'attractive',
1269
+ 'recordings',
1270
+ 'jefferson',
1271
+ 'gardening',
1272
+ 'obligations',
1273
+ 'orchestra',
1274
+ 'polyphonic',
1275
+ 'outsourcing',
1276
+ 'adjustable',
1277
+ 'allocation',
1278
+ 'discipline',
1279
+ 'demonstrated',
1280
+ 'identifying',
1281
+ 'alphabetical',
1282
+ 'dispatched',
1283
+ 'installing',
1284
+ 'voluntary',
1285
+ 'photographer',
1286
+ 'messaging',
1287
+ 'constructed',
1288
+ 'additions',
1289
+ 'requiring',
1290
+ 'engagement',
1291
+ 'refinance',
1292
+ 'calendars',
1293
+ 'arrangement',
1294
+ 'conclusions',
1295
+ 'bibliography',
1296
+ 'compatibility',
1297
+ 'furthermore',
1298
+ 'cooperative',
1299
+ 'measuring',
1300
+ 'jacksonville',
1301
+ 'headquarters',
1302
+ 'transfers',
1303
+ 'transformation',
1304
+ 'attachments',
1305
+ 'administrators',
1306
+ 'personality',
1307
+ 'facilitate',
1308
+ 'subscriber',
1309
+ 'priorities',
1310
+ 'bookstore',
1311
+ 'parenting',
1312
+ 'incredible',
1313
+ 'commonwealth',
1314
+ 'pharmaceutical',
1315
+ 'manhattan',
1316
+ 'workforce',
1317
+ 'organizational',
1318
+ 'portuguese',
1319
+ 'everywhere',
1320
+ 'discharge',
1321
+ 'halloween',
1322
+ 'hazardous',
1323
+ 'methodology',
1324
+ 'housewares',
1325
+ 'reputation',
1326
+ 'resistant',
1327
+ 'democrats',
1328
+ 'recycling',
1329
+ 'qualifications',
1330
+ 'slideshow',
1331
+ 'variation',
1332
+ 'transferred',
1333
+ 'photograph',
1334
+ 'distributor',
1335
+ 'underlying',
1336
+ 'wrestling',
1337
+ 'photoshop',
1338
+ 'gathering',
1339
+ 'projection',
1340
+ 'mathematical',
1341
+ 'specialized',
1342
+ 'diagnostic',
1343
+ 'indianapolis',
1344
+ 'corporations',
1345
+ 'criticism',
1346
+ 'automobile',
1347
+ 'confidential',
1348
+ 'statutory',
1349
+ 'accommodations',
1350
+ 'northeast',
1351
+ 'downloaded',
1352
+ 'paintings',
1353
+ 'injection',
1354
+ 'yorkshire',
1355
+ 'populations',
1356
+ 'protective',
1357
+ 'initially',
1358
+ 'indicator',
1359
+ 'eliminate',
1360
+ 'sunglasses',
1361
+ 'preference',
1362
+ 'threshold',
1363
+ 'venezuela',
1364
+ 'exploration',
1365
+ 'sequences',
1366
+ 'astronomy',
1367
+ 'translate',
1368
+ 'announces',
1369
+ 'compression',
1370
+ 'establishing',
1371
+ 'constitutional',
1372
+ 'perfectly',
1373
+ 'instantly',
1374
+ 'litigation',
1375
+ 'submissions',
1376
+ 'broadcasting',
1377
+ 'horizontal',
1378
+ 'terrorist',
1379
+ 'informational',
1380
+ 'ecommerce',
1381
+ 'suffering',
1382
+ 'prospective',
1383
+ 'ultimately',
1384
+ 'artificial',
1385
+ 'spectacular',
1386
+ 'coordination',
1387
+ 'connector',
1388
+ 'affiliated',
1389
+ 'activation',
1390
+ 'naturally',
1391
+ 'subscribers',
1392
+ 'mitsubishi',
1393
+ 'underwear',
1394
+ 'potentially',
1395
+ 'constraints',
1396
+ 'inclusive',
1397
+ 'dimensional',
1398
+ 'considerable',
1399
+ 'selecting',
1400
+ 'processors',
1401
+ 'pantyhose',
1402
+ 'difficulties',
1403
+ 'complexity',
1404
+ 'constantly',
1405
+ 'barcelona',
1406
+ 'presidential',
1407
+ 'documentary',
1408
+ 'territories',
1409
+ 'palestinian',
1410
+ 'legislature',
1411
+ 'hospitality',
1412
+ 'procurement',
1413
+ 'theoretical',
1414
+ 'exercises',
1415
+ 'surveillance',
1416
+ 'protocols',
1417
+ 'highlight',
1418
+ 'substitute',
1419
+ 'inclusion',
1420
+ 'hopefully',
1421
+ 'brilliant',
1422
+ 'evaluated',
1423
+ 'assignments',
1424
+ 'termination',
1425
+ 'households',
1426
+ 'authentic',
1427
+ 'montgomery',
1428
+ 'architectural',
1429
+ 'louisville',
1430
+ 'macintosh',
1431
+ 'movements',
1432
+ 'amenities',
1433
+ 'virtually',
1434
+ 'authorization',
1435
+ 'projector',
1436
+ 'comparative',
1437
+ 'psychological',
1438
+ 'surprised',
1439
+ 'genealogy',
1440
+ 'expenditure',
1441
+ 'liverpool',
1442
+ 'connectivity',
1443
+ 'algorithms',
1444
+ 'similarly',
1445
+ 'collaborative',
1446
+ 'excluding',
1447
+ 'commander',
1448
+ 'suggestion',
1449
+ 'spotlight',
1450
+ 'investigate',
1451
+ 'connecting',
1452
+ 'logistics',
1453
+ 'proportion',
1454
+ 'significance',
1455
+ 'symposium',
1456
+ 'essentials',
1457
+ 'protecting',
1458
+ 'transmitted',
1459
+ 'screenshots',
1460
+ 'intensive',
1461
+ 'switching',
1462
+ 'correspondence',
1463
+ 'supervision',
1464
+ 'expenditures',
1465
+ 'separation',
1466
+ 'testimony',
1467
+ 'celebrities',
1468
+ 'mandatory',
1469
+ 'boundaries',
1470
+ 'syndication',
1471
+ 'celebration',
1472
+ 'filtering',
1473
+ 'luxembourg',
1474
+ 'offensive',
1475
+ 'deployment',
1476
+ 'colleagues',
1477
+ 'separated',
1478
+ 'directive',
1479
+ 'governing',
1480
+ 'retailers',
1481
+ 'occasionally',
1482
+ 'attending',
1483
+ 'recruiting',
1484
+ 'instructional',
1485
+ 'traveling',
1486
+ 'permissions',
1487
+ 'biotechnology',
1488
+ 'prescribed',
1489
+ 'catherine',
1490
+ 'reproduced',
1491
+ 'calculation',
1492
+ 'consolidated',
1493
+ 'occasions',
1494
+ 'equations',
1495
+ 'exceptional',
1496
+ 'respondents',
1497
+ 'considerations',
1498
+ 'queensland',
1499
+ 'musicians',
1500
+ 'composite',
1501
+ 'unavailable',
1502
+ 'essentially',
1503
+ 'designing',
1504
+ 'assessments',
1505
+ 'brunswick',
1506
+ 'sensitivity',
1507
+ 'preservation',
1508
+ 'streaming',
1509
+ 'intensity',
1510
+ 'technological',
1511
+ 'syndicate',
1512
+ 'antivirus',
1513
+ 'addressing',
1514
+ 'discounted',
1515
+ 'bangladesh',
1516
+ 'constitute',
1517
+ 'concluded',
1518
+ 'desperate',
1519
+ 'demonstration',
1520
+ 'governmental',
1521
+ 'manufactured',
1522
+ 'graduation',
1523
+ 'variations',
1524
+ 'addiction',
1525
+ 'springfield',
1526
+ 'synthesis',
1527
+ 'undefined',
1528
+ 'unemployment',
1529
+ 'enhancement',
1530
+ 'newcastle',
1531
+ 'performances',
1532
+ 'societies',
1533
+ 'brazilian',
1534
+ 'identical',
1535
+ 'petroleum',
1536
+ 'norwegian',
1537
+ 'retention',
1538
+ 'exchanges',
1539
+ 'soundtrack',
1540
+ 'wondering',
1541
+ 'profession',
1542
+ 'separately',
1543
+ 'physiology',
1544
+ 'collecting',
1545
+ 'participant',
1546
+ 'scholarships',
1547
+ 'recreational',
1548
+ 'dominican',
1549
+ 'friendship',
1550
+ 'expanding',
1551
+ 'provincial',
1552
+ 'investigations',
1553
+ 'medications',
1554
+ 'rochester',
1555
+ 'advertiser',
1556
+ 'encryption',
1557
+ 'downloadable',
1558
+ 'sophisticated',
1559
+ 'possession',
1560
+ 'laboratories',
1561
+ 'vegetables',
1562
+ 'thumbnails',
1563
+ 'stockings',
1564
+ 'respondent',
1565
+ 'destroyed',
1566
+ 'manufacture',
1567
+ 'wordpress',
1568
+ 'vulnerability',
1569
+ 'accountability',
1570
+ 'celebrate',
1571
+ 'accredited',
1572
+ 'appliance',
1573
+ 'compressed',
1574
+ 'scheduling',
1575
+ 'perspectives',
1576
+ 'mortality',
1577
+ 'christians',
1578
+ 'therapeutic',
1579
+ 'impressive',
1580
+ 'accordingly',
1581
+ 'architect',
1582
+ 'challenging',
1583
+ 'microwave',
1584
+ 'accidents',
1585
+ 'relocation',
1586
+ 'contributors',
1587
+ 'violations',
1588
+ 'temperatures',
1589
+ 'competitions',
1590
+ 'discretion',
1591
+ 'cosmetics',
1592
+ 'repository',
1593
+ 'concentrations',
1594
+ 'christianity',
1595
+ 'negotiations',
1596
+ 'realistic',
1597
+ 'generating',
1598
+ 'christina',
1599
+ 'congressional',
1600
+ 'photographic',
1601
+ 'modifications',
1602
+ 'millennium',
1603
+ 'achieving',
1604
+ 'fisheries',
1605
+ 'exceptions',
1606
+ 'reactions',
1607
+ 'macromedia',
1608
+ 'companion',
1609
+ 'divisions',
1610
+ 'additionally',
1611
+ 'fellowship',
1612
+ 'victorian',
1613
+ 'copyrights',
1614
+ 'lithuania',
1615
+ 'mastercard',
1616
+ 'chronicles',
1617
+ 'obtaining',
1618
+ 'distribute',
1619
+ 'decorative',
1620
+ 'enlargement',
1621
+ 'campaigns',
1622
+ 'conjunction',
1623
+ 'instances',
1624
+ 'indigenous',
1625
+ 'validation',
1626
+ 'corruption',
1627
+ 'incentives',
1628
+ 'cholesterol',
1629
+ 'differential',
1630
+ 'scientist',
1631
+ 'starsmerchant',
1632
+ 'arthritis',
1633
+ 'nevertheless',
1634
+ 'practitioners',
1635
+ 'transcript',
1636
+ 'inflation',
1637
+ 'compounds',
1638
+ 'contracting',
1639
+ 'structured',
1640
+ 'reasonably',
1641
+ 'graduates',
1642
+ 'recommends',
1643
+ 'controlling',
1644
+ 'distributors',
1645
+ 'arlington',
1646
+ 'particles',
1647
+ 'extraordinary',
1648
+ 'indicating',
1649
+ 'coordinate',
1650
+ 'exclusively',
1651
+ 'limitation',
1652
+ 'widescreen',
1653
+ 'illustration',
1654
+ 'construct',
1655
+ 'inquiries',
1656
+ 'inspiration',
1657
+ 'affecting',
1658
+ 'downloading',
1659
+ 'aggregate',
1660
+ 'forecasts',
1661
+ 'complicated',
1662
+ 'shopzilla',
1663
+ 'decorating',
1664
+ 'expressions',
1665
+ 'shakespeare',
1666
+ 'connectors',
1667
+ 'conflicts',
1668
+ 'travelers',
1669
+ 'offerings',
1670
+ 'incorrect',
1671
+ 'furnishings',
1672
+ 'guatemala',
1673
+ 'perception',
1674
+ 'renaissance',
1675
+ 'pathology',
1676
+ 'ordinance',
1677
+ 'photographers',
1678
+ 'infections',
1679
+ 'configured',
1680
+ 'festivals',
1681
+ 'possibilities',
1682
+ 'contributing',
1683
+ 'analytical',
1684
+ 'circulation',
1685
+ 'assumption',
1686
+ 'jerusalem',
1687
+ 'transexuales',
1688
+ 'invention',
1689
+ 'technician',
1690
+ 'executives',
1691
+ 'enquiries',
1692
+ 'cognitive',
1693
+ 'exploring',
1694
+ 'registrar',
1695
+ 'supporters',
1696
+ 'withdrawal',
1697
+ 'predicted',
1698
+ 'saskatchewan',
1699
+ 'cancellation',
1700
+ 'ministers',
1701
+ 'veterinary',
1702
+ 'prostores',
1703
+ 'relevance',
1704
+ 'incentive',
1705
+ 'butterfly',
1706
+ 'mechanics',
1707
+ 'numerical',
1708
+ 'reflection',
1709
+ 'accompanied',
1710
+ 'invitation',
1711
+ 'princeton',
1712
+ 'spirituality',
1713
+ 'meanwhile',
1714
+ 'proprietary',
1715
+ 'childrens',
1716
+ 'thumbzilla',
1717
+ 'porcelain',
1718
+ 'pichunter',
1719
+ 'translated',
1720
+ 'columnists',
1721
+ 'consensus',
1722
+ 'delivering',
1723
+ 'journalism',
1724
+ 'intention',
1725
+ 'undertaken',
1726
+ 'statewide',
1727
+ 'semiconductor',
1728
+ 'illustrations',
1729
+ 'happiness',
1730
+ 'substantially',
1731
+ 'identifier',
1732
+ 'calculations',
1733
+ 'conducting',
1734
+ 'accomplished',
1735
+ 'calculators',
1736
+ 'impression',
1737
+ 'correlation',
1738
+ 'fragrance',
1739
+ 'neighbors',
1740
+ 'transparent',
1741
+ 'charleston',
1742
+ 'champions',
1743
+ 'selections',
1744
+ 'projectors',
1745
+ 'inappropriate',
1746
+ 'comparing',
1747
+ 'vocational',
1748
+ 'pharmacies',
1749
+ 'introducing',
1750
+ 'appreciated',
1751
+ 'albuquerque',
1752
+ 'distinguished',
1753
+ 'projected',
1754
+ 'assumptions',
1755
+ 'shareholders',
1756
+ 'developmental',
1757
+ 'regulated',
1758
+ 'anticipated',
1759
+ 'completing',
1760
+ 'comparable',
1761
+ 'confusion',
1762
+ 'copyrighted',
1763
+ 'warranties',
1764
+ 'documented',
1765
+ 'paperbacks',
1766
+ 'keyboards',
1767
+ 'vulnerable',
1768
+ 'reflected',
1769
+ 'respiratory',
1770
+ 'notifications',
1771
+ 'transexual',
1772
+ 'mainstream',
1773
+ 'evaluating',
1774
+ 'subcommittee',
1775
+ 'maternity',
1776
+ 'journalists',
1777
+ 'foundations',
1778
+ 'volleyball',
1779
+ 'liabilities',
1780
+ 'decreased',
1781
+ 'tolerance',
1782
+ 'creativity',
1783
+ 'describing',
1784
+ 'lightning',
1785
+ 'quotations',
1786
+ 'inspector',
1787
+ 'bookmarks',
1788
+ 'behavioral',
1789
+ 'riverside',
1790
+ 'bathrooms',
1791
+ 'abilities',
1792
+ 'initiated',
1793
+ 'nonprofit',
1794
+ 'lancaster',
1795
+ 'suspended',
1796
+ 'containers',
1797
+ 'attitudes',
1798
+ 'simultaneously',
1799
+ 'integrate',
1800
+ 'sociology',
1801
+ 'screenshot',
1802
+ 'exhibitions',
1803
+ 'confident',
1804
+ 'retrieved',
1805
+ 'officially',
1806
+ 'consortium',
1807
+ 'recipients',
1808
+ 'delicious',
1809
+ 'traditions',
1810
+ 'periodically',
1811
+ 'hungarian',
1812
+ 'referring',
1813
+ 'transform',
1814
+ 'educators',
1815
+ 'vegetable',
1816
+ 'humanities',
1817
+ 'independently',
1818
+ 'alignment',
1819
+ 'henderson',
1820
+ 'britannica',
1821
+ 'competitors',
1822
+ 'visibility',
1823
+ 'consciousness',
1824
+ 'encounter',
1825
+ 'resolutions',
1826
+ 'accessing',
1827
+ 'attempted',
1828
+ 'witnesses',
1829
+ 'administered',
1830
+ 'strengthen',
1831
+ 'frederick',
1832
+ 'aggressive',
1833
+ 'advertisements',
1834
+ 'sublimedirectory',
1835
+ 'disturbed',
1836
+ 'determines',
1837
+ 'sculpture',
1838
+ 'motivation',
1839
+ 'pharmacology',
1840
+ 'passengers',
1841
+ 'quantities',
1842
+ 'petersburg',
1843
+ 'consistently',
1844
+ 'powerpoint',
1845
+ 'obituaries',
1846
+ 'punishment',
1847
+ 'appreciation',
1848
+ 'subsequently',
1849
+ 'providence',
1850
+ 'restriction',
1851
+ 'incorporate',
1852
+ 'backgrounds',
1853
+ 'treasurer',
1854
+ 'lightweight',
1855
+ 'transcription',
1856
+ 'complications',
1857
+ 'scripting',
1858
+ 'remembered',
1859
+ 'synthetic',
1860
+ 'testament',
1861
+ 'specifics',
1862
+ 'partially',
1863
+ 'wilderness',
1864
+ 'generations',
1865
+ 'tournaments',
1866
+ 'sponsorship',
1867
+ 'headphones',
1868
+ 'proceeding',
1869
+ 'volkswagen',
1870
+ 'uncertainty',
1871
+ 'breakdown',
1872
+ 'reconstruction',
1873
+ 'subsidiary',
1874
+ 'strengths',
1875
+ 'encouraging',
1876
+ 'furnished',
1877
+ 'terrorists',
1878
+ 'comparisons',
1879
+ 'beneficial',
1880
+ 'distributions',
1881
+ 'viewpicture',
1882
+ 'threatened',
1883
+ 'republicans',
1884
+ 'discusses',
1885
+ 'responded',
1886
+ 'abstracts',
1887
+ 'prediction',
1888
+ 'pharmaceuticals',
1889
+ 'thesaurus',
1890
+ 'individually',
1891
+ 'battlefield',
1892
+ 'literally',
1893
+ 'ecological',
1894
+ 'appraisal',
1895
+ 'consisting',
1896
+ 'submitting',
1897
+ 'citations',
1898
+ 'geographical',
1899
+ 'mozambique',
1900
+ 'disclaimers',
1901
+ 'championships',
1902
+ 'sheffield',
1903
+ 'finishing',
1904
+ 'wellington',
1905
+ 'prospects',
1906
+ 'bulgarian',
1907
+ 'aboriginal',
1908
+ 'remarkable',
1909
+ 'preventing',
1910
+ 'productive',
1911
+ 'boulevard',
1912
+ 'compliant',
1913
+ 'penalties',
1914
+ 'imagination',
1915
+ 'refurbished',
1916
+ 'activated',
1917
+ 'conferencing',
1918
+ 'armstrong',
1919
+ 'politicians',
1920
+ 'trackbacks',
1921
+ 'accommodate',
1922
+ 'christine',
1923
+ 'accepting',
1924
+ 'precipitation',
1925
+ 'isolation',
1926
+ 'sustained',
1927
+ 'approximate',
1928
+ 'programmer',
1929
+ 'greetings',
1930
+ 'inherited',
1931
+ 'incomplete',
1932
+ 'chronicle',
1933
+ 'legitimate',
1934
+ 'biographies',
1935
+ 'investigator',
1936
+ 'plaintiff',
1937
+ 'prisoners',
1938
+ 'mediterranean',
1939
+ 'nightlife',
1940
+ 'architects',
1941
+ 'entrepreneur',
1942
+ 'freelance',
1943
+ 'excessive',
1944
+ 'screensaver',
1945
+ 'valuation',
1946
+ 'unexpected',
1947
+ 'cigarette',
1948
+ 'characteristic',
1949
+ 'metallica',
1950
+ 'consequently',
1951
+ 'appointments',
1952
+ 'narrative',
1953
+ 'academics',
1954
+ 'quantitative',
1955
+ 'screensavers',
1956
+ 'subdivision',
1957
+ 'distinction',
1958
+ 'livestock',
1959
+ 'exemption',
1960
+ 'sustainability',
1961
+ 'formatting',
1962
+ 'nutritional',
1963
+ 'nicaragua',
1964
+ 'affiliation',
1965
+ 'relatives',
1966
+ 'satisfactory',
1967
+ 'revolutionary',
1968
+ 'bracelets',
1969
+ 'telephony',
1970
+ 'breathing',
1971
+ 'thickness',
1972
+ 'adjustments',
1973
+ 'graphical',
1974
+ 'discussing',
1975
+ 'aerospace',
1976
+ 'meaningful',
1977
+ 'maintains',
1978
+ 'shortcuts',
1979
+ 'voyeurweb',
1980
+ 'extending',
1981
+ 'specifies',
1982
+ 'accreditation',
1983
+ 'blackberry',
1984
+ 'meditation',
1985
+ 'microphone',
1986
+ 'macedonia',
1987
+ 'combining',
1988
+ 'instrumental',
1989
+ 'organizing',
1990
+ 'moderators',
1991
+ 'kazakhstan',
1992
+ 'standings',
1993
+ 'partition',
1994
+ 'invisible',
1995
+ 'translations',
1996
+ 'commodity',
1997
+ 'kilometers',
1998
+ 'thanksgiving',
1999
+ 'guarantees',
2000
+ 'indication',
2001
+ 'congratulations',
2002
+ 'cigarettes',
2003
+ 'controllers',
2004
+ 'consultancy',
2005
+ 'conventions',
2006
+ 'coordinates',
2007
+ 'responding',
2008
+ 'physically',
2009
+ 'stakeholders',
2010
+ 'hydrocodone',
2011
+ 'consecutive',
2012
+ 'attempting',
2013
+ 'representations',
2014
+ 'competing',
2015
+ 'peninsula',
2016
+ 'accurately',
2017
+ 'considers',
2018
+ 'ministries',
2019
+ 'vacancies',
2020
+ 'parliamentary',
2021
+ 'acknowledge',
2022
+ 'thoroughly',
2023
+ 'nottingham',
2024
+ 'identifies',
2025
+ 'questionnaire',
2026
+ 'qualification',
2027
+ 'modelling',
2028
+ 'miniature',
2029
+ 'interstate',
2030
+ 'consequence',
2031
+ 'systematic',
2032
+ 'perceived',
2033
+ 'madagascar',
2034
+ 'presenting',
2035
+ 'troubleshooting',
2036
+ 'uzbekistan',
2037
+ 'centuries',
2038
+ 'magnitude',
2039
+ 'richardson',
2040
+ 'fragrances',
2041
+ 'vocabulary',
2042
+ 'earthquake',
2043
+ 'fundraising',
2044
+ 'geological',
2045
+ 'assessing',
2046
+ 'introduces',
2047
+ 'webmasters',
2048
+ 'computational',
2049
+ 'acdbentity',
2050
+ 'participated',
2051
+ 'handhelds',
2052
+ 'answering',
2053
+ 'impressed',
2054
+ 'conspiracy',
2055
+ 'organizer',
2056
+ 'combinations',
2057
+ 'preceding',
2058
+ 'cumulative',
2059
+ 'amplifier',
2060
+ 'arbitrary',
2061
+ 'prominent',
2062
+ 'lexington',
2063
+ 'contacted',
2064
+ 'recorders',
2065
+ 'occasional',
2066
+ 'innovations',
2067
+ 'postcards',
2068
+ 'reviewing',
2069
+ 'explicitly',
2070
+ 'transsexual',
2071
+ 'citizenship',
2072
+ 'informative',
2073
+ 'girlfriend',
2074
+ 'bloomberg',
2075
+ 'hierarchy',
2076
+ 'influenced',
2077
+ 'abandoned',
2078
+ 'complement',
2079
+ 'mauritius',
2080
+ 'checklist',
2081
+ 'requesting',
2082
+ 'lauderdale',
2083
+ 'scenarios',
2084
+ 'extraction',
2085
+ 'elevation',
2086
+ 'utilization',
2087
+ 'beverages',
2088
+ 'calibration',
2089
+ 'efficiently',
2090
+ 'entertaining',
2091
+ 'prerequisite',
2092
+ 'hypothesis',
2093
+ 'medicines',
2094
+ 'regression',
2095
+ 'enhancements',
2096
+ 'renewable',
2097
+ 'intersection',
2098
+ 'passwords',
2099
+ 'consistency',
2100
+ 'collectors',
2101
+ 'azerbaijan',
2102
+ 'astrology',
2103
+ 'occurring',
2104
+ 'supplemental',
2105
+ 'travelling',
2106
+ 'induction',
2107
+ 'precisely',
2108
+ 'spreading',
2109
+ 'provinces',
2110
+ 'widespread',
2111
+ 'incidence',
2112
+ 'incidents',
2113
+ 'enhancing',
2114
+ 'interference',
2115
+ 'palestine',
2116
+ 'listprice',
2117
+ 'atmospheric',
2118
+ 'knowledgestorm',
2119
+ 'referenced',
2120
+ 'publicity',
2121
+ 'proposition',
2122
+ 'allowance',
2123
+ 'designation',
2124
+ 'duplicate',
2125
+ 'criterion',
2126
+ 'civilization',
2127
+ 'vietnamese',
2128
+ 'tremendous',
2129
+ 'corrected',
2130
+ 'encountered',
2131
+ 'internationally',
2132
+ 'surrounded',
2133
+ 'creatures',
2134
+ 'commented',
2135
+ 'accomplish',
2136
+ 'vegetarian',
2137
+ 'newfoundland',
2138
+ 'investigated',
2139
+ 'ambassador',
2140
+ 'stephanie',
2141
+ 'contacting',
2142
+ 'vegetation',
2143
+ 'findarticles',
2144
+ 'specially',
2145
+ 'infectious',
2146
+ 'continuity',
2147
+ 'phenomenon',
2148
+ 'conscious',
2149
+ 'referrals',
2150
+ 'differently',
2151
+ 'integrating',
2152
+ 'revisions',
2153
+ 'reasoning',
2154
+ 'charitable',
2155
+ 'annotated',
2156
+ 'convinced',
2157
+ 'burlington',
2158
+ 'replacing',
2159
+ 'researcher',
2160
+ 'watershed',
2161
+ 'occupations',
2162
+ 'acknowledged',
2163
+ 'equilibrium',
2164
+ 'characterized',
2165
+ 'privilege',
2166
+ 'qualifying',
2167
+ 'estimation',
2168
+ 'pediatric',
2169
+ 'techrepublic',
2170
+ 'institutes',
2171
+ 'brochures',
2172
+ 'traveller',
2173
+ 'appropriations',
2174
+ 'suspected',
2175
+ 'benchmark',
2176
+ 'beginners',
2177
+ 'instructors',
2178
+ 'highlighted',
2179
+ 'stationery',
2180
+ 'unauthorized',
2181
+ 'competent',
2182
+ 'contributor',
2183
+ 'demonstrates',
2184
+ 'gradually',
2185
+ 'desirable',
2186
+ 'journalist',
2187
+ 'afterwards',
2188
+ 'religions',
2189
+ 'explosion',
2190
+ 'signatures',
2191
+ 'disciplines',
2192
+ 'daughters',
2193
+ 'conversations',
2194
+ 'simplified',
2195
+ 'motherboard',
2196
+ 'bibliographic',
2197
+ 'champagne',
2198
+ 'deviation',
2199
+ 'superintendent',
2200
+ 'housewives',
2201
+ 'influences',
2202
+ 'inspections',
2203
+ 'irrigation',
2204
+ 'hydraulic',
2205
+ 'robertson',
2206
+ 'penetration',
2207
+ 'conviction',
2208
+ 'omissions',
2209
+ 'retrieval',
2210
+ 'qualities',
2211
+ 'prototype',
2212
+ 'importantly',
2213
+ 'apparatus',
2214
+ 'explaining',
2215
+ 'nomination',
2216
+ 'empirical',
2217
+ 'dependence',
2218
+ 'sexuality',
2219
+ 'polyester',
2220
+ 'commitments',
2221
+ 'suggesting',
2222
+ 'remainder',
2223
+ 'privileges',
2224
+ 'televisions',
2225
+ 'specializing',
2226
+ 'commodities',
2227
+ 'motorcycles',
2228
+ 'concentrate',
2229
+ 'reproductive',
2230
+ 'molecules',
2231
+ 'refrigerator',
2232
+ 'intervals',
2233
+ 'sentences',
2234
+ 'exclusion',
2235
+ 'workstation',
2236
+ 'holocaust',
2237
+ 'receivers',
2238
+ 'disposition',
2239
+ 'navigator',
2240
+ 'investigators',
2241
+ 'marijuana',
2242
+ 'cathedral',
2243
+ 'fairfield',
2244
+ 'fascinating',
2245
+ 'landscapes',
2246
+ 'lafayette',
2247
+ 'computation',
2248
+ 'cardiovascular',
2249
+ 'salvation',
2250
+ 'predictions',
2251
+ 'accompanying',
2252
+ 'selective',
2253
+ 'arbitration',
2254
+ 'configuring',
2255
+ 'editorials',
2256
+ 'sacrifice',
2257
+ 'removable',
2258
+ 'convergence',
2259
+ 'gibraltar',
2260
+ 'anthropology',
2261
+ 'malpractice',
2262
+ 'reporters',
2263
+ 'necessity',
2264
+ 'rendering',
2265
+ 'hepatitis',
2266
+ 'nationally',
2267
+ 'waterproof',
2268
+ 'specialties',
2269
+ 'humanitarian',
2270
+ 'invitations',
2271
+ 'functioning',
2272
+ 'economies',
2273
+ 'alexandria',
2274
+ 'bacterial',
2275
+ 'undertake',
2276
+ 'continuously',
2277
+ 'achievements',
2278
+ 'convertible',
2279
+ 'secretariat',
2280
+ 'paragraphs',
2281
+ 'adolescent',
2282
+ 'nominations',
2283
+ 'cancelled',
2284
+ 'introductory',
2285
+ 'reservoir',
2286
+ 'occurrence',
2287
+ 'worcester',
2288
+ 'demographic',
2289
+ 'disciplinary',
2290
+ 'respected',
2291
+ 'portraits',
2292
+ 'interpreted',
2293
+ 'evaluations',
2294
+ 'elimination',
2295
+ 'hypothetical',
2296
+ 'immigrants',
2297
+ 'complimentary',
2298
+ 'helicopter',
2299
+ 'performer',
2300
+ 'commissions',
2301
+ 'powerseller',
2302
+ 'graduated',
2303
+ 'surprising',
2304
+ 'unnecessary',
2305
+ 'dramatically',
2306
+ 'yugoslavia',
2307
+ 'characterization',
2308
+ 'likelihood',
2309
+ 'fundamentals',
2310
+ 'contamination',
2311
+ 'endangered',
2312
+ 'compromise',
2313
+ 'expiration',
2314
+ 'namespace',
2315
+ 'peripheral',
2316
+ 'negotiation',
2317
+ 'opponents',
2318
+ 'nominated',
2319
+ 'confidentiality',
2320
+ 'electoral',
2321
+ 'changelog',
2322
+ 'alternatively',
2323
+ 'greensboro',
2324
+ 'controversial',
2325
+ 'recovered',
2326
+ 'upgrading',
2327
+ 'frontpage',
2328
+ 'demanding',
2329
+ 'defensive',
2330
+ 'forbidden',
2331
+ 'programmers',
2332
+ 'monitored',
2333
+ 'installations',
2334
+ 'deutschland',
2335
+ 'practitioner',
2336
+ 'motivated',
2337
+ 'smithsonian',
2338
+ 'examining',
2339
+ 'revelation',
2340
+ 'delegation',
2341
+ 'dictionaries',
2342
+ 'greenhouse',
2343
+ 'transparency',
2344
+ 'currencies',
2345
+ 'survivors',
2346
+ 'positioning',
2347
+ 'descending',
2348
+ 'temporarily',
2349
+ 'frequencies',
2350
+ 'reflections',
2351
+ 'municipality',
2352
+ 'detective',
2353
+ 'experiencing',
2354
+ 'fireplace',
2355
+ 'endorsement',
2356
+ 'psychiatry',
2357
+ 'persistent',
2358
+ 'summaries',
2359
+ 'looksmart',
2360
+ 'magnificent',
2361
+ 'colleague',
2362
+ 'adaptation',
2363
+ 'paintball',
2364
+ 'enclosure',
2365
+ 'supervisors',
2366
+ 'westminster',
2367
+ 'distances',
2368
+ 'absorption',
2369
+ 'treasures',
2370
+ 'transcripts',
2371
+ 'disappointed',
2372
+ 'continually',
2373
+ 'communist',
2374
+ 'collectible',
2375
+ 'entrepreneurs',
2376
+ 'creations',
2377
+ 'acquisitions',
2378
+ 'biodiversity',
2379
+ 'excitement',
2380
+ 'presently',
2381
+ 'mysterious',
2382
+ 'librarian',
2383
+ 'subsidiaries',
2384
+ 'stockholm',
2385
+ 'indonesian',
2386
+ 'therapist',
2387
+ 'promising',
2388
+ 'relaxation',
2389
+ 'thereafter',
2390
+ 'commissioners',
2391
+ 'forwarding',
2392
+ 'nightmare',
2393
+ 'reductions',
2394
+ 'southampton',
2395
+ 'organisms',
2396
+ 'telescope',
2397
+ 'portsmouth',
2398
+ 'advancement',
2399
+ 'harassment',
2400
+ 'generators',
2401
+ 'generates',
2402
+ 'replication',
2403
+ 'inexpensive',
2404
+ 'receptors',
2405
+ 'interventions',
2406
+ 'huntington',
2407
+ 'internship',
2408
+ 'aluminium',
2409
+ 'snowboard',
2410
+ 'beastality',
2411
+ 'evanescence',
2412
+ 'coordinated',
2413
+ 'shipments',
2414
+ 'antarctica',
2415
+ 'chancellor',
2416
+ 'controversy',
2417
+ 'legendary',
2418
+ 'beautifully',
2419
+ 'antibodies',
2420
+ 'examinations',
2421
+ 'immunology',
2422
+ 'departmental',
2423
+ 'terminology',
2424
+ 'gentleman',
2425
+ 'reproduce',
2426
+ 'convicted',
2427
+ 'roommates',
2428
+ 'threatening',
2429
+ 'spokesman',
2430
+ 'activists',
2431
+ 'frankfurt',
2432
+ 'encourages',
2433
+ 'assembled',
2434
+ 'restructuring',
2435
+ 'terminals',
2436
+ 'simulations',
2437
+ 'sufficiently',
2438
+ 'conditional',
2439
+ 'crossword',
2440
+ 'conceptual',
2441
+ 'liechtenstein',
2442
+ 'translator',
2443
+ 'automobiles',
2444
+ 'continent',
2445
+ 'longitude',
2446
+ 'challenged',
2447
+ 'telecharger',
2448
+ 'insertion',
2449
+ 'instrumentation',
2450
+ 'constraint',
2451
+ 'groundwater',
2452
+ 'strengthening',
2453
+ 'insulation',
2454
+ 'infringement',
2455
+ 'subjective',
2456
+ 'swaziland',
2457
+ 'varieties',
2458
+ 'mediawiki',
2459
+ 'configurations',
2460
+ ];
2461
+ //# sourceMappingURL=index.js.map