tpmkms_4wp 9.3.0-beta.45 → 9.3.0-beta.47
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/colors.instance.json +0 -28
- package/common/dateTimeSelectors.instance.json +37 -3
- package/common/dateTimeSelectors.js +42 -1
- package/common/dateTimeSelectors.test.json +10746 -0
- package/common/dates.instance.json +41 -84
- package/common/dates.js +9 -0
- package/common/dates.test.json +1796 -0
- package/common/edible.instance.json +0 -56
- package/common/fastfood.instance.json +164 -252
- package/common/helpers/dateTimeSelectors.js +59 -10
- package/common/people.instance.json +36 -0
- package/common/pipboy.instance.json +0 -56
- package/common/reminders.js +2 -0
- package/common/reports.instance.json +1 -1
- package/common/wp.instance.json +0 -56
- package/package.json +2 -2
@@ -13,6 +13,7 @@
|
|
13
13
|
"([era_dates|])",
|
14
14
|
"([date_dates|])",
|
15
15
|
"([dateEra_dates] (date_dates/*) (era_dates/*))",
|
16
|
+
"([monthDay_dates] (month_dates/*) (dayNumber_dates/*))",
|
16
17
|
"([monthYear_dates] (month_dates/*) (yearNumber_dates/*))",
|
17
18
|
"([monthDayYear_dates] (month_dates/*) (dayNumber_dates/*) (yearNumber_dates/*))",
|
18
19
|
"([monthDayYearWithSlashes_dates] (monthNumber_dates/*) (dateSeparator_dates/*) (dayNumber_dates/*) (dateSeparator_dates/*) (yearNumber_dates/*))",
|
@@ -121,6 +122,23 @@
|
|
121
122
|
],
|
122
123
|
"bridge": "{ ...next(operator) }"
|
123
124
|
},
|
125
|
+
{
|
126
|
+
"id": "monthDay_dates",
|
127
|
+
"convolution": true,
|
128
|
+
"localHierarchy": [
|
129
|
+
[
|
130
|
+
"ordinal",
|
131
|
+
"dayNumber_dates"
|
132
|
+
]
|
133
|
+
],
|
134
|
+
"before": [
|
135
|
+
"preposition"
|
136
|
+
],
|
137
|
+
"isA": [
|
138
|
+
"date_dates"
|
139
|
+
],
|
140
|
+
"bridge": "{ ...next(operator), month: after[0], day: after[1], interpolate: '${month} ${day}' }"
|
141
|
+
},
|
124
142
|
{
|
125
143
|
"id": "monthYear_dates",
|
126
144
|
"convolution": true,
|
@@ -3242,20 +3260,6 @@
|
|
3242
3260
|
0
|
3243
3261
|
]
|
3244
3262
|
],
|
3245
|
-
[
|
3246
|
-
[
|
3247
|
-
"is",
|
3248
|
-
0
|
3249
|
-
],
|
3250
|
-
[
|
3251
|
-
"list",
|
3252
|
-
1
|
3253
|
-
],
|
3254
|
-
[
|
3255
|
-
"unknown",
|
3256
|
-
0
|
3257
|
-
]
|
3258
|
-
],
|
3259
3263
|
[
|
3260
3264
|
[
|
3261
3265
|
"is",
|
@@ -11603,20 +11607,6 @@
|
|
11603
11607
|
0
|
11604
11608
|
]
|
11605
11609
|
],
|
11606
|
-
[
|
11607
|
-
[
|
11608
|
-
"is",
|
11609
|
-
0
|
11610
|
-
],
|
11611
|
-
[
|
11612
|
-
"list",
|
11613
|
-
1
|
11614
|
-
],
|
11615
|
-
[
|
11616
|
-
"unknown",
|
11617
|
-
0
|
11618
|
-
]
|
11619
|
-
],
|
11620
11610
|
[
|
11621
11611
|
[
|
11622
11612
|
"is",
|
@@ -15706,20 +15696,6 @@
|
|
15706
15696
|
0
|
15707
15697
|
]
|
15708
15698
|
],
|
15709
|
-
[
|
15710
|
-
[
|
15711
|
-
"is",
|
15712
|
-
0
|
15713
|
-
],
|
15714
|
-
[
|
15715
|
-
"list",
|
15716
|
-
1
|
15717
|
-
],
|
15718
|
-
[
|
15719
|
-
"unknown",
|
15720
|
-
0
|
15721
|
-
]
|
15722
|
-
],
|
15723
15699
|
[
|
15724
15700
|
[
|
15725
15701
|
"is",
|
@@ -16634,6 +16610,7 @@
|
|
16634
16610
|
"([era_dates|])",
|
16635
16611
|
"([date_dates|])",
|
16636
16612
|
"([dateEra_dates] (date_dates/*) (era_dates/*))",
|
16613
|
+
"([monthDay_dates] (month_dates/*) (dayNumber_dates/*))",
|
16637
16614
|
"([monthYear_dates] (month_dates/*) (yearNumber_dates/*))",
|
16638
16615
|
"([monthDayYear_dates] (month_dates/*) (dayNumber_dates/*) (yearNumber_dates/*))",
|
16639
16616
|
"([monthDayYearWithSlashes_dates] (monthNumber_dates/*) (dateSeparator_dates/*) (dayNumber_dates/*) (dateSeparator_dates/*) (yearNumber_dates/*))",
|
@@ -16742,6 +16719,23 @@
|
|
16742
16719
|
],
|
16743
16720
|
"bridge": "{ ...next(operator) }"
|
16744
16721
|
},
|
16722
|
+
{
|
16723
|
+
"id": "monthDay_dates",
|
16724
|
+
"convolution": true,
|
16725
|
+
"localHierarchy": [
|
16726
|
+
[
|
16727
|
+
"ordinal",
|
16728
|
+
"dayNumber_dates"
|
16729
|
+
]
|
16730
|
+
],
|
16731
|
+
"before": [
|
16732
|
+
"preposition"
|
16733
|
+
],
|
16734
|
+
"isA": [
|
16735
|
+
"date_dates"
|
16736
|
+
],
|
16737
|
+
"bridge": "{ ...next(operator), month: after[0], day: after[1], interpolate: '${month} ${day}' }"
|
16738
|
+
},
|
16745
16739
|
{
|
16746
16740
|
"id": "monthYear_dates",
|
16747
16741
|
"convolution": true,
|
@@ -18005,6 +17999,11 @@
|
|
18005
17999
|
"date_dates",
|
18006
18000
|
false
|
18007
18001
|
],
|
18002
|
+
[
|
18003
|
+
"monthDay_dates",
|
18004
|
+
"date_dates",
|
18005
|
+
false
|
18006
|
+
],
|
18008
18007
|
[
|
18009
18008
|
"monthNumber_dates",
|
18010
18009
|
"integer",
|
@@ -18942,48 +18941,6 @@
|
|
18942
18941
|
0
|
18943
18942
|
]
|
18944
18943
|
],
|
18945
|
-
[
|
18946
|
-
[
|
18947
|
-
"is",
|
18948
|
-
0
|
18949
|
-
],
|
18950
|
-
[
|
18951
|
-
"list",
|
18952
|
-
1
|
18953
|
-
],
|
18954
|
-
[
|
18955
|
-
"unknown",
|
18956
|
-
0
|
18957
|
-
]
|
18958
|
-
],
|
18959
|
-
[
|
18960
|
-
[
|
18961
|
-
"is",
|
18962
|
-
0
|
18963
|
-
],
|
18964
|
-
[
|
18965
|
-
"list",
|
18966
|
-
1
|
18967
|
-
],
|
18968
|
-
[
|
18969
|
-
"unknown",
|
18970
|
-
0
|
18971
|
-
]
|
18972
|
-
],
|
18973
|
-
[
|
18974
|
-
[
|
18975
|
-
"is",
|
18976
|
-
0
|
18977
|
-
],
|
18978
|
-
[
|
18979
|
-
"list",
|
18980
|
-
1
|
18981
|
-
],
|
18982
|
-
[
|
18983
|
-
"unknown",
|
18984
|
-
0
|
18985
|
-
]
|
18986
|
-
],
|
18987
18944
|
[
|
18988
18945
|
[
|
18989
18946
|
"setIdSuffix",
|
package/common/dates.js
CHANGED
@@ -37,6 +37,7 @@ const template = {
|
|
37
37
|
"([era_dates|])",
|
38
38
|
"([date_dates|])",
|
39
39
|
"([dateEra_dates] (date_dates/*) (era_dates/*))",
|
40
|
+
"([monthDay_dates] (month_dates/*) (dayNumber_dates/*))",
|
40
41
|
"([monthYear_dates] (month_dates/*) (yearNumber_dates/*))",
|
41
42
|
"([monthDayYear_dates] (month_dates/*) (dayNumber_dates/*) (yearNumber_dates/*))",
|
42
43
|
"([monthDayYearWithSlashes_dates] (monthNumber_dates/*) (dateSeparator_dates/*) (dayNumber_dates/*) (dateSeparator_dates/*) (yearNumber_dates/*))",
|
@@ -108,6 +109,14 @@ const template = {
|
|
108
109
|
isA: ['integer'],
|
109
110
|
bridge: "{ ...next(operator) }"
|
110
111
|
},
|
112
|
+
{
|
113
|
+
id: 'monthDay_dates',
|
114
|
+
convolution: true,
|
115
|
+
localHierarchy: [['ordinal', 'dayNumber_dates']],
|
116
|
+
before: ['preposition'],
|
117
|
+
isA: ['date_dates'],
|
118
|
+
bridge: "{ ...next(operator), month: after[0], day: after[1], interpolate: '${month} ${day}' }"
|
119
|
+
},
|
111
120
|
{
|
112
121
|
id: 'monthYear_dates',
|
113
122
|
convolution: true,
|