@dataloop-ai/components 0.18.110 → 0.18.111
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/package.json +1 -1
- package/src/components/essential/DlSpinner/DlSpinner.vue +1 -1
- package/src/components/essential/DlSpinner/components/DlSpinnerCircle.vue +2 -2
- package/src/components/essential/DlSpinner/components/DlSpinnerClock.vue +1 -1
- package/src/components/essential/DlSpinner/components/DlSpinnerDots.vue +1 -1
- package/src/components/essential/DlSpinner/components/DlSpinnerGrid.vue +1 -1
- package/src/components/essential/DlSpinner/components/DlSpinnerLogo.vue +9 -9
- package/src/components/essential/DlSpinner/styles/spinnerStyles.scss +9 -9
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="spinner-wrapper">
|
|
2
|
+
<div class="dl-spinner-wrapper">
|
|
3
3
|
<svg
|
|
4
4
|
class="dl-spinner dl-spinner-mat"
|
|
5
5
|
:width="size"
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
viewBox="25 25 50 50"
|
|
8
8
|
>
|
|
9
9
|
<circle
|
|
10
|
-
class="spinner-path"
|
|
10
|
+
class="dl-spinner-path"
|
|
11
11
|
cx="50"
|
|
12
12
|
cy="50"
|
|
13
13
|
r="20"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="spinner-wrapper">
|
|
2
|
+
<div class="dl-spinner-wrapper">
|
|
3
3
|
<div
|
|
4
|
-
class="spinner"
|
|
4
|
+
class="dl-spinner"
|
|
5
5
|
:style="spinnerStyles"
|
|
6
6
|
>
|
|
7
|
-
<div class="spin-bg">
|
|
7
|
+
<div class="dl-spin-bg">
|
|
8
8
|
<svg
|
|
9
|
-
id="Layer_2"
|
|
9
|
+
id="dl-Layer_2"
|
|
10
10
|
data-name="Layer 2"
|
|
11
11
|
viewBox="0 0 140 140"
|
|
12
12
|
>
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
</g>
|
|
22
22
|
</svg>
|
|
23
23
|
</div>
|
|
24
|
-
<div class="spin-loader">
|
|
24
|
+
<div class="dl-spin-loader">
|
|
25
25
|
<svg
|
|
26
|
-
id="Layer_2"
|
|
26
|
+
id="dl-Layer_2"
|
|
27
27
|
data-name="Layer 2"
|
|
28
28
|
viewBox="0 0 140 140"
|
|
29
29
|
>
|
|
@@ -63,16 +63,16 @@
|
|
|
63
63
|
</linearGradient>
|
|
64
64
|
</defs>
|
|
65
65
|
<g
|
|
66
|
-
id="Layer_1-2"
|
|
66
|
+
id="dl-Layer_1-2"
|
|
67
67
|
data-name="Layer 1"
|
|
68
68
|
>
|
|
69
69
|
<g>
|
|
70
70
|
<path
|
|
71
|
-
class="spinner-color-bg"
|
|
71
|
+
class="dl-spinner-color-bg"
|
|
72
72
|
d="M70,0C31.33,0,0,31.33,0,70s31.33,70,70,70,70-31.33,70-70S108.67,0,70,0Zm0,131.97c-34.2,0-61.97-27.77-61.97-61.97S35.8,8.03,70,8.03s61.97,27.77,61.97,61.97-27.77,61.97-61.97,61.97Z"
|
|
73
73
|
/>
|
|
74
74
|
<path
|
|
75
|
-
class="spinner-color"
|
|
75
|
+
class="dl-spinner-color"
|
|
76
76
|
d="M114.87,25.82c1.38-1.38,2.87-2.75,4.25-4.13,.46-.34,.46-1.03,0-1.49C106.49,7.69,89.16,0,70,0,46.36,0,25.48,11.7,12.74,29.72c-.34,.46-.23,.92,.11,1.38l4.25,4.25c.46,.46,1.15,.34,1.61-.11,11.25-16.52,29.95-27.2,51.3-27.2,16.98,0,32.25,6.77,43.49,17.79,.34,.34,1.03,.34,1.38,0Z"
|
|
77
77
|
/>
|
|
78
78
|
</g>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.spinner-wrapper {
|
|
1
|
+
.dl-spinner-wrapper {
|
|
2
2
|
display: flex;
|
|
3
3
|
justify-content: center;
|
|
4
4
|
align-items: center;
|
|
@@ -11,25 +11,25 @@
|
|
|
11
11
|
animation: spinCircle 2s linear infinite;
|
|
12
12
|
transform-origin: center center;
|
|
13
13
|
}
|
|
14
|
-
.spinner-path {
|
|
14
|
+
.dl-spinner-path {
|
|
15
15
|
stroke-dasharray: 1, 200 #{'/* rtl:ignore */'};
|
|
16
16
|
stroke-dashoffset: 0 #{'/* rtl:ignore */'};
|
|
17
17
|
animation: dash 1.5s ease-in-out infinite;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
.spinner {
|
|
20
|
+
.dl-spinner {
|
|
21
21
|
position: relative;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
.spin-loader,
|
|
25
|
-
.spin-bg {
|
|
24
|
+
.dl-spin-loader,
|
|
25
|
+
.dl-spin-bg {
|
|
26
26
|
width: var(--dl-spinner-size);
|
|
27
27
|
height: var(--dl-spinner-size);
|
|
28
28
|
top: 0;
|
|
29
29
|
left: 0;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
.spin-loader {
|
|
32
|
+
.dl-spin-loader {
|
|
33
33
|
position: absolute;
|
|
34
34
|
animation: spin 2s linear infinite;
|
|
35
35
|
}
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
fill: var(--dl-spinner-border-color);
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
.spinner-color-bg {
|
|
51
|
+
.dl-spinner-color-bg {
|
|
52
52
|
fill: none;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
.spinner-color {
|
|
55
|
+
.dl-spinner-color {
|
|
56
56
|
fill: url(#linear-gradient);
|
|
57
57
|
}
|
|
58
58
|
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
.spinner-text {
|
|
113
|
+
.dl-spinner-text {
|
|
114
114
|
font-size: 1em;
|
|
115
115
|
margin-top: 15px;
|
|
116
116
|
display: flex;
|