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