@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.
- package/CHANGELOG.md +16 -0
- package/compass.yml +41 -0
- package/dist/cjs/pm-plugins/autocomplete-plugin.js +2 -0
- package/dist/cjs/pm-plugins/data/combined_l2_l3_pos_tags.json +73571 -0
- package/dist/cjs/pm-plugins/data/first_token_to_words.json +1 -0
- package/dist/cjs/pm-plugins/data/ghost_pos_tags.json +43 -0
- package/dist/cjs/pm-plugins/data/grammar_transitions_10k.json +46 -0
- package/dist/cjs/pm-plugins/data/l3_vocabulary.json +20002 -0
- package/dist/cjs/pm-plugins/data/vocabulary_10k.json +38794 -0
- package/dist/cjs/pm-plugins/data/word_index_10k.json +7762 -0
- package/dist/es2019/pm-plugins/autocomplete-plugin.js +2 -0
- package/dist/es2019/pm-plugins/data/combined_l2_l3_pos_tags.json +73571 -0
- package/dist/es2019/pm-plugins/data/first_token_to_words.json +1 -0
- package/dist/es2019/pm-plugins/data/ghost_pos_tags.json +43 -0
- package/dist/es2019/pm-plugins/data/grammar_transitions_10k.json +46 -0
- package/dist/es2019/pm-plugins/data/l3_vocabulary.json +20002 -0
- package/dist/es2019/pm-plugins/data/vocabulary_10k.json +38794 -0
- package/dist/es2019/pm-plugins/data/word_index_10k.json +7762 -0
- package/dist/esm/pm-plugins/autocomplete-plugin.js +2 -0
- package/dist/esm/pm-plugins/data/combined_l2_l3_pos_tags.json +73571 -0
- package/dist/esm/pm-plugins/data/first_token_to_words.json +1 -0
- package/dist/esm/pm-plugins/data/ghost_pos_tags.json +43 -0
- package/dist/esm/pm-plugins/data/grammar_transitions_10k.json +46 -0
- package/dist/esm/pm-plugins/data/l3_vocabulary.json +20002 -0
- package/dist/esm/pm-plugins/data/vocabulary_10k.json +38794 -0
- package/dist/esm/pm-plugins/data/word_index_10k.json +7762 -0
- package/dist/types/pm-plugins/autocomplete-plugin.d.ts +5 -5
- package/package.json +8 -11
- 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;
|