tpmkms_4wp 9.5.1-beta.30 → 9.5.1-beta.32
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/common/avatar.test.json +1001 -860
- package/common/concept.js +19 -22
- package/common/dateTimeSelectors.test.json +95954 -55427
- package/common/dimension.instance.json +21348 -552
- package/common/dimension.js +52 -27
- package/common/dimension.test.json +6699 -222
- package/common/{tank.instance.json → drone.instance.json} +13078 -4251
- package/common/{tank.js → drone.js} +47 -26
- package/common/{tank.test.json → drone.test.json} +3467 -2778
- package/common/fastfood.instance.json +681 -201
- package/common/helpers.js +2 -1
- package/common/hierarchy.js +2 -1
- package/common/kirk.test.json +600 -424
- package/common/length.instance.json +19329 -2521
- package/common/length.js +3 -1
- package/common/length.test.json +13943 -339
- package/common/meta.js +1 -0
- package/common/nameable.js +13 -6
- package/common/nameable.test.json +436 -0
- package/common/pressure.instance.json +2745 -745
- package/common/reminders.test.json +57841 -19033
- package/common/reports.instance.json +2 -2
- package/common/spock.test.json +606 -430
- package/common/stm.js +13 -2
- package/common/temperature.instance.json +3377 -1377
- package/common/time.instance.json +6248 -1748
- package/common/weight.instance.json +9577 -3577
- package/main.js +2 -2
- package/package.json +6 -6
package/common/length.js
CHANGED
|
@@ -7,7 +7,9 @@ const length_instance = require('./length.instance.json')
|
|
|
7
7
|
const template = {
|
|
8
8
|
configs: [
|
|
9
9
|
"length is a dimension",
|
|
10
|
-
"meter centimeter foot mile and inch are units of length",
|
|
10
|
+
"meter centimeter millimeter foot mile and inch are units of length",
|
|
11
|
+
"meters, centimeters and millimeters are metric units",
|
|
12
|
+
"feet and inches are imperial units",
|
|
11
13
|
"meters = centimeters / 100",
|
|
12
14
|
"centimeters = meters * 100",
|
|
13
15
|
"centimeters = millimeters / 10",
|