@acorex/styles 5.9.0 → 6.0.0

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 (51) hide show
  1. package/index.js +8 -12
  2. package/index.scss +4 -4
  3. package/package.json +1 -1
  4. package/src/components/_action-sheet.scss +1 -2
  5. package/src/components/_alert.scss +56 -54
  6. package/src/components/_avatar.scss +0 -2
  7. package/src/components/_badge.scss +29 -5
  8. package/src/components/_breadcrumbs.scss +2 -3
  9. package/src/components/_button.scss +9 -13
  10. package/src/components/_calendar.scss +5 -5
  11. package/src/components/_checkbox.scss +3 -8
  12. package/src/components/_collapse.scss +0 -1
  13. package/src/components/_color-palette.scss +5 -5
  14. package/src/components/_color-picker.scss +1 -1
  15. package/src/components/_data-table.scss +5 -5
  16. package/src/components/_datapager.scss +3 -3
  17. package/src/components/_decoration.scss +10 -10
  18. package/src/components/_dialog.scss +1 -1
  19. package/src/components/_drawer.scss +7 -7
  20. package/src/components/_dropdown.scss +8 -10
  21. package/src/components/_editor-container.scss +12 -12
  22. package/src/components/_fieldset.scss +1 -1
  23. package/src/components/_form.scss +1 -1
  24. package/src/components/_label.scss +1 -1
  25. package/src/components/_list.scss +8 -23
  26. package/src/components/_loading.scss +14 -21
  27. package/src/components/_menu.scss +3 -4
  28. package/src/components/_numberbox.scss +1 -3
  29. package/src/components/_popup.scss +4 -4
  30. package/src/components/_progress.scss +2 -3
  31. package/src/components/_radio.scss +1 -1
  32. package/src/components/_range-slider.scss +2 -2
  33. package/src/components/_result.scss +0 -1
  34. package/src/components/_selectbox.scss +2 -2
  35. package/src/components/_switch.scss +0 -1
  36. package/src/components/_tabs.scss +3 -3
  37. package/src/components/_textarea.scss +5 -6
  38. package/src/components/_toast.scss +1 -1
  39. package/src/components/_treeview.scss +0 -1
  40. package/src/components/index.scss +0 -2
  41. package/src/icons/demo-files/demo.css +152 -152
  42. package/src/icons/demo-files/demo.js +30 -30
  43. package/src/icons/demo.html +556 -556
  44. package/src/icons/fonts/acorex-icon.svg +46 -46
  45. package/src/icons/style.css +138 -138
  46. package/src/icons/style.scss +215 -215
  47. package/src/icons/variables.scss +41 -41
  48. package/src/utility/_mixins.scss +63 -0
  49. package/src/components/_picker.scss +0 -179
  50. package/src/components/_side-menu.scss +0 -42
  51. package/src/components/_switch copy.scss +0 -185
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- ax-color-palette {
2
+ .ax-color-palette {
3
3
  @apply ax-flex ax-flex-col ax-w-72 ax-border ax-border-light-200 ax-rounded ax-gap-2;
4
4
  @include control-states("surface");
5
5
  --ax-base-ratio: 4;
@@ -17,8 +17,8 @@
17
17
  }
18
18
  }
19
19
 
20
- ax-header,
21
- ax-footer {
20
+ .ax-header,
21
+ .ax-footer {
22
22
  @apply ax-border-t ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ax-flex;
23
23
  @include control-states("editor");
24
24
  }
@@ -93,7 +93,7 @@
93
93
 
94
94
  }
95
95
 
96
- ax-range-slider
96
+ .ax-range-slider
97
97
  {
98
98
  &.ax-color-picker-gradient
99
99
  {
@@ -111,7 +111,7 @@
111
111
  }
112
112
  }
113
113
  }
