ekms 9.4.5-beta.1 → 9.4.5-beta.10

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 (37) hide show
  1. package/common/animals.instance.json +40 -280
  2. package/common/colors.instance.json +99 -299
  3. package/common/comparable.instance.json +42 -10
  4. package/common/crew.instance.json +653 -1017
  5. package/common/crew.js +0 -15
  6. package/common/dimension.instance.json +2 -2
  7. package/common/dimension.js +1 -1
  8. package/common/edible.instance.json +261 -661
  9. package/common/fastfood.instance.json +4767 -3215
  10. package/common/fastfood.js +1 -0
  11. package/common/gdefaults.js +34 -2
  12. package/common/helpers/concept.js +2 -1
  13. package/common/helpers/dialogues.js +2 -1
  14. package/common/kirk.instance.json +3 -23
  15. package/common/latin.instance.json +472 -1
  16. package/common/latin.js +142 -22
  17. package/common/latin.test.json +5325 -0
  18. package/common/latin_helpers.js +358 -0
  19. package/common/length.instance.json +128 -384
  20. package/common/menus.instance.json +21 -61
  21. package/common/people.instance.json +128 -96
  22. package/common/pipboy.instance.json +86 -312
  23. package/common/pipboy.js +2 -1
  24. package/common/pipboy.test.json +1690 -0
  25. package/common/pokemon.instance.json +351 -103
  26. package/common/pos.js +39 -34
  27. package/common/pressure.instance.json +32 -124
  28. package/common/properties.js +0 -16
  29. package/common/reminders.test.json +2702 -2786
  30. package/common/reports.instance.json +2 -2
  31. package/common/spock.instance.json +3 -23
  32. package/common/temperature.instance.json +40 -196
  33. package/common/tokenize.js +16 -4
  34. package/common/weight.instance.json +241 -301
  35. package/common/wp.instance.json +357 -327
  36. package/common/wp.js +23 -4
  37. package/package.json +3 -2
package/common/wp.js CHANGED
@@ -243,10 +243,27 @@ template = {
243
243
  ],
244
244
  associations: {
245
245
  positive: [
246
- { context: [["bold_wp", 0], ["the", 0], ["ordinal", 0], ["word_wp", 0], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
247
- { context: [["bold_wp", 1], ["the", 0], ["ordinal", 0], ["word_wp", 0], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
248
- { context: [["bold_wp", 1], ["the", 0], ["ordinal", 1], ["word_wp", 0], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
249
- { context: [["bold_wp", 1], ["the", 0], ["ordinal", 1], ["word_wp", 1], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
246
+ { context: [["style_wp", 0], ["the", 0], ["ordinal", 0], ["word_wp", 0], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
247
+ { context: [["style_wp", 1], ["the", 0], ["ordinal", 0], ["word_wp", 0], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
248
+ { context: [["style_wp", 1], ["the", 0], ["ordinal", 1], ["word_wp", 0], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
249
+ {
250
+ context: [
251
+ ["style_wp", 1], ["the", 0], ["ordinal", 1], ["word_wp", 1], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]
252
+ ],
253
+ choose: { index: 0, increment: true }
254
+ },
255
+
256
+ {
257
+ context: [['underline_wp', 0], ['article', 0], ['word_wp', 0], ['statefulElementInContext_wp', 0], ['the', 0], ['ordinal', 0], ['paragraph_wp', 0]],
258
+ choose: { index: 0, increment: true },
259
+ },
260
+
261
+ {
262
+ context: [['underline_wp', 0], ['article', 0], ['word_wp', 0], ['statefulElementInContext_wp', 0], ['the', 0], ['ordinal', 1], ['paragraph_wp', 0]],
263
+ choose: { index: 0, increment: true },
264
+ },
265
+
266
+ { context: [["style_wp", 1], ["the", 0], ["ordinal", 1], ["word_wp", 1], ["statefulElementInContext_wp", 0], ["the", 0], ["ordinal", 0], ["list", 0], ["ordinal", 0], ["paragraph_wp", 0]], choose: { index: 0, increment: true } },
250
267
 
251
268
  { context: [["word_wp",1],["thatVerb",0],["wordComparison_wp",0],["unknown",0]], choose: 0 },
252
269
  { context: [["paragraph_wp",1],["thatVerb",0],["paragraphComparisonVerb_wp",0],["unknown",0]], choose: 0 },
@@ -259,6 +276,8 @@ template = {
259
276
  { context: [["article",0],["statefulElement_wp",0]], choose: 1 },
260
277
  { context: [["article",0],["statefulElement_wp",1]], choose: 1 },
261
278
  { context: [["article",0],["ordinal", 0],["statefulElement_wp",0]], choose: 2 },
279
+
280
+ { context: [["styleModifier_wp",0],["statefulElement_wp",0]], choose: 1 },
262
281
  ]
263
282
  },
264
283
 
package/package.json CHANGED
@@ -238,6 +238,7 @@
238
238
  "common/latin.instance.json",
239
239
  "common/latin.js",
240
240
  "common/latin.test.json",
241
+ "common/latin_helpers.js",
241
242
  "common/length.instance.json",
242
243
  "common/length.js",
243
244
  "common/length.test.json",
@@ -351,8 +352,8 @@
351
352
  "scriptjs": "^2.5.9",
352
353
  "table": "^6.7.1",
353
354
  "uuid": "^9.0.0",
354
- "theprogrammablemind": "9.4.5-beta.1"
355
+ "theprogrammablemind": "9.4.5-beta.10"
355
356
  },
356
- "version": "9.4.5-beta.1",
357
+ "version": "9.4.5-beta.10",
357
358
  "license": "UNLICENSED"
358
359
  }