@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
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @atlaskit/editor-plugin-autocomplete
2
2
 
3
+ ## 4.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [`041d093c4919a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/041d093c4919a) -
8
+ MDP-15978 fix pm-plugins/data/\* not copied to dist, breaking consumers not on local consumption
9
+ - Updated dependencies
10
+
11
+ ## 4.0.6
12
+
13
+ ### Patch Changes
14
+
15
+ - [`c2986ab2c7a01`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c2986ab2c7a01) -
16
+ Cleans up prefer static regex violations and enables e18e rule
17
+ - Updated dependencies
18
+
3
19
  ## 4.0.5
4
20
 
5
21
  ### Patch Changes
package/compass.yml ADDED
@@ -0,0 +1,41 @@
1
+ configVersion: 1
2
+ id: ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:component/c5751cc6-3513-4070-9deb-af31e86aed34/45ef6a6c-98b8-4615-940d-e9013db36999
3
+ name: '@atlaskit/editor-plugin-autocomplete'
4
+ ownerId: ari:cloud:identity::team/0250ee69-f755-47fd-a468-bf8a9d10a3c5 # Editor AI
5
+ labels:
6
+ - platform-code
7
+ - platform-afm
8
+ typeId: OTHER
9
+ fields:
10
+ tier: 4
11
+ lifecycle: Active
12
+ isMonorepoProject: true
13
+ links:
14
+ - name: Root Repository
15
+ type: REPOSITORY
16
+ url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master
17
+ - name: Slack Channel
18
+ type: CHAT_CHANNEL
19
+ url: https://atlassian.enterprise.slack.com/archives/CFG3PSQ9E # #help-editor
20
+ - name: Editor Plugin Autocomplete
21
+ type: REPOSITORY
22
+ url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/editor/editor-plugin-autocomplete
23
+ customFields:
24
+ - name: Department
25
+ type: text
26
+ value: Eng - Editor AI
27
+ - name: Trusted Reviewer Teams
28
+ type: text
29
+ value: ari:cloud:identity::team/cf6a670b-5252-4c68-a769-9207de366beb
30
+ - name: Technical Owner
31
+ type: user
32
+ value: ari:cloud:identity::user/612646c53fe26c00694fbe6a # Chris Kimber
33
+ - name: Required Reviewers Opt In
34
+ type: boolean
35
+ value: true
36
+ - name: Reviewer Selection Mechanism
37
+ type: text
38
+ value: random(2)
39
+ - name: Required Reviewer Approvals
40
+ type: number
41
+ value: 1
@@ -196,6 +196,8 @@ var buildSlowLaneText = function buildSlowLaneText(docText, context) {
196
196
  var createMidWordCharacterRegex = function createMidWordCharacterRegex() {
197
197
  try {
198
198
  // string-built regex avoids TS1501 under the package's ES5 build target
199
+ // Ignored via go/ees019
200
+ // eslint-disable-next-line e18e/prefer-static-regex
199
201
  return new RegExp('[\\p{L}\\p{N}_]', 'u');
200
202
  } catch (_unused) {
201
203
  return null;