@acorex/styles 7.0.8 → 7.0.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "7.0.8",
3
+ "version": "7.0.11",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "",
@@ -4,7 +4,7 @@
4
4
 
5
5
  :root {
6
6
  --ax-size-default: 2.5rem;
7
- --ax-rounded-border-default: 0.25rem;
7
+ --ax-rounded-border-default: 0.375rem;
8
8
  @include light-variables();
9
9
  @include color-variable-genterator($theme-colors);
10
10
  }
@@ -0,0 +1,39 @@
1
+ .ax-actionsheet-panel {
2
+ animation-duration: 500ms;
3
+ animation-fill-mode: both;
4
+ -webkit-animation-duration: 500ms;
5
+ -webkit-animation-fill-mode: both;
6
+ opacity: 0;
7
+ animation-name: fadeInUp;
8
+ -webkit-animation-name: fadeInUp;
9
+ background-color: rgba(var(--ax-color-surface));
10
+ -webkit-border-top-left-radius: 1rem;
11
+ -webkit-border-top-right-radius: 1rem;
12
+ -moz-border-radius-topleft: 1rem;
13
+ -moz-border-radius-topright: 1rem;
14
+ border-top-left-radius: 1rem;
15
+ border-top-right-radius: 1rem;
16
+ box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.141), 0 6px 30px 5px rgba(0, 0, 0, 0.122);
17
+ overflow: hidden;
18
+ @keyframes fadeInUp {
19
+ from {
20
+ transform: translate3d(0, 40px, 0);
21
+ }
22
+
23
+ to {
24
+ transform: translate3d(0, 0, 0);
25
+ opacity: 1;
26
+ }
27
+ }
28
+
29
+ @-webkit-keyframes fadeInUp {
30
+ from {
31
+ transform: translate3d(0, 40px, 0);
32
+ }
33
+
34
+ to {
35
+ transform: translate3d(0, 0, 0);
36
+ opacity: 1;
37
+ }
38
+ }
39
+ }
@@ -110,7 +110,6 @@
110
110
  }
111
111
 
112
112
  &.ax-state-error {
113
- outline-color: rgb(var(--ax-color-danger-500));
114
113
  border-color: rgb(var(--ax-color-danger-500));
115
114
  .ax-input {
116
115
  &::placeholder {
@@ -1,3 +1,4 @@
1
+ @import "./actionsheet";
1
2
  @import "./check-box";
2
3
  @import "./decoration";
3
4
  @import "./drop-down";