@it-enterprise/forcebpm-ui-kit 1.0.2-beta.35 → 1.0.2-beta.36

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/index.js CHANGED
@@ -8,6 +8,7 @@ import './src/assets/scss/index.scss'
8
8
  export { default as FHtmlContent } from './src/FHtmlContent.vue'
9
9
  export { default as FAvatar } from './src/FAvatar.vue'
10
10
  export { default as FPreLoader } from './src/FPreLoader.vue'
11
+ export { default as FLoader } from './src/FLoader.vue'
11
12
  export { default as FNoData } from './src/FNoData.vue'
12
13
  export { default as FNotify } from './src/FNotify.vue'
13
14
  export { default as FShare } from './src/FShare.vue'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@it-enterprise/forcebpm-ui-kit",
4
- "version": "1.0.2-beta.35",
4
+ "version": "1.0.2-beta.36",
5
5
  "description": "FBPM UI Kit",
6
6
  "author": "it-enterprise",
7
7
  "license": "MIT",
@@ -0,0 +1,75 @@
1
+ <template>
2
+ <!-- FLoader -->
3
+ <div class="f-loader-lds-ellipsis">
4
+ <div></div>
5
+ <div></div>
6
+ <div></div>
7
+ <div></div>
8
+ </div>
9
+ </template>
10
+
11
+ <style lang="scss" scoped>
12
+ .f-loader-lds-ellipsis {
13
+ display: inline-block;
14
+ position: relative;
15
+ width: 80px;
16
+ height: 80px;
17
+ }
18
+
19
+ .f-loader-lds-ellipsis div {
20
+ position: absolute;
21
+ top: 33px;
22
+ width: 13px;
23
+ height: 13px;
24
+ border-radius: 50%;
25
+ background: rgb(var(--v-theme-primary));
26
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
27
+ }
28
+
29
+ .f-loader-lds-ellipsis div:nth-child(1) {
30
+ left: 8px;
31
+ animation: lds-ellipsis1 0.6s infinite;
32
+ }
33
+
34
+ .f-loader-lds-ellipsis div:nth-child(2) {
35
+ left: 8px;
36
+ animation: lds-ellipsis2 0.6s infinite;
37
+ }
38
+
39
+ .f-loader-lds-ellipsis div:nth-child(3) {
40
+ left: 32px;
41
+ animation: lds-ellipsis2 0.6s infinite;
42
+ }
43
+
44
+ .f-loader-lds-ellipsis div:nth-child(4) {
45
+ left: 56px;
46
+ animation: lds-ellipsis3 0.6s infinite;
47
+ }
48
+
49
+ @keyframes lds-ellipsis1 {
50
+ 0% {
51
+ transform: scale(0);
52
+ }
53
+ 100% {
54
+ transform: scale(1);
55
+ }
56
+ }
57
+
58
+ @keyframes lds-ellipsis3 {
59
+ 0% {
60
+ transform: scale(1);
61
+ }
62
+ 100% {
63
+ transform: scale(0);
64
+ }
65
+ }
66
+
67
+ @keyframes lds-ellipsis2 {
68
+ 0% {
69
+ transform: translate(0, 0);
70
+ }
71
+ 100% {
72
+ transform: translate(24px, 0);
73
+ }
74
+ }
75
+ </style>
@@ -1,5 +1,7 @@
1
1
  <script setup>
2
2
  // FPreLoader
3
+ import FLoader from './FLoader.vue'
4
+
3
5
  const props = defineProps({
4
6
  preLoaders: {
5
7
  type: Array,
@@ -13,12 +15,7 @@ const props = defineProps({
13
15
  <div v-if="props.preLoaders.includes('tokenUpdate')" class="text-title">
14
16
  {{ $t('tokenRefresh') }}
15
17
  </div>
16
- <div class="f-preloader-lds-ellipsis">
17
- <div></div>
18
- <div></div>
19
- <div></div>
20
- <div></div>
21
- </div>
18
+ <FLoader />
22
19
  </v-overlay>
23
20
  </template>
24
21
 
@@ -38,68 +35,4 @@ const props = defineProps({
38
35
  justify-content: center;
39
36
  }
40
37
  }
41
-
42
- .f-preloader-lds-ellipsis {
43
- display: inline-block;
44
- position: relative;
45
- width: 80px;
46
- height: 80px;
47
- }
48
-
49
- .f-preloader-lds-ellipsis div {
50
- position: absolute;
51
- top: 33px;
52
- width: 13px;
53
- height: 13px;
54
- border-radius: 50%;
55
- background: rgb(var(--v-theme-primary));
56
- animation-timing-function: cubic-bezier(0, 1, 1, 0);
57
- }
58
-
59
- .f-preloader-lds-ellipsis div:nth-child(1) {
60
- left: 8px;
61
- animation: lds-ellipsis1 0.6s infinite;
62
- }
63
-
64
- .f-preloader-lds-ellipsis div:nth-child(2) {
65
- left: 8px;
66
- animation: lds-ellipsis2 0.6s infinite;
67
- }
68
-
69
- .f-preloader-lds-ellipsis div:nth-child(3) {
70
- left: 32px;
71
- animation: lds-ellipsis2 0.6s infinite;
72
- }
73
-
74
- .f-preloader-lds-ellipsis div:nth-child(4) {
75
- left: 56px;
76
- animation: lds-ellipsis3 0.6s infinite;
77
- }
78
-
79
- @keyframes lds-ellipsis1 {
80
- 0% {
81
- transform: scale(0);
82
- }
83
- 100% {
84
- transform: scale(1);
85
- }
86
- }
87
-
88
- @keyframes lds-ellipsis3 {
89
- 0% {
90
- transform: scale(1);
91
- }
92
- 100% {
93
- transform: scale(0);
94
- }
95
- }
96
-
97
- @keyframes lds-ellipsis2 {
98
- 0% {
99
- transform: translate(0, 0);
100
- }
101
- 100% {
102
- transform: translate(24px, 0);
103
- }
104
- }
105
38
  </style>
@@ -6,18 +6,23 @@
6
6
  flex: 0 1 var(--v-tabs-height);
7
7
  min-width: var(--v-tabs-height);
8
8
  }
9
- .v-slide-group__container {
10
- &::after {
11
- content: '';
12
- display: block;
13
- position: absolute;
14
- bottom: 0;
15
- height: 1px;
16
- width: 100%;
17
- background: rgb(var(--v-theme-line));
18
- transform: scaleY(1);
19
- transform-origin: bottom;
9
+ &.v-tabs--horizontal {
10
+ .v-slide-group__container {
11
+ &::after {
12
+ content: '';
13
+ display: block;
14
+ position: absolute;
15
+ bottom: 0;
16
+ height: 1px;
17
+ width: 100%;
18
+ background: rgb(var(--v-theme-line));
19
+ transform: scaleY(1);
20
+ z-index: -1;
21
+ transform-origin: bottom;
22
+ }
20
23
  }
24
+ }
25
+ .v-slide-group__container {
21
26
  .v-slide-group__content {
22
27
  .v-btn {
23
28
  display: flex;