@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
|
@@ -189,6 +189,8 @@ var buildSlowLaneText = function buildSlowLaneText(docText, context) {
|
|
|
189
189
|
var createMidWordCharacterRegex = function createMidWordCharacterRegex() {
|
|
190
190
|
try {
|
|
191
191
|
// string-built regex avoids TS1501 under the package's ES5 build target
|
|
192
|
+
// Ignored via go/ees019
|
|
193
|
+
// eslint-disable-next-line e18e/prefer-static-regex
|
|
192
194
|
return new RegExp('[\\p{L}\\p{N}_]', 'u');
|
|
193
195
|
} catch (_unused) {
|
|
194
196
|
return null;
|