@clicktap/ui 0.0.5 → 0.0.7

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.
@@ -4,73 +4,3 @@ export declare const Dash: import("styled-components").Keyframes;
4
4
  export declare const Loader: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, Omit<CircularEasingProps, "stroke">, never>;
5
5
  export declare const StyledSvg: import("styled-components").StyledComponent<"svg", import("styled-components").DefaultTheme, {}, never>;
6
6
  export declare const StyledCircle: import("styled-components").StyledComponent<"circle", import("styled-components").DefaultTheme, Omit<CircularEasingProps, "width">, never>;
7
- /**
8
- * .loader {
9
- position: relative;
10
- margin: 0 auto;
11
- width: $width;
12
- &:before {
13
- content: '';
14
- display: block;
15
- padding-top: 100%;
16
- }
17
- }
18
-
19
- .circular {
20
- animation: rotate 2s linear infinite;
21
- height: 100%;
22
- transform-origin: center center;
23
- width: 100%;
24
- position: absolute;
25
- top: 0;
26
- bottom: 0;
27
- left: 0;
28
- right: 0;
29
- margin: auto;
30
- }
31
-
32
- .path {
33
- stroke-dasharray: 1, 200;
34
- stroke-dashoffset: 0;
35
- animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
36
- stroke-linecap: round;
37
- }
38
-
39
- @keyframes rotate {
40
- 100% {
41
- transform: rotate(360deg);
42
- }
43
- }
44
-
45
- @keyframes dash {
46
- 0% {
47
- stroke-dasharray: 1, 200;
48
- stroke-dashoffset: 0;
49
- }
50
- 50% {
51
- stroke-dasharray: 89, 200;
52
- stroke-dashoffset: -35px;
53
- }
54
- 100% {
55
- stroke-dasharray: 89, 200;
56
- stroke-dashoffset: -124px;
57
- }
58
- }
59
-
60
- @keyframes color {
61
- 100%,
62
- 0% {
63
- stroke: $red;
64
- }
65
- 40% {
66
- stroke: $blue;
67
- }
68
- 66% {
69
- stroke: $green;
70
- }
71
- 80%,
72
- 90% {
73
- stroke: $yellow;
74
- }
75
- }
76
- */