tpmkms_4wp 9.3.0-beta.45 → 9.3.0-beta.46

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/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,