@prom-ui/core 0.0.15 → 0.0.18
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/Body/package.json +1 -1
- package/Body/style.css +741 -1
- package/Box/package.json +1 -1
- package/Box/style.css +9676 -1
- package/Button/package.json +1 -1
- package/Button/style.css +3393 -1
- package/ButtonPageUp/package.json +1 -1
- package/Checkbox/package.json +1 -1
- package/Checkbox/style.css +133 -1
- package/Flex/package.json +1 -1
- package/Flex/style.css +786 -1
- package/Grid/package.json +1 -1
- package/Grid/style.css +7350 -1
- package/Icon/package.json +1 -1
- package/Icon/style.css +46 -1
- package/Image/package.json +1 -1
- package/Image/style.css +664 -1
- package/ImageEmoji/package.json +1 -1
- package/Input/package.json +1 -1
- package/Input/style.css +345 -1
- package/KeyPress/package.json +1 -1
- package/Line/package.json +1 -1
- package/Line/style.css +138 -1
- package/Link/package.json +1 -1
- package/Link/style.css +259 -1
- package/List/package.json +1 -1
- package/List/style.css +312 -1
- package/OutsideClick/package.json +1 -1
- package/Picture/package.json +1 -1
- package/Picture/style.css +1426 -1
- package/PortableOverlay/index.d.ts +12 -0
- package/PortableOverlay/index.js +114 -0
- package/PortableOverlay/package.json +10 -0
- package/PortableOverlay/style.css +44 -0
- package/Portal/index.d.ts +2 -2
- package/Portal/package.json +1 -1
- package/Rating/package.json +1 -1
- package/Rating/style.css +26 -1
- package/Scroll/package.json +1 -1
- package/Scroll/style.css +169 -1
- package/ScrollControls/index.js +1 -4
- package/ScrollControls/package.json +1 -1
- package/ScrollControls/style.css +67 -1
- package/SideOverlay/blocks.d.ts +14 -0
- package/SideOverlay/index.d.ts +31 -0
- package/SideOverlay/index.js +254 -0
- package/SideOverlay/package.json +12 -0
- package/SideOverlay/style.css +208 -0
- package/SideOverlay/utils.d.ts +8 -0
- package/Skeleton/package.json +1 -1
- package/Skeleton/style.css +145 -1
- package/Spinner/package.json +1 -1
- package/Spinner/style.css +80 -1
- package/Text/package.json +1 -1
- package/Text/style.css +840 -1
- package/TextEmoji/package.json +1 -1
- package/Tumbler/package.json +1 -1
- package/Tumbler/style.css +118 -1
- package/base/colors-dark.css +117 -0
- package/base/colors.css +80 -0
- package/base/media.css +5 -0
- package/base/reset.css +120 -0
- package/base/round.css +12 -0
- package/base/spacing.css +12 -0
- package/base/typography.css +12 -0
- package/package.json +3 -2
package/Spinner/style.css
CHANGED
|
@@ -1 +1,80 @@
|
|
|
1
|
-
@-webkit-keyframes Spinner__rotate___aKoVD
|
|
1
|
+
@-webkit-keyframes Spinner__rotate___aKoVD {
|
|
2
|
+
0% {
|
|
3
|
+
transform: rotate(0deg);
|
|
4
|
+
|
|
5
|
+
/* Fix IE11 wobbly */
|
|
6
|
+
transform-origin: 50% 50%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
100% {
|
|
10
|
+
transform: rotate(360deg);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@keyframes Spinner__rotate___aKoVD {
|
|
15
|
+
0% {
|
|
16
|
+
transform: rotate(0deg);
|
|
17
|
+
|
|
18
|
+
/* Fix IE11 wobbly */
|
|
19
|
+
transform-origin: 50% 50%;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
100% {
|
|
23
|
+
transform: rotate(360deg);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.Spinner__ek-spinner___K7r-c {
|
|
28
|
+
display: block;
|
|
29
|
+
overflow: hidden;
|
|
30
|
+
-webkit-animation: Spinner__rotate___aKoVD 1.4s linear infinite;
|
|
31
|
+
animation: Spinner__rotate___aKoVD 1.4s linear infinite;
|
|
32
|
+
color: currentColor;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@-webkit-keyframes Spinner__dash___bKr0a {
|
|
36
|
+
0% {
|
|
37
|
+
stroke-dasharray: 1px, 200px;
|
|
38
|
+
stroke-dashoffset: 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
50% {
|
|
42
|
+
stroke-dasharray: 100px, 200px;
|
|
43
|
+
stroke-dashoffset: -15px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
100% {
|
|
47
|
+
stroke-dasharray: 100px, 200px;
|
|
48
|
+
stroke-dashoffset: -125px;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@keyframes Spinner__dash___bKr0a {
|
|
53
|
+
0% {
|
|
54
|
+
stroke-dasharray: 1px, 200px;
|
|
55
|
+
stroke-dashoffset: 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
50% {
|
|
59
|
+
stroke-dasharray: 100px, 200px;
|
|
60
|
+
stroke-dashoffset: -15px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
100% {
|
|
64
|
+
stroke-dasharray: 100px, 200px;
|
|
65
|
+
stroke-dashoffset: -125px;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.Spinner__ek-spinner__circle___a5Jex {
|
|
70
|
+
stroke: currentColor;
|
|
71
|
+
stroke-dasharray: 80px, 200px;
|
|
72
|
+
stroke-dashoffset: 0;
|
|
73
|
+
stroke-linecap: round;
|
|
74
|
+
-webkit-animation: Spinner__dash___bKr0a 1.4s ease-in-out infinite;
|
|
75
|
+
animation: Spinner__dash___bKr0a 1.4s ease-in-out infinite;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.Spinner__ek-spinner_color_violet-500___9sMtP {
|
|
79
|
+
color: var(--violet-500);
|
|
80
|
+
}
|