@atlaskit/editor-plugin-autocomplete 4.0.5 → 4.0.7

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 (29) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/compass.yml +41 -0
  3. package/dist/cjs/pm-plugins/autocomplete-plugin.js +2 -0
  4. package/dist/cjs/pm-plugins/data/combined_l2_l3_pos_tags.json +73571 -0
  5. package/dist/cjs/pm-plugins/data/first_token_to_words.json +1 -0
  6. package/dist/cjs/pm-plugins/data/ghost_pos_tags.json +43 -0
  7. package/dist/cjs/pm-plugins/data/grammar_transitions_10k.json +46 -0
  8. package/dist/cjs/pm-plugins/data/l3_vocabulary.json +20002 -0
  9. package/dist/cjs/pm-plugins/data/vocabulary_10k.json +38794 -0
  10. package/dist/cjs/pm-plugins/data/word_index_10k.json +7762 -0
  11. package/dist/es2019/pm-plugins/autocomplete-plugin.js +2 -0
  12. package/dist/es2019/pm-plugins/data/combined_l2_l3_pos_tags.json +73571 -0
  13. package/dist/es2019/pm-plugins/data/first_token_to_words.json +1 -0
  14. package/dist/es2019/pm-plugins/data/ghost_pos_tags.json +43 -0
  15. package/dist/es2019/pm-plugins/data/grammar_transitions_10k.json +46 -0
  16. package/dist/es2019/pm-plugins/data/l3_vocabulary.json +20002 -0
  17. package/dist/es2019/pm-plugins/data/vocabulary_10k.json +38794 -0
  18. package/dist/es2019/pm-plugins/data/word_index_10k.json +7762 -0
  19. package/dist/esm/pm-plugins/autocomplete-plugin.js +2 -0
  20. package/dist/esm/pm-plugins/data/combined_l2_l3_pos_tags.json +73571 -0
  21. package/dist/esm/pm-plugins/data/first_token_to_words.json +1 -0
  22. package/dist/esm/pm-plugins/data/ghost_pos_tags.json +43 -0
  23. package/dist/esm/pm-plugins/data/grammar_transitions_10k.json +46 -0
  24. package/dist/esm/pm-plugins/data/l3_vocabulary.json +20002 -0
  25. package/dist/esm/pm-plugins/data/vocabulary_10k.json +38794 -0
  26. package/dist/esm/pm-plugins/data/word_index_10k.json +7762 -0
  27. package/dist/types/pm-plugins/autocomplete-plugin.d.ts +5 -5
  28. package/package.json +8 -11
  29. package/src/pm-plugins/autocomplete-plugin.ts +7 -5
@@ -184,6 +184,8 @@ const buildSlowLaneText = (docText, context) => {
184
184
  const createMidWordCharacterRegex = () => {
185
185
  try {
186
186
  // string-built regex avoids TS1501 under the package's ES5 build target
187
+ // Ignored via go/ees019
188
+ // eslint-disable-next-line e18e/prefer-static-regex
187
189
  return new RegExp('[\\p{L}\\p{N}_]', 'u');
188
190
  } catch {
189
191
  return null;