bfg-common 1.4.258 → 1.4.260

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.
@@ -2209,6 +2209,7 @@
2209
2209
  "resetToDefault": "Скінуць да стандартных",
2210
2210
  "theValueTooLarge": "Значэнне можа быць занадта вялікім",
2211
2211
  "theValueTooSmall": "Значэнне можа быць занадта малым",
2212
+ "theValueLargeThanStartTime": "Значэнне павінна быць больш, чым час пачатку",
2212
2213
  "closed": "Закрыты"
2213
2214
  },
2214
2215
  "auth": {
@@ -2213,6 +2213,7 @@
2213
2213
  "resetToDefault": "Reset To Default",
2214
2214
  "theValueTooLarge": "The value may be too large",
2215
2215
  "theValueTooSmall": "The value may be too small",
2216
+ "theValueLargeThanStartTime": "The value should be large than start time",
2216
2217
  "closed": "Closed"
2217
2218
  },
2218
2219
  "auth": {
@@ -2213,6 +2213,7 @@
2213
2213
  "resetToDefault": "Վերականգնել լռելյայնին",
2214
2214
  "theValueTooLarge": "Արժեքը կարող է չափազանց մեծ լինել",
2215
2215
  "theValueTooSmall": "Արժեքը կարող է չափազանց փոքր լինել",
2216
+ "theValueLargeThanStartTime": "Արժեքը պետք է մեծ լինի, քան մեկնարկի ժամանակը",
2216
2217
  "closed": "Փակված է"
2217
2218
  },
2218
2219
  "auth": {
@@ -2212,6 +2212,7 @@
2212
2212
  "resetToDefault": "Әдепкіге қайта орнату",
2213
2213
  "theValueTooLarge": "Мән тым үлкен болуы мүмкін",
2214
2214
  "theValueTooSmall": "Мән тым аз болуы мүмкін",
2215
+ "theValueLargeThanStartTime": "Мән басталу уақытынан үлкен болуы керек",
2215
2216
  "closed": "Жабық"
2216
2217
  },
2217
2218
  "auth": {
@@ -2215,6 +2215,7 @@
2215
2215
  "resetToDefault": "Сбросить настройки по умолчанию",
2216
2216
  "theValueTooLarge": "Значение может быть слишком большим",
2217
2217
  "theValueTooSmall": "Значение может быть слишком маленьким",
2218
+ "theValueLargeThanStartTime": "Значение должно быть больше времени начала.",
2218
2219
  "closed": "Закрыто"
2219
2220
  },
2220
2221
  "auth": {
@@ -2211,6 +2211,7 @@
2211
2211
  "resetToDefault": "重置为默认值",
2212
2212
  "theValueTooLarge": "该值可能太大",
2213
2213
  "theValueTooSmall": "该值可能太小",
2214
+ "theValueLargeThanStartTime": "该值应该大于开始时间",
2214
2215
  "closed": "关闭"
2215
2216
  },
2216
2217
  "auth": {
@@ -56,11 +56,11 @@ const schedulerEndDateErrorText = computed<string>(() => {
56
56
  : ''
57
57
  })
58
58
  watch(
59
- schedulerEndDateErrorText,
60
- (newValue: string) => {
61
- modelFrequencyLocal.value.isValid = !!newValue
62
- },
63
- { immediate: true }
59
+ [schedulerEndDateErrorText, selectedFrequencyEndMode],
60
+ ([newValue1, newValue2]: [string, 'never' | 'on']) => {
61
+ modelFrequencyLocal.value.isValid =
62
+ newValue2 === 'never' ? false : !!newValue1
63
+ }
64
64
  )
65
65
  </script>
66
66
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.258",
4
+ "version": "1.4.260",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",