@acorex/styles 5.0.13 → 5.0.14

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/index.scss CHANGED
@@ -1,13 +1,11 @@
1
-
2
1
  @import "./src/variables/colors";
3
2
  @import "./src/icons/style.scss";
4
3
 
5
-
6
- @import 'tailwindcss/base';
7
- @import 'tailwindcss/components';
8
- @import 'tailwindcss/utilities';
9
-
4
+ @import "tailwindcss/base";
5
+ @import "tailwindcss/components";
6
+ @import "tailwindcss/utilities";
10
7
 
11
8
  @import "./src/base/index.scss";
12
9
  @import "./src/components/index.scss";
13
10
  @import "./src/utility/index.scss";
11
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "5.0.13",
3
+ "version": "5.0.14",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,4 +1,5 @@
1
1
  @import "../utility/mixins";
2
+
2
3
  [class*=" ax-ic-"],
3
4
  [class^=ax-ic-] {
4
5
  vertical-align: middle;
@@ -20,7 +21,10 @@ body {
20
21
  font-size: 16px
21
22
  }
22
23
 
23
- // .ax-dark-mode,
24
- // .ax-dark-mode * {
25
- // @include colors($theme-dark-colors);
26
- // }
24
+ .ax-controll {
25
+ @apply ax-border-light-300 ax-bg-white;
26
+ }
27
+
28
+ .ax-surface {
29
+ @apply ax-bg-white ax-border-light-300;
30
+ }
@@ -8,8 +8,10 @@
8
8
  &.ax-button-icon {
9
9
  @apply ax-px-2;
10
10
  }
11
+ &:first-child {
12
+ }
11
13
  [class*=" ax-ic-"],
12
- [class^=ax-ic-] {
14
+ [class^="ax-ic-"] {
13
15
  font-size: 1.2rem !important;
14
16
  line-height: 1 !important;
15
17
  }
@@ -24,6 +26,22 @@
24
26
  box-shadow: none;
25
27
  }
26
28
  }
29
+ ax-prefix {
30
+ * {
31
+ @apply ax-rounded-s;
32
+ }
33
+ }
34
+ ax-suffix {
35
+ * {
36
+ @apply ax-rounded-e;
37
+ }
38
+ }
39
+ ax-prefix,
40
+ ax-suffix {
41
+ * {
42
+ @apply ax-h-full ax-flex ax-justify-center ax-items-center ax-rounded-none;
43
+ }
44
+ }
27
45
  ax-button {
28
46
  height: 100% !important;
29
47
  @apply ax-rounded-none;
@@ -37,12 +55,7 @@
37
55
  }
38
56
  }
39
57
  }
40
- ax-suffix,
41
- ax-prefix {
42
- * {
43
- @apply ax-h-full ax-flex ax-justify-center ax-items-center ax-rounded-none;
44
- }
45
- }
58
+
46
59
  &.ax-state-disabled {
47
60
  background-color: rgb(var(--ax-color-disabled)) !important;
48
61
  color: rgb(var(--ax-color-disabled-fore)) !important;
@@ -73,4 +86,4 @@
73
86
  }
74
87
  }
75
88
  }
76
- }
89
+ }