@acorex/styles 7.0.37 → 7.0.38

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.37",
3
+ "version": "7.0.38",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "",
@@ -13,6 +13,6 @@
13
13
  "autoprefixer": "^10.4.13",
14
14
  "postcss": "^8.4.21",
15
15
  "tailwind-auto-directions": "^1.0.2",
16
- "tailwindcss": "^3.2.6"
16
+ "tailwindcss": "^3.3.1"
17
17
  }
18
18
  }
@@ -1,6 +1,6 @@
1
1
  .ax-actionsheet-panel {
2
- animation-duration: 300ms;
3
- -webkit-animation-duration: 300ms;
2
+ animation-duration: 100ms;
3
+ -webkit-animation-duration: 100ms;
4
4
  animation-fill-mode: both;
5
5
  -webkit-animation-fill-mode: both;
6
6
  opacity: 0;
@@ -13,9 +13,9 @@
13
13
  -moz-border-radius-topright: var(--ax-rounded-border-default);
14
14
  border-top-left-radius: var(--ax-rounded-border-default);
15
15
  border-top-right-radius: var(--ax-rounded-border-default);
16
- box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2),
17
- 0 16px 24px 2px rgba(0, 0, 0, 0.141), 0 6px 30px 5px rgba(0, 0, 0, 0.122);
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);
18
17
  overflow: hidden;
18
+
19
19
  @keyframes fadeInUp {
20
20
  from {
21
21
  transform: translate3d(0, 40px, 0);
@@ -47,7 +47,7 @@
47
47
  justify-content: center;
48
48
  width: var(--ax-size-default);
49
49
  min-width: var(--ax-size-default);
50
- height: var(--ax-size-default);
50
+ height: 100%;
51
51
  font-size: 1.25rem;
52
52
  line-height: 1.25rem;
53
53
  color: rgba(var(--ax-color-surface-fore));
@@ -3,7 +3,7 @@
3
3
  --ax-size-default: var(--ax-size-base);
4
4
 
5
5
  --ax-rounded-border-default: 0.375rem;
6
- --ax-color-border-default: 204, 204, 204;
6
+ --ax-color-border-default: 224, 224, 224;
7
7
 
8
8
  --ax-color-background-default: 250, 250, 250;
9
9
  --ax-color-text-default: 18, 18, 18;
@@ -91,12 +91,12 @@
91
91
  --ax-color-background-default: 23, 32, 46;
92
92
 
93
93
  --ax-color-text-default: 224, 224, 224;
94
- --ax-color-border-default: 74, 76, 80;
94
+ --ax-color-border-default: 66, 83, 110;
95
95
 
96
- --ax-color-surface: 45, 50, 63;
96
+ --ax-color-surface: 35, 51, 70;
97
97
  --ax-color-surface-fore: 224, 224, 224;
98
98
 
99
- --ax-color-on-surface: 60, 68, 79;
99
+ --ax-color-on-surface: 53, 68, 91;
100
100
  --ax-color-on-surface-fore: 224, 224, 224;
101
101
 
102
102
  --ax-color-ghost-fore: 255, 255, 255;
@@ -110,4 +110,16 @@
110
110
  --ax-color-ghost-700: 52, 55, 65;
111
111
  --ax-color-ghost-800: 44, 47, 56;
112
112
  --ax-color-ghost-900: 30, 32, 40;
113
+
114
+ // --ax-color-primary-fore : 25, 41, 63;
115
+ // --ax-color-primary-50 : 243, 248, 255;
116
+ // --ax-color-primary-100 : 226, 236, 254;
117
+ // --ax-color-primary-200 : 206, 224, 253;
118
+ // --ax-color-primary-300 : 186, 212, 252;
119
+ // --ax-color-primary-400 : 172, 202, 252;
120
+ // --ax-color-primary-500 : 157, 193, 251;
121
+ // --ax-color-primary-600 : 149, 187, 250;
122
+ // --ax-color-primary-700 : 139, 179, 250;
123
+ // --ax-color-primary-800 : 129, 171, 249;
124
+ // --ax-color-primary-900 : 111, 158, 248
113
125
  }
@@ -116,6 +116,7 @@ module.exports = withAnimations({
116
116
  'success-fore': withOpacityValue('--ax-color-success-fore'),
117
117
  'warning-fore': withOpacityValue('--ax-color-warning-fore'),
118
118
  'danger-fore': withOpacityValue('--ax-color-danger-fore'),
119
+ 'ghost-fore': withOpacityValue('--ax-color-ghost-fore'),
119
120
  },
120
121
  backgroundColor: {
121
122
  default: withOpacityValue('--ax-color-background-default'),
@@ -178,6 +179,5 @@ module.exports = withAnimations({
178
179
  addUtilities(acorexClasses, ['responsive', 'hover', 'focus']);
179
180
  }),
180
181
  childSelector,
181
- require('tailwind-auto-directions'),
182
182
  ],
183
183
  });