@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.
- package/lib/cjs/global_styling/functions/index.d.ts +1 -0
- package/lib/cjs/global_styling/functions/index.d.ts.map +1 -1
- package/lib/cjs/global_styling/functions/index.js +11 -0
- package/lib/cjs/global_styling/functions/index.js.map +1 -1
- package/lib/cjs/global_styling/functions/math.d.ts +13 -0
- package/lib/cjs/global_styling/functions/math.d.ts.map +1 -0
- package/lib/cjs/global_styling/functions/math.js +64 -0
- package/lib/cjs/global_styling/functions/math.js.map +1 -0
- package/lib/cjs/global_styling/functions/math.test.js +110 -0
- package/lib/cjs/global_styling/functions/math.test.js.map +1 -0
- package/lib/cjs/global_styling/variables/colors.d.ts +7 -2
- package/lib/cjs/global_styling/variables/colors.d.ts.map +1 -1
- package/lib/cjs/global_styling/variables/colors.js.map +1 -1
- package/lib/cjs/global_styling/variables/components.d.ts +6 -2
- package/lib/cjs/global_styling/variables/components.d.ts.map +1 -1
- package/lib/cjs/global_styling/variables/components.js.map +1 -1
- package/lib/cjs/global_styling/variables/forms.d.ts +3 -0
- package/lib/cjs/global_styling/variables/forms.d.ts.map +1 -1
- package/lib/cjs/global_styling/variables/forms.js.map +1 -1
- package/lib/esm/global_styling/functions/index.d.ts +1 -0
- package/lib/esm/global_styling/functions/index.js +1 -0
- package/lib/esm/global_styling/functions/index.js.map +1 -1
- package/lib/esm/global_styling/functions/math.d.ts +12 -0
- package/lib/esm/global_styling/functions/math.js +45 -0
- package/lib/esm/global_styling/functions/math.js.map +1 -0
- package/lib/esm/global_styling/functions/math.test.d.ts +1 -0
- package/lib/esm/global_styling/functions/math.test.js +67 -0
- package/lib/esm/global_styling/functions/math.test.js.map +1 -0
- package/lib/esm/global_styling/variables/colors.d.ts +7 -2
- package/lib/esm/global_styling/variables/components.d.ts +6 -2
- package/lib/esm/global_styling/variables/forms.d.ts +3 -0
- package/package.json +1 -1
- package/src/global_styling/index.scss +0 -3
- package/src/global_styling/mixins/_helpers.scss +0 -9
- package/src/global_styling/mixins/_shadow.scss +0 -8
- package/src/global_styling/variables/_size.scss +0 -2
- package/src/global_styling/react_date_picker/_date_picker.scss +0 -772
- package/src/global_styling/react_date_picker/_index.scss +0 -2
- package/src/global_styling/react_date_picker/_variables.scss +0 -1
- package/src/global_styling/utility/_animations.scss +0 -55
- package/src/global_styling/utility/_index.scss +0 -1
|
@@ -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';
|