bfg-common 1.5.896 → 1.5.897
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/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/New.vue +2 -2
- package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/Old.vue +2 -2
- package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/TaskForm.vue +2 -2
- package/package.json +1 -1
- /package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/models/interfaces.ts +0 -0
- /package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/utils.ts +0 -0
package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/New.vue
RENAMED
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
13
13
|
import type { UI_I_SelectInputItem } from '~/components/common/select/input/lib/models/interfaces'
|
|
14
14
|
import type { UI_I_ScheduleNewTasksForm } from '~/components/common/pages/scheduledTasks/modals/lib/models/interfaces'
|
|
15
|
-
import type { UI_I_InitialValidationFields } from '~/components/common/pages/scheduledTasks/modals/common/
|
|
15
|
+
import type { UI_I_InitialValidationFields } from '~/components/common/pages/scheduledTasks/modals/common/taskForm/lib/models/interfaces'
|
|
16
16
|
import type { UI_T_FrequencyType } from '~/components/common/pages/scheduledTasks/modals/common/frequency/lib/models/types'
|
|
17
|
-
import * as cron from '~/components/common/pages/scheduledTasks/modals/common/
|
|
17
|
+
import * as cron from '~/components/common/pages/scheduledTasks/modals/common/taskForm/lib/utils'
|
|
18
18
|
import { frequencyMethodFunc } from '~/components/common/pages/scheduledTasks/modals/common/frequency/lib/config/frequencyOptions'
|
|
19
19
|
|
|
20
20
|
const props = defineProps<{
|
package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/Old.vue
RENAMED
|
@@ -101,9 +101,9 @@
|
|
|
101
101
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
102
102
|
import type { UI_I_SelectInputItem } from '~/components/common/select/input/lib/models/interfaces'
|
|
103
103
|
import type { UI_I_ScheduleNewTasksForm } from '~/components/common/pages/scheduledTasks/modals/lib/models/interfaces'
|
|
104
|
-
import type { UI_I_InitialValidationFields } from '~/components/common/pages/scheduledTasks/modals/common/
|
|
104
|
+
import type { UI_I_InitialValidationFields } from '~/components/common/pages/scheduledTasks/modals/common/taskForm/lib/models/interfaces'
|
|
105
105
|
import type { UI_T_FrequencyType } from '~/components/common/pages/scheduledTasks/modals/common/frequency/lib/models/types'
|
|
106
|
-
import * as cron from '~/components/common/pages/scheduledTasks/modals/common/
|
|
106
|
+
import * as cron from '~/components/common/pages/scheduledTasks/modals/common/taskForm/lib/utils'
|
|
107
107
|
import { frequencyMethodFunc } from '~/components/common/pages/scheduledTasks/modals/common/frequency/lib/config/frequencyOptions'
|
|
108
108
|
|
|
109
109
|
const props = defineProps<{
|
package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/TaskForm.vue
RENAMED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
11
11
|
import type { UI_I_SelectInputItem } from '~/components/common/select/input/lib/models/interfaces'
|
|
12
12
|
import type { UI_I_ScheduleNewTasksForm } from '~/components/common/pages/scheduledTasks/modals/lib/models/interfaces'
|
|
13
|
-
import type { UI_I_InitialValidationFields } from '~/components/common/pages/scheduledTasks/modals/common/
|
|
13
|
+
import type { UI_I_InitialValidationFields } from '~/components/common/pages/scheduledTasks/modals/common/taskForm/lib/models/interfaces'
|
|
14
14
|
import type { UI_T_FrequencyType } from '~/components/common/pages/scheduledTasks/modals/common/frequency/lib/models/types'
|
|
15
|
-
import * as cron from '~/components/common/pages/scheduledTasks/modals/common/
|
|
15
|
+
import * as cron from '~/components/common/pages/scheduledTasks/modals/common/taskForm/lib/utils'
|
|
16
16
|
import { frequencyMethodFunc } from '~/components/common/pages/scheduledTasks/modals/common/frequency/lib/config/frequencyOptions'
|
|
17
17
|
|
|
18
18
|
const scheduledTaskFormModel = defineModel<UI_I_ScheduleNewTasksForm>({
|
package/package.json
CHANGED
|
File without changes
|
/package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/utils.ts
RENAMED
|
File without changes
|