@adminforth/background-jobs 1.4.0 → 1.4.1

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/build.log CHANGED
@@ -11,5 +11,5 @@ custom/StateToIcon.vue
11
11
  custom/tsconfig.json
12
12
  custom/utils.ts
13
13
 
14
- sent 12,501 bytes received 134 bytes 25,270.00 bytes/sec
15
- total size is 12,016 speedup is 0.95
14
+ sent 12,535 bytes received 134 bytes 25,338.00 bytes/sec
15
+ total size is 12,050 speedup is 0.95
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="flex flex-col w-full min-w-96">
3
3
  <div class="flex items-center mb-1">
4
- <div class="flex flex-col items-start">
4
+ <div class="flex flex-col items-start justify-end h-12">
5
5
  <h2 class="text-lg font-semibold dark:text-white">{{ job.name }}</h2>
6
6
  <Tooltip>
7
7
  <p class="text-xs text-gray-600 dark:text-gray-200 h-full">{{ t('Created:') }} {{ getTimeAgoString(new Date(job.createdAt)) }}</p>
@@ -10,7 +10,7 @@
10
10
  </template>
11
11
  </Tooltip>
12
12
  </div>
13
- <div class="ml-auto flex flex-col items-start">
13
+ <div class="ml-auto flex flex-col items-start justify-end h-12">
14
14
  <div class="flex items-center">
15
15
  <p class=" text-gray-800 dark:text-white h-full"> {{ t('Progress:') }} <span class="font-semibold" >{{ job.progress }}%</span></p>
16
16
  <StateToIcon :job="job" />
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="flex flex-col w-full min-w-96">
3
3
  <div class="flex items-center mb-1">
4
- <div class="flex flex-col items-start">
4
+ <div class="flex flex-col items-start justify-end h-12">
5
5
  <h2 class="text-lg font-semibold dark:text-white">{{ job.name }}</h2>
6
6
  <Tooltip>
7
7
  <p class="text-xs text-gray-600 dark:text-gray-200 h-full">{{ t('Created:') }} {{ getTimeAgoString(new Date(job.createdAt)) }}</p>
@@ -10,7 +10,7 @@
10
10
  </template>
11
11
  </Tooltip>
12
12
  </div>
13
- <div class="ml-auto flex flex-col items-start">
13
+ <div class="ml-auto flex flex-col items-start justify-end h-12">
14
14
  <div class="flex items-center">
15
15
  <p class=" text-gray-800 dark:text-white h-full"> {{ t('Progress:') }} <span class="font-semibold" >{{ job.progress }}%</span></p>
16
16
  <StateToIcon :job="job" />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/background-jobs",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",