@elastic/eui-theme-common 0.0.3 → 0.0.5

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 (41) hide show
  1. package/lib/cjs/global_styling/functions/index.d.ts +1 -0
  2. package/lib/cjs/global_styling/functions/index.d.ts.map +1 -1
  3. package/lib/cjs/global_styling/functions/index.js +11 -0
  4. package/lib/cjs/global_styling/functions/index.js.map +1 -1
  5. package/lib/cjs/global_styling/functions/math.d.ts +13 -0
  6. package/lib/cjs/global_styling/functions/math.d.ts.map +1 -0
  7. package/lib/cjs/global_styling/functions/math.js +64 -0
  8. package/lib/cjs/global_styling/functions/math.js.map +1 -0
  9. package/lib/cjs/global_styling/functions/math.test.js +110 -0
  10. package/lib/cjs/global_styling/functions/math.test.js.map +1 -0
  11. package/lib/cjs/global_styling/variables/colors.d.ts +7 -2
  12. package/lib/cjs/global_styling/variables/colors.d.ts.map +1 -1
  13. package/lib/cjs/global_styling/variables/colors.js.map +1 -1
  14. package/lib/cjs/global_styling/variables/components.d.ts +6 -2
  15. package/lib/cjs/global_styling/variables/components.d.ts.map +1 -1
  16. package/lib/cjs/global_styling/variables/components.js.map +1 -1
  17. package/lib/cjs/global_styling/variables/forms.d.ts +3 -0
  18. package/lib/cjs/global_styling/variables/forms.d.ts.map +1 -1
  19. package/lib/cjs/global_styling/variables/forms.js.map +1 -1
  20. package/lib/esm/global_styling/functions/index.d.ts +1 -0
  21. package/lib/esm/global_styling/functions/index.js +1 -0
  22. package/lib/esm/global_styling/functions/index.js.map +1 -1
  23. package/lib/esm/global_styling/functions/math.d.ts +12 -0
  24. package/lib/esm/global_styling/functions/math.js +45 -0
  25. package/lib/esm/global_styling/functions/math.js.map +1 -0
  26. package/lib/esm/global_styling/functions/math.test.d.ts +1 -0
  27. package/lib/esm/global_styling/functions/math.test.js +67 -0
  28. package/lib/esm/global_styling/functions/math.test.js.map +1 -0
  29. package/lib/esm/global_styling/variables/colors.d.ts +7 -2
  30. package/lib/esm/global_styling/variables/components.d.ts +6 -2
  31. package/lib/esm/global_styling/variables/forms.d.ts +3 -0
  32. package/package.json +1 -1
  33. package/src/global_styling/index.scss +0 -3
  34. package/src/global_styling/mixins/_helpers.scss +0 -9
  35. package/src/global_styling/mixins/_shadow.scss +0 -8
  36. package/src/global_styling/variables/_size.scss +0 -2
  37. package/src/global_styling/react_date_picker/_date_picker.scss +0 -772
  38. package/src/global_styling/react_date_picker/_index.scss +0 -2
  39. package/src/global_styling/react_date_picker/_variables.scss +0 -1
  40. package/src/global_styling/utility/_animations.scss +0 -55
  41. package/src/global_styling/utility/_index.scss +0 -1
@@ -1,2 +0,0 @@
1
- @import 'variables';
2
- @import 'date_picker';
@@ -1 +0,0 @@
1
- $euiDatePickerCalendarWidth: 284px;
@@ -1,55 +0,0 @@
1
- // Animations as utility so they don't get duplicated in compiled CSS
2
-
3
- @keyframes euiAnimFadeIn {
4
- 0% {
5
- opacity: 0;
6
- }
7
-
8
- 100% {
9
- opacity: 1;
10
- }
11
- }
12
-
13
- @keyframes euiGrow {
14
- 0% {
15
- opacity: 0;
16
- }
17
-
18
- 1% {
19
- opacity: 0;
20
- transform: scale(0);
21
- }
22
-
23
- 100% {
24
- opacity: 1;
25
- transform: scale(1);
26
- }
27
- }
28
-
29
- @keyframes focusRingAnimate {
30
- 0% {
31
- box-shadow: 0 0 0 $euiFocusRingAnimStartSize $euiFocusRingAnimStartColor;
32
- }
33
-
34
- 100% {
35
- box-shadow: 0 0 0 $euiFocusRingSize $euiFocusRingColor;
36
- }
37
- }
38
-
39
- @keyframes focusRingAnimateLarge {
40
- 0% {
41
- box-shadow: 0 0 0 $euiFocusRingAnimStartSizeLarge $euiFocusRingAnimStartColor;
42
- }
43
-
44
- 100% {
45
- box-shadow: 0 0 0 $euiFocusRingSizeLarge $euiFocusRingColor;
46
- }
47
- }
48
-
49
- // Component specific
50
-
51
- @keyframes euiButtonActive {
52
- 50% {
53
- transform: translateY(1px);
54
- }
55
- }
@@ -1 +0,0 @@
1
- @import 'animations';