114
- ax-range-slider
114
+ .ax-range-slider
115
115
  {
116
116
  &.ax-color-picker-transparent
117
117
  {
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- ax-color-picker {
2
+ .ax-color-picker {
3
3
  .ax-dropdown-content {
4
4
  @apply ax-mx-2 ax-flex ax-items-center;
5
5
 
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- ax-data-table {
2
+ .ax-data-table {
3
3
  @apply ax-flex ax-flex-col ax-rounded-default ax-border ax-border-light-200 dark:ax-border-white/10;
4
4
 
5
5
  .ax-wrapper
@@ -7,8 +7,8 @@
7
7
  @apply ax-flex ax-flex-1 ax-overflow-auto;
8
8
  }
9
9
 
10
- &>ax-header,
11
- &>ax-footer
10
+ &>.ax-header,
11
+ &>.ax-footer
12
12
  {
13
13
  @apply ax-p-2;
14
14
  ax-data-pager
@@ -16,11 +16,11 @@
16
16
  @apply ax-border-0 ax-p-0 ax-shadow-none ax-flex-1 ax-bg-transparent;
17
17
  }
18
18
  }
19
- &>ax-header
19
+ &>.ax-header
20
20
  {
21
21
  @apply ax-border-b;
22
22
  }
23
- &>ax-footer
23
+ &>.ax-footer
24
24
  {
25
25
  @apply ax-border-t;
26
26
 
@@ -1,11 +1,11 @@
1
1
  @layer components {
2
- ax-data-pager {
2
+ .ax-data-pager {
3
3
  @apply ax-flex ax-flex-wrap ax-gap-1 ax-flex-row ax-items-center ax-p-2 ax-border-opacity-50 ax-rounded ax-max-w-full ax-decoration-container;
4
4
 
5
5
  .ax-button-group {
6
6
  @apply ax-border-none;
7
7
 
8
- ax-button {
8
+ .ax-button {
9
9
  @apply ax-border-none ax-rounded;
10
10
  }
11
11
  }
@@ -21,7 +21,7 @@
21
21
  @apply ax-flex ax-justify-start md:ax-justify-end ax-items-center ax-text-sm;
22
22
  }
23
23
 
24
- ax-button {
24
+ .ax-button {
25
25
  @apply ax-text-base #{!important};
26
26
 
27
27
  &.ax-state-disabled {
@@ -1,34 +1,34 @@
1
1
  @layer components {
2
2
 
3
3
  .ax-decoration-container,
4
- ax-header,
5
- ax-footer
4
+ .ax-header,
5
+ .ax-footer
6
6
  {
7
7
  @apply ax-flex ax-justify-between ax-items-center ax-gap-2;
8
8
 
9
- &>ax-prefix,
10
- &>ax-suffix {
9
+ &>.ax-prefix,
10
+ &>.ax-suffix {
11
11
  @apply ax-flex ax-flex-auto ax-flex-row ax-gap-2 ax-items-center ;
12
12
  }
13
- &>ax-prefix{
13
+ &>.ax-prefix{
14
14
  @apply ax-order-first ax-justify-start ax-items-center ;
15
15
  }
16
- &>ax-suffix {
16
+ &>.ax-suffix {
17
17
  @apply ax-order-last ax-justify-end ax-items-center ;
18
18
  }
19
19
 
20
20
  }
21
21
 
22
- ax-title {
22
+ .ax-title {
23
23
  @apply ax-font-normal;
24
24
  }
25
25
 
26
- ax-icon {
26
+ .ax-icon {
27
27
  @apply ax-font-medium;
28
28
  }
29
29
 
30
- ax-close-button {
31
- ax-icon {
30
+ .ax-close-button {
31
+ .ax-icon {
32
32
  @apply ax-text-light-300 dark:ax-text-light-200 ax-cursor-pointer ax-text-xl;
33
33
  &:hover {
34
34
  @apply ax-text-light-400 dark:ax-text-light-100;
@@ -30,7 +30,7 @@
30
30
  @apply ax-col-span-1;
31
31
  @apply ax-cursor-pointer ax-text-light-400 ax--mt-2.5;
32
32
  }
33
- ax-footer {
33
+ .ax-footer {
34
34
  @apply ax-flex ax-gap-2 ax-col-span-12 ax-justify-end;
35
35
  }
36
36
  &.ax-primary-default {
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- ax-drawer-container {
2
+ .ax-drawer-container {
3
3
  @apply ax-flex ax-relative ax-w-full ax-h-full ax-overflow-hidden;
4
4
 
5
5
  &.ax-fixed {
@@ -16,16 +16,16 @@
16
16
 
17
17
  ax-drawer {
18
18
  @apply ax-flex ax-flex-col ax-max-w-[95%] ax-h-full ax-animate-duration-300 ax-transition-all #{!important};
19
- ax-header,
20
- ax-footer {
19
+ .ax-header,
20
+ .ax-footer {
21
21
  @apply ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ;
22
22
  @include control-states("editor");
23
23
  }
24
- ax-footer
24
+ .ax-footer
25
25
  {
26
26
  @apply ax-border-t;
27
27
  }
28
- ax-header
28
+ .ax-header
29
29
  {
30
30
  @apply ax-border-b;
31
31
  }
@@ -34,7 +34,7 @@
34
34
  }
35
35
 
36
36
 
37
- &>ax-content
37
+ &>.ax-content
38
38
  {
39
39
  @apply ax-overflow-auto ax-bg-white ax-flex-1 ax-h-full;
40
40
  }
@@ -105,7 +105,7 @@
105
105
 
106
106
  }
107
107
 
108
- &>ax-content {
108
+ &>.ax-content {
109
109
  @apply ax-flex-1 ax-h-full ax-overflow-auto;
110
110
  }
111
111
  }
@@ -1,8 +1,6 @@
1
1
  @layer components {
2
- ax-drop-down,
3
2
  .ax-drop-down {
4
- display: contents;
5
-
3
+ @apply ax-contents;
6
4
  .ax-dropdown-content {
7
5
  @apply ax-flex ax-flex-auto ax-text-sm ax-overflow-y-hidden ax-overscroll-x-auto;
8
6
  &.ax-state-disabled {
@@ -14,16 +12,16 @@
14
12
  .ax-overlay-pane {
15
13
  @apply ax-bg-white ax-border ax-rounded ax-border-light-200 ax-shadow-lg;
16
14
  @include control-states("surface");
17
- ax-header,
18
- ax-footer {
15
+ .ax-header,
16
+ .ax-footer {
19
17
  @apply ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ;
20
18
  @include control-states("editor");
21
19
  }
22
- ax-footer
20
+ .ax-footer
23
21
  {
24
22
  @apply ax-border-t;
25
23
  }
26
- ax-header
24
+ .ax-header
27
25
  {
28
26
  @apply ax-border-b;
29
27
  }
@@ -55,7 +53,7 @@
55
53
  &.ax-dropdown-list {
56
54
  @apply ax-border ax-border-solid ax-flex ax-flex-col ax-py-1 ax-rounded ax-shadow-sm;
57
55
 
58
- ax-button-item {
56
+ .ax-button-item {
59
57
  height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
60
58
  line-height: calc((var(--ax-base-size) * var(--ax-base-ratio)) / 2) !important;
61
59
  @apply ax-relative ax-inline-flex ax-items-center ax-justify-start ax-px-2 ax-text-sm ax-text-light-600 ax-cursor-pointer ax-select-none;
@@ -68,11 +66,11 @@
68
66
  @apply ax-cursor-not-allowed ax-opacity-60;
69
67
  }
70
68
 
71
- ax-prefix {
69
+ .ax-prefix {
72
70
  @apply ax-flex ax-flex-row ax-pe-2;
73
71
  }
74
72
 
75
- ax-suffix {
73
+ .ax-suffix {
76
74
  @apply ax-flex ax-flex-row ax-ps-2;
77
75
  }
78
76
 
@@ -53,38 +53,38 @@
53
53
  box-shadow: none;
54
54
  }
55
55
  }
56
- &>ax-prefix {
56
+ &>.ax-prefix {
57
57
  *,
58
- ax-button,
59
- ax-addon {
58
+ .ax-button,
59
+ .ax-addon {
60
60
  @apply ax-rounded-s;
61
61
  }
62
62
  }
63
63
 
64
- &>ax-suffix {
64
+ &>.ax-suffix {
65
65
  *,
66
- ax-button,
67
- ax-addon {
66
+ .ax-button,
67
+ .ax-addon {
68
68
  @apply ax-rounded-e;
69
69
  }
70
70
  }
71
71
 
72
- &>ax-prefix,
73
- &>ax-suffix {
72
+ &>.ax-prefix,
73
+ &>.ax-suffix {
74
74
  * {
75
75
  @apply ax-h-full ax-flex ax-justify-center ax-items-center ax-rounded-none;
76
76
  }
77
77
 
78
- ax-icon {
78
+ .ax-icon {
79
79
  @apply ax-px-2;
80
80
  }
81
81
 
82
- ax-addon {
82
+ .ax-addon {
83
83
  @apply ax-bg-light-100 ax-text-light-fore ax-px-4;
84
84
  }
85
85
  }
86
86
 
87
- ax-button {
87
+ .ax-button {
88
88
  height: 100% !important;
89
89
  @apply ax-rounded-none;
90
90
 
@@ -134,7 +134,7 @@
134
134
  }
135
135
  }
136
136
 
137
- ax-button {
137
+ .ax-button {
138
138
  &.ax-state-disabled {
139
139
  @apply ax-bg-light-100 ax-text-light-fore ax-opacity-100 #{!important};
140
140
  }
@@ -1,5 +1,5 @@
1
1
  @layer components{
2
- fieldset{
2
+ .ax-fieldset{
3
3
  @apply ax-grid ax-col-span-6 ax-grid-cols-6 ax-gap-4 ax-border ax-border-solid ax-border-light-300 ax-p-3 ax-rounded dark:ax-border-white/10;
4
4
  legend{
5
5
  @apply ax-text-sm ax-px-1;
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- ax-form-field {
2
+ .ax-form-field {
3
3
  @apply ax-mb-2 ax-relative;
4
4
  .ax-error-msg {
5
5
  @apply ax-block ax-text-danger-500 ax-text-xs ax-py-2;
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- ax-label {
2
+ .ax-label {
3
3
  label {
4
4
  @apply ax-block ax-font-medium ax-mb-2 ax-text-sm ax-text-light-700 dark:ax-text-light-100;
5
5
  }
@@ -1,14 +1,12 @@
1
1
  @layer components {
2
2
  .ax-list {
3
- display: block;
4
3
  @apply ax-h-full ax-flex ax-flex-col ax-overflow-hidden md:ax-max-h-80;
5
- ax-header,
6
- ax-footer {
4
+ .ax-header,
5
+ .ax-footer {
7
6
  @apply ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ax-flex ax-justify-between ax-items-center;
8
7
  @include control-states("editor");
9
8
  }
10
- ax-footer
11
- {
9
+ .ax-footer {
12
10
  @apply ax-border-t;
13
11
  }
14
12
  .ax-content {
@@ -29,12 +27,12 @@
29
27
  @apply ax-cursor-pointer;
30
28
 
31
29
  .ax-list-item-group {
32
- &>span {
30
+ & > span {
33
31
  @apply ax-font-bold ax-flex ax-items-center ax-px-3 ax-text-sm ax-text-light-900;
34
32
  height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
35
33
  }
36
34
 
37
- &>ul {
35
+ & > ul {
38
36
  @apply ax-px-3;
39
37
  }
40
38
  }
@@ -49,7 +47,7 @@
49
47
  }
50
48
 
51
49
  &.ax-state-selected {
52
- @apply ax-bg-light-200 ax-text-light-900 ax-font-medium ;
50
+ @apply ax-bg-light-200 ax-text-light-900 ax-font-medium;
53
51
  }
54
52
 
55
53
  &:not(.ax-check-box) {
@@ -72,27 +70,14 @@
72
70
  }
73
71
  }
74
72
 
75
-
76
73
  .ax-list-loading-container {
77
74
  @apply ax-flex ax-justify-center ax-p-2;
78
75
  }
79
76
  }
80
77
  }
81
78
 
82
- .ax-footer {}
79
+ .ax-footer {
80
+ }
83
81
  }
84
-
85
-
86
82
  }
87
83
 
88
- // .ax-list {
89
- // @apply ax-h-full ax-flex ax-flex-col;
90
-
91
- // .ax-list-header {}
92
-
93
- // .ax-list-body {
94
- // @apply ax-flex-1 ax-overflow-y-auto ax-overflow-x-hidden;
95
- // }
96
-
97
- // .ax-list-footer {}
98
- // }
@@ -1,11 +1,6 @@
1
1
  @layer components {
2
-
3
- .ax-loading {
4
- }
5
-
6
2
  .ax-loading-host {
7
3
  .ax-loading {
8
-
9
4
  position: relative;
10
5
  background: rgba(var(--ax-color-white) 2);
11
6
  width: 4rem;
@@ -32,6 +27,18 @@
32
27
  @apply ax-bg-primary-500;
33
28
  animation: pulse2 2s 1s ease-in-out infinite;
34
29
  }
30
+ @keyframes pulse2 {
31
+ 0%,
32
+ 100% {
33
+ transform: translate(-50%, -50%) scale(0);
34
+ opacity: 1;
35
+ }
36
+
37
+ 50% {
38
+ transform: translate(-50%, -50%) scale(1);
39
+ opacity: 0;
40
+ }
41
+ }
35
42
  }
36
43
  }
37
44
 
@@ -39,21 +46,7 @@
39
46
  background: rgba(var(--ax-color-white) 2);
40
47
  }
41
48
 
42
- ax-loading-spinner{
49
+ .ax-loading-spinner {
43
50
  @apply ax-flex;
44
51
  }
45
-
46
- @keyframes pulse2 {
47
-
48
- 0%,
49
- 100% {
50
- transform: translate(-50%, -50%) scale(0);
51
- opacity: 1;
52
- }
53
-
54
- 50% {
55
- transform: translate(-50%, -50%) scale(1);
56
- opacity: 0;
57
- }
58
- }
59
- }
52
+ }
@@ -1,5 +1,4 @@
1
1
  @layer components {
2
- ax-menu,
3
2
  .ax-menu {
4
3
  > ul {
5
4
  @apply ax-flex ax-text-sm;
@@ -28,17 +27,17 @@
28
27
  @apply ax-bg-primary-50 ax-text-primary-500 dark:ax-bg-primary-500 dark:ax-text-primary-fore;
29
28
 
30
29
  }
31
- ax-icon {
30
+ .ax-icon {
32
31
  @apply ax-text-xl;
33
32
  }
34
33
  .ax-menu-start-side {
35
34
  @apply ax-flex ax-items-center;
36
- ax-icon {
35
+ .ax-icon {
37
36
  @apply ax-me-1.5;
38
37
  }
39
38
  }
40
39
  .ax-menu-end-side {
41
- ax-icon {
40
+ .ax-icon {
42
41
  @apply ax-block ax--rotate-180 ax-transition-all ;
43
42
  &.active-icon {
44
43
  @apply ax--rotate-90;
@@ -1,6 +1,4 @@
1
1
  @layer components {
2
-
3
- ax-number-box,
4
2
  .ax-number-box {
5
3
  .ax-number-box-arrows {
6
4
  @apply ax-grid ax-invisible;
@@ -14,4 +12,4 @@
14
12
  }
15
13
  }
16
14
  }
17
- }
15
+ }
@@ -3,16 +3,16 @@
3
3
  .ax-popup {
4
4
  @apply ax-flex ax-flex-col ax-bg-white ax-w-6/12 ax-shadow-lg ax-border ax-border-solid ax-border-light-300 ax-rounded ax-outline-none ax-p-0 ax-max-h-[98vh] ax-min-h-fit ax-mx-auto ax-overflow-hidden;
5
5
  @include control-states("surface");
6
- ax-header,
7
- ax-footer {
6
+ .ax-header,
7
+ .ax-footer {
8
8
  @apply ax-bg-white ax-p-4 ax-border-light-200 dark:ax-border-light-700;
9
9
  @include control-states("surface");
10
10
  }
11
- ax-footer
11
+ .ax-footer
12
12
  {
13
13
  @apply ax-border-t;
14
14
  }
15
- ax-header
15
+ .ax-header
16
16
  {
17
17
  @apply ax-border-b;
18
18
  }
@@ -1,11 +1,10 @@
1
1
  @layer components {
2
- ax-progress-bar,
3
2
  .ax-progress-bar {
4
3
  @apply ax-flex ax-justify-between ax-items-center ax-text-sm;
5
- ax-prefix{
4
+ .ax-prefix{
6
5
  @apply ax-pe-2;
7
6
  }
8
- ax-suffix{
7
+ .ax-suffix{
9
8
  @apply ax-ps-2;
10
9
  }
11
10
  .ax-progress-bar-container {
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- ax-radio,.ax-radio {
2
+ .ax-radio {
3
3
  @apply ax-text-sm ax-font-medium ax-text-light-700;
4
4
 
5
5
  .ax-radio {
@@ -1,6 +1,6 @@
1
1
  @layer components {
2
2
  .ax-dark {
3
- ax-range-slider {
3
+ .ax-range-slider {
4
4
  &.ax-primary-default {
5
5
  input {
6
6
  background: linear-gradient(
@@ -91,7 +91,7 @@
91
91
  }
92
92
  }
93
93
  }
94
- ax-range-slider {
94
+ .ax-range-slider {
95
95
  @apply ax-w-full;
96
96
  --ax-current-value: 0%;
97
97
  input {
@@ -1,5 +1,4 @@
1
1
  @layer components {
2
- ax-result,
3
2
  .ax-result {
4
3
  @apply ax-flex ax-flex-col;
5
4
  .ax-result-icon {
@@ -1,9 +1,9 @@
1
1
  @layer components {
2
- ax-select-box {
2
+ .ax-select-box {
3
3
  .ax-select-box-selection {
4
4
  @apply ax-flex ax-justify-center ax-items-center ax-outline-none;
5
5
 
6
- .ax-badge{
6
+ .ax-badge {
7
7
  @apply dark:ax-bg-white/[0.16] dark:ax-text-light-100;
8
8
  }
9
9
  .ax-dropdown-chips {
@@ -1,5 +1,4 @@
1
1
  @layer components {
2
- ax-switch,
3
2
  .ax-switch {
4
3
  button {
5
4
  @apply ax-relative ax-inline-block ax-align-middle ax-border-none ax-cursor-pointer ax-rounded-full ax-bg-light-300 ax-text-light-fore ax-transition-all;
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- ax-tabs {
2
+ .ax-tabs {
3
3
  @apply ax-p-0 ax-overflow-y-hidden ax-overflow-x-auto ax-w-max ax-block;
4
4
 
5
5
  .ax-items-wrapper {
@@ -20,11 +20,11 @@
20
20
  @apply ax-text-black;
21
21
  }
22
22
 
23
- ax-prefix {
23
+ .ax-prefix {
24
24
  @apply ax-flex ax-flex-row ax-pe-2;
25
25
  }
26
26
 
27
- ax-suffix {
27
+ .ax-suffix {
28
28
  @apply ax-flex ax-flex-row ax-ps-2;
29
29
  }
30
30
  }
@@ -1,5 +1,4 @@
1
1
  @layer components {
2
- ax-textarea,
3
2
  .ax-textarea {
4
3
  min-height: calc(var(--ax-base-size) * var(--ax-base-ratio));
5
4
  @apply ax-relative ax-flex ax-flex-col ax-rounded ax-bg-white ax-shadow-sm ax-border ax-border-solid ax-border-light-300 ax-overflow-hidden ax-w-full;
@@ -18,19 +17,19 @@
18
17
  @apply ax-outline-transparent;
19
18
  }
20
19
  }
21
- > ax-prefix,
22
- > ax-suffix {
20
+ > .ax-prefix,
21
+ > .ax-suffix {
23
22
  @apply ax-mb-2 ax-p-1.5 ax-absolute;
24
23
  @include control-states("editor");
25
- ax-button {
24
+ .ax-button {
26
25
  @apply ax-text-sm;
27
26
  --ax-base-size: 5px;
28
27
  }
29
28
  }
30
- > ax-prefix {
29
+ > .ax-prefix {
31
30
  @apply ax-top-0 ax-end-0;
32
31
  }
33
- > ax-suffix {
32
+ > .ax-suffix {
34
33
  @apply ax-bottom-0 ax-end-0;
35
34
  }
36
35
 
@@ -1,5 +1,5 @@
1
1
  @layer components {
2
- ax-toast {
2
+ .ax-toast {
3
3
  width: max(20vw, 350px);
4
4
  @include screen("mobile") {
5
5
  width: 98vw;
@@ -1,5 +1,4 @@
1
1
  @layer components {
2
- ax-tree-view,
3
2
  .ax-tree-view {
4
3
  > ul {
5
4
  li {
@@ -22,7 +22,6 @@
22
22
  @import "./label";
23
23
  @import "./list";
24
24
  @import "./numberbox";
25
- @import "./picker";
26
25
  @import "./loading";
27
26
  @import "./menu";
28
27
  @import "./popup";
@@ -33,7 +32,6 @@
33
32
  @import "./result";
34
33
  @import "./selectbox";
35
34
  @import "./selection-list";
36
- @import "./side-menu";
37
35
  @import "./skeleton";
38
36
  @import "./switch";
39
37
  @import "./table";