@acorex/styles 5.0.1 → 5.0.4
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 +2 -2
- package/package.json +11 -11
- package/src/base/_colors.scss +16 -16
- package/src/base/index.scss +7 -7
- package/src/components/_alert.scss +147 -147
- package/src/components/_badge.scss +39 -39
- package/src/components/_button.scss +651 -651
- package/src/components/_calendar.scss +96 -94
- package/src/components/_carousel.scss +61 -61
- package/src/components/_checkbox.scss +24 -24
- package/src/components/_datapager.scss +39 -39
- package/src/components/_datepicker.scss +5 -7
- package/src/components/_dialog.scss +61 -61
- package/src/components/_drawer.scss +79 -79
- package/src/components/_dropdown.scss +177 -177
- package/src/components/_editor-container.scss +69 -57
- package/src/components/_form.scss +8 -10
- package/src/components/_input.scss +16 -16
- package/src/components/_label.scss +4 -4
- package/src/components/_list.scss +49 -57
- package/src/components/_loading.scss +53 -53
- package/src/components/_popup.scss +86 -86
- package/src/components/_radio.scss +30 -30
- package/src/components/_range-slider.scss +14 -0
- package/src/components/_selectbox.scss +15 -15
- package/src/components/_selection-list.scss +28 -28
- package/src/components/_side-menu.scss +46 -46
- package/src/components/_skeleton.scss +25 -0
- package/src/components/_switch.scss +200 -178
- package/src/components/_table.scss +22 -22
- package/src/components/_tabs.scss +117 -117
- package/src/components/_toast.scss +93 -93
- package/src/components/_tooltip.scss +44 -44
- package/src/components/index.scss +29 -27
- package/src/variables/_colors.scss +135 -1
- package/src/variables/_mixins.scss +18 -18
@@ -1,117 +1,117 @@
|
|
1
|
-
@layer components {
|
2
|
-
.ax-tabs {
|
3
|
-
@apply ax-flex ax-p-0 ax-overflow-hidden;
|
4
|
-
&.ax-tabs-full {
|
5
|
-
.ax-tab-item-container,
|
6
|
-
.ax-tab-item {
|
7
|
-
@apply ax-flex-1;
|
8
|
-
}
|
9
|
-
}
|
10
|
-
|
11
|
-
&.ax-tabs-min-width {
|
12
|
-
.ax-tab-item {
|
13
|
-
min-width: 250px;
|
14
|
-
}
|
15
|
-
}
|
16
|
-
|
17
|
-
& > .ax-tab-controll {
|
18
|
-
@apply ax-flex ax-items-center ax-justify-center ax-px-1 ax-cursor-pointer;
|
19
|
-
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
|
20
|
-
0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
21
|
-
}
|
22
|
-
|
23
|
-
.ax-tab-item-container {
|
24
|
-
@apply ax-flex ax-overflow-x-auto;
|
25
|
-
.ax-tab-item {
|
26
|
-
@apply ax-text-center
|
27
|
-
ax-px-5
|
28
|
-
ax-cursor-pointer
|
29
|
-
ax-whitespace-nowrap
|
30
|
-
ax-font-medium
|
31
|
-
ax-flex
|
32
|
-
ax-items-center
|
33
|
-
ax-justify-center;
|
34
|
-
height: calc(var(--ax-base-size) * var(--ax-base-ratio) * 1.2);
|
35
|
-
line-height: calc((var(--ax-base-size) * var(--ax-base-ratio)) / 2);
|
36
|
-
&.ax-state-disabled {
|
37
|
-
background-color: rgb(var(--ax-color-disabled)) !important;
|
38
|
-
color: rgb(var(--ax-color-disabled-fore)) !important;
|
39
|
-
cursor: not-allowed !important;
|
40
|
-
}
|
41
|
-
&.ax-state-active {
|
42
|
-
@apply ax-text-black;
|
43
|
-
}
|
44
|
-
.ax-ic {
|
45
|
-
@apply ax-text-2xl;
|
46
|
-
}
|
47
|
-
}
|
48
|
-
}
|
49
|
-
|
50
|
-
&.ax-tabs-default {
|
51
|
-
.ax-tab-item-container {
|
52
|
-
@apply ax-border ax-border-solid ax-border-default ax-shadow-sm ax-rounded;
|
53
|
-
.ax-tab-item {
|
54
|
-
@apply ax-bg-white ax-border-r ax-border-b-2 ax-border-solid ax-border;
|
55
|
-
border-bottom-color: transparent !important;
|
56
|
-
&:first-child {
|
57
|
-
@apply ax-rounded-l;
|
58
|
-
}
|
59
|
-
&:last-child {
|
60
|
-
@apply ax-rounded-r ax-border-r-0;
|
61
|
-
}
|
62
|
-
&:hover,
|
63
|
-
&.ax-state-active {
|
64
|
-
@apply ax-font-medium;
|
65
|
-
border-bottom-color: rgb(var(--ax-color-primary)) !important;
|
66
|
-
}
|
67
|
-
}
|
68
|
-
}
|
69
|
-
}
|
70
|
-
|
71
|
-
&.ax-tabs-underline {
|
72
|
-
.ax-tab-item {
|
73
|
-
@apply ax-border-b-2 ax-border-solid ax-border-default;
|
74
|
-
|
75
|
-
&.ax-state-active {
|
76
|
-
@apply ax-border-primary ax-text-primary;
|
77
|
-
|
78
|
-
&:hover {
|
79
|
-
@apply ax-border-primary;
|
80
|
-
}
|
81
|
-
}
|
82
|
-
|
83
|
-
&:hover {
|
84
|
-
@apply ax-border-primary-300 ax-text-primary;
|
85
|
-
}
|
86
|
-
}
|
87
|
-
}
|
88
|
-
|
89
|
-
&.ax-tabs-pills {
|
90
|
-
.ax-tab-item {
|
91
|
-
@apply ax-text-light-fore ax-mr-1 ax-rounded;
|
92
|
-
|
93
|
-
&:hover {
|
94
|
-
@apply ax-bg-light-300 ax-text-light-fore;
|
95
|
-
}
|
96
|
-
|
97
|
-
&.ax-state-active {
|
98
|
-
@apply ax-bg-light-300 ax-text-light-fore;
|
99
|
-
}
|
100
|
-
}
|
101
|
-
}
|
102
|
-
|
103
|
-
&.ax-tabs-pills-color {
|
104
|
-
.ax-tab-item {
|
105
|
-
@apply ax-text-light-fore ax-mr-1 ax-rounded;
|
106
|
-
|
107
|
-
&:hover {
|
108
|
-
@apply ax-bg-primary-100 ax-text-primary;
|
109
|
-
}
|
110
|
-
|
111
|
-
&.ax-state-active {
|
112
|
-
@apply ax-bg-primary-100 ax-text-primary;
|
113
|
-
}
|
114
|
-
}
|
115
|
-
}
|
116
|
-
}
|
117
|
-
}
|
1
|
+
@layer components {
|
2
|
+
.ax-tabs {
|
3
|
+
@apply ax-flex ax-p-0 ax-overflow-hidden;
|
4
|
+
&.ax-tabs-full {
|
5
|
+
.ax-tab-item-container,
|
6
|
+
.ax-tab-item {
|
7
|
+
@apply ax-flex-1;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
&.ax-tabs-min-width {
|
12
|
+
.ax-tab-item {
|
13
|
+
min-width: 250px;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
|
17
|
+
& > .ax-tab-controll {
|
18
|
+
@apply ax-flex ax-items-center ax-justify-center ax-px-1 ax-cursor-pointer;
|
19
|
+
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
|
20
|
+
0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
21
|
+
}
|
22
|
+
|
23
|
+
.ax-tab-item-container {
|
24
|
+
@apply ax-flex ax-overflow-x-auto;
|
25
|
+
.ax-tab-item {
|
26
|
+
@apply ax-text-center
|
27
|
+
ax-px-5
|
28
|
+
ax-cursor-pointer
|
29
|
+
ax-whitespace-nowrap
|
30
|
+
ax-font-medium
|
31
|
+
ax-flex
|
32
|
+
ax-items-center
|
33
|
+
ax-justify-center;
|
34
|
+
height: calc(var(--ax-base-size) * var(--ax-base-ratio) * 1.2);
|
35
|
+
line-height: calc((var(--ax-base-size) * var(--ax-base-ratio)) / 2);
|
36
|
+
&.ax-state-disabled {
|
37
|
+
background-color: rgb(var(--ax-color-disabled)) !important;
|
38
|
+
color: rgb(var(--ax-color-disabled-fore)) !important;
|
39
|
+
cursor: not-allowed !important;
|
40
|
+
}
|
41
|
+
&.ax-state-active {
|
42
|
+
@apply ax-text-black;
|
43
|
+
}
|
44
|
+
.ax-ic {
|
45
|
+
@apply ax-text-2xl;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
&.ax-tabs-default {
|
51
|
+
.ax-tab-item-container {
|
52
|
+
@apply ax-border ax-border-solid ax-border-default ax-shadow-sm ax-rounded;
|
53
|
+
.ax-tab-item {
|
54
|
+
@apply ax-bg-white ax-border-r ax-border-b-2 ax-border-solid ax-border;
|
55
|
+
border-bottom-color: transparent !important;
|
56
|
+
&:first-child {
|
57
|
+
@apply ax-rounded-l;
|
58
|
+
}
|
59
|
+
&:last-child {
|
60
|
+
@apply ax-rounded-r ax-border-r-0;
|
61
|
+
}
|
62
|
+
&:hover,
|
63
|
+
&.ax-state-active {
|
64
|
+
@apply ax-font-medium;
|
65
|
+
border-bottom-color: rgb(var(--ax-color-primary)) !important;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
&.ax-tabs-underline {
|
72
|
+
.ax-tab-item {
|
73
|
+
@apply ax-border-b-2 ax-border-solid ax-border-default;
|
74
|
+
|
75
|
+
&.ax-state-active {
|
76
|
+
@apply ax-border-primary ax-text-primary;
|
77
|
+
|
78
|
+
&:hover {
|
79
|
+
@apply ax-border-primary;
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
&:hover {
|
84
|
+
@apply ax-border-primary-300 ax-text-primary;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
&.ax-tabs-pills {
|
90
|
+
.ax-tab-item {
|
91
|
+
@apply ax-text-light-fore ax-mr-1 ax-rounded;
|
92
|
+
|
93
|
+
&:hover {
|
94
|
+
@apply ax-bg-light-300 ax-text-light-fore;
|
95
|
+
}
|
96
|
+
|
97
|
+
&.ax-state-active {
|
98
|
+
@apply ax-bg-light-300 ax-text-light-fore;
|
99
|
+
}
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
&.ax-tabs-pills-color {
|
104
|
+
.ax-tab-item {
|
105
|
+
@apply ax-text-light-fore ax-mr-1 ax-rounded;
|
106
|
+
|
107
|
+
&:hover {
|
108
|
+
@apply ax-bg-primary-100 ax-text-primary;
|
109
|
+
}
|
110
|
+
|
111
|
+
&.ax-state-active {
|
112
|
+
@apply ax-bg-primary-100 ax-text-primary;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
}
|
117
|
+
}
|
@@ -1,94 +1,94 @@
|
|
1
|
-
@import "../variables/mixins";
|
2
|
-
|
3
|
-
@layer components {
|
4
|
-
.ax-toast {
|
5
|
-
@apply ax-grid ax-grid-cols-12 ax-gap-4 ax-relative ax-bg-white ax-shadow-md ax-border-default ax-border ax-border-solid ax-rounded-lg ax-px-4 ax-py-2 ax-overflow-hidden ax-items-center;
|
6
|
-
width: max(20vw, 350px);
|
7
|
-
@include respond(mobile) {
|
8
|
-
width: 98vw;
|
9
|
-
}
|
10
|
-
|
11
|
-
@include respond(tablet) {
|
12
|
-
width: 35vw;
|
13
|
-
}
|
14
|
-
.ax-toast-icon-side {
|
15
|
-
@apply ax-col-span-1 ax-h-full;
|
16
|
-
}
|
17
|
-
.ax-toast-content-side {
|
18
|
-
@apply ax-col-span-10;
|
19
|
-
.ax-toast-title {
|
20
|
-
@apply ax-text-sm ax-font-semibold ax-text-gray-700;
|
21
|
-
}
|
22
|
-
.ax-toast-content {
|
23
|
-
@apply ax-py-2 ax-text-sm ax-text-gray-400;
|
24
|
-
}
|
25
|
-
}
|
26
|
-
.ax-toast-dismiss-icon {
|
27
|
-
@apply ax-col-span-1 ax-cursor-pointer ax-h-full;
|
28
|
-
.ax-ic {
|
29
|
-
@apply ax-text-base;
|
30
|
-
}
|
31
|
-
}
|
32
|
-
.ax-toast-dismiss-icon {
|
33
|
-
@apply ax-text-gray-400;
|
34
|
-
}
|
35
|
-
.ax-toast-buttons {
|
36
|
-
@apply ax-col-span-12;
|
37
|
-
}
|
38
|
-
.ax-toast-progress {
|
39
|
-
@apply ax-absolute ax-bottom-0 ax-h-1 ax-w-0;
|
40
|
-
animation-duration: 4s;
|
41
|
-
animation-timing-function: linear;
|
42
|
-
animation-name: progressBar;
|
43
|
-
}
|
44
|
-
@keyframes progressBar {
|
45
|
-
0% {
|
46
|
-
width: 100%;
|
47
|
-
}
|
48
|
-
100% {
|
49
|
-
width: 0%;
|
50
|
-
}
|
51
|
-
}
|
52
|
-
|
53
|
-
&.ax-success {
|
54
|
-
@apply ax-bg-white ax-text-gray-500;
|
55
|
-
.ax-toast-icon {
|
56
|
-
@apply ax-text-success;
|
57
|
-
}
|
58
|
-
|
59
|
-
.ax-toast-progress {
|
60
|
-
@apply ax-bg-success;
|
61
|
-
}
|
62
|
-
}
|
63
|
-
|
64
|
-
&.ax-danger {
|
65
|
-
.ax-toast-icon {
|
66
|
-
@apply ax-text-danger;
|
67
|
-
}
|
68
|
-
|
69
|
-
.ax-toast-progress {
|
70
|
-
@apply ax-bg-danger-400;
|
71
|
-
}
|
72
|
-
}
|
73
|
-
|
74
|
-
&.ax-warning {
|
75
|
-
.ax-toast-icon {
|
76
|
-
@apply ax-text-warning;
|
77
|
-
}
|
78
|
-
|
79
|
-
.ax-toast-progress {
|
80
|
-
@apply ax-bg-warning-400;
|
81
|
-
}
|
82
|
-
}
|
83
|
-
|
84
|
-
&.ax-info {
|
85
|
-
.ax-toast-icon {
|
86
|
-
@apply ax-text-info;
|
87
|
-
}
|
88
|
-
|
89
|
-
.ax-toast-progress {
|
90
|
-
@apply ax-bg-info-400;
|
91
|
-
}
|
92
|
-
}
|
93
|
-
}
|
1
|
+
@import "../variables/mixins";
|
2
|
+
|
3
|
+
@layer components {
|
4
|
+
.ax-toast {
|
5
|
+
@apply ax-grid ax-grid-cols-12 ax-gap-4 ax-relative ax-bg-white ax-shadow-md ax-border-default ax-border ax-border-solid ax-rounded-lg ax-px-4 ax-py-2 ax-overflow-hidden ax-items-center;
|
6
|
+
width: max(20vw, 350px);
|
7
|
+
@include respond(mobile) {
|
8
|
+
width: 98vw;
|
9
|
+
}
|
10
|
+
|
11
|
+
@include respond(tablet) {
|
12
|
+
width: 35vw;
|
13
|
+
}
|
14
|
+
.ax-toast-icon-side {
|
15
|
+
@apply ax-col-span-1 ax-h-full;
|
16
|
+
}
|
17
|
+
.ax-toast-content-side {
|
18
|
+
@apply ax-col-span-10;
|
19
|
+
.ax-toast-title {
|
20
|
+
@apply ax-text-sm ax-font-semibold ax-text-gray-700;
|
21
|
+
}
|
22
|
+
.ax-toast-content {
|
23
|
+
@apply ax-py-2 ax-text-sm ax-text-gray-400;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
.ax-toast-dismiss-icon {
|
27
|
+
@apply ax-col-span-1 ax-cursor-pointer ax-h-full;
|
28
|
+
.ax-ic {
|
29
|
+
@apply ax-text-base;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
.ax-toast-dismiss-icon {
|
33
|
+
@apply ax-text-gray-400;
|
34
|
+
}
|
35
|
+
.ax-toast-buttons {
|
36
|
+
@apply ax-col-span-12;
|
37
|
+
}
|
38
|
+
.ax-toast-progress {
|
39
|
+
@apply ax-absolute ax-bottom-0 ax-h-1 ax-w-0;
|
40
|
+
animation-duration: 4s;
|
41
|
+
animation-timing-function: linear;
|
42
|
+
animation-name: progressBar;
|
43
|
+
}
|
44
|
+
@keyframes progressBar {
|
45
|
+
0% {
|
46
|
+
width: 100%;
|
47
|
+
}
|
48
|
+
100% {
|
49
|
+
width: 0%;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
&.ax-success {
|
54
|
+
@apply ax-bg-white ax-text-gray-500;
|
55
|
+
.ax-toast-icon {
|
56
|
+
@apply ax-text-success;
|
57
|
+
}
|
58
|
+
|
59
|
+
.ax-toast-progress {
|
60
|
+
@apply ax-bg-success;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
&.ax-danger {
|
65
|
+
.ax-toast-icon {
|
66
|
+
@apply ax-text-danger;
|
67
|
+
}
|
68
|
+
|
69
|
+
.ax-toast-progress {
|
70
|
+
@apply ax-bg-danger-400;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
&.ax-warning {
|
75
|
+
.ax-toast-icon {
|
76
|
+
@apply ax-text-warning;
|
77
|
+
}
|
78
|
+
|
79
|
+
.ax-toast-progress {
|
80
|
+
@apply ax-bg-warning-400;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
&.ax-info {
|
85
|
+
.ax-toast-icon {
|
86
|
+
@apply ax-text-info;
|
87
|
+
}
|
88
|
+
|
89
|
+
.ax-toast-progress {
|
90
|
+
@apply ax-bg-info-400;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
}
|
94
94
|
}
|
@@ -1,44 +1,44 @@
|
|
1
|
-
@layer components {
|
2
|
-
.ax-tooltip-container {
|
3
|
-
@apply ax-relative;
|
4
|
-
.ax-tooltip {
|
5
|
-
@apply ax-block ax-p-1 ax-bg-black ax-text-white ax-rounded;
|
6
|
-
}
|
7
|
-
.ax-tooltip-tringle {
|
8
|
-
width: 0;
|
9
|
-
height: 0;
|
10
|
-
border-left: 5px solid transparent;
|
11
|
-
border-right: 5px solid transparent;
|
12
|
-
border-top: 5px solid #000;
|
13
|
-
position: absolute;
|
14
|
-
|
15
|
-
&.ax-tooltip-tringle-bottom {
|
16
|
-
transform: rotate(180deg);
|
17
|
-
left: 0;
|
18
|
-
right: 0;
|
19
|
-
margin: auto;
|
20
|
-
top: -5px;
|
21
|
-
}
|
22
|
-
&.ax-tooltip-tringle-right {
|
23
|
-
transform: rotate(90deg);
|
24
|
-
top: 0;
|
25
|
-
bottom: 0;
|
26
|
-
margin: auto;
|
27
|
-
left: -7px;
|
28
|
-
}
|
29
|
-
&.ax-tooltip-tringle-top {
|
30
|
-
transform: rotate(0deg);
|
31
|
-
left: 0;
|
32
|
-
right: 0;
|
33
|
-
margin: auto;
|
34
|
-
}
|
35
|
-
&.ax-tooltip-tringle-left {
|
36
|
-
transform: rotate(270deg);
|
37
|
-
top: 0;
|
38
|
-
bottom: 0;
|
39
|
-
margin: auto;
|
40
|
-
right: -7px;
|
41
|
-
}
|
42
|
-
}
|
43
|
-
}
|
44
|
-
}
|
1
|
+
@layer components {
|
2
|
+
.ax-tooltip-container {
|
3
|
+
@apply ax-relative;
|
4
|
+
.ax-tooltip {
|
5
|
+
@apply ax-block ax-p-1 ax-bg-black ax-text-white ax-rounded;
|
6
|
+
}
|
7
|
+
.ax-tooltip-tringle {
|
8
|
+
width: 0;
|
9
|
+
height: 0;
|
10
|
+
border-left: 5px solid transparent;
|
11
|
+
border-right: 5px solid transparent;
|
12
|
+
border-top: 5px solid #000;
|
13
|
+
position: absolute;
|
14
|
+
|
15
|
+
&.ax-tooltip-tringle-bottom {
|
16
|
+
transform: rotate(180deg);
|
17
|
+
left: 0;
|
18
|
+
right: 0;
|
19
|
+
margin: auto;
|
20
|
+
top: -5px;
|
21
|
+
}
|
22
|
+
&.ax-tooltip-tringle-right {
|
23
|
+
transform: rotate(90deg);
|
24
|
+
top: 0;
|
25
|
+
bottom: 0;
|
26
|
+
margin: auto;
|
27
|
+
left: -7px;
|
28
|
+
}
|
29
|
+
&.ax-tooltip-tringle-top {
|
30
|
+
transform: rotate(0deg);
|
31
|
+
left: 0;
|
32
|
+
right: 0;
|
33
|
+
margin: auto;
|
34
|
+
}
|
35
|
+
&.ax-tooltip-tringle-left {
|
36
|
+
transform: rotate(270deg);
|
37
|
+
top: 0;
|
38
|
+
bottom: 0;
|
39
|
+
margin: auto;
|
40
|
+
right: -7px;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
@@ -1,27 +1,29 @@
|
|
1
|
-
@import "./alert";
|
2
|
-
@import "./badge";
|
3
|
-
@import "./button";
|
4
|
-
@import "./calendar";
|
5
|
-
@import "./carousel";
|
6
|
-
@import "./checkbox";
|
7
|
-
@import "./datapager";
|
8
|
-
@import "./datepicker";
|
9
|
-
@import "./dialog";
|
10
|
-
@import "./drawer";
|
11
|
-
@import "./dropdown";
|
12
|
-
@import "./editor-container";
|
13
|
-
@import "./form";
|
14
|
-
@import "./input";
|
15
|
-
@import "./label";
|
16
|
-
@import "./list";
|
17
|
-
@import "./loading";
|
18
|
-
@import "./popup";
|
19
|
-
@import "./radio";
|
20
|
-
@import "./
|
21
|
-
@import "./
|
22
|
-
@import "./
|
23
|
-
@import "./
|
24
|
-
@import "./
|
25
|
-
@import "./
|
26
|
-
@import "./
|
27
|
-
@import "./
|
1
|
+
@import "./alert";
|
2
|
+
@import "./badge";
|
3
|
+
@import "./button";
|
4
|
+
@import "./calendar";
|
5
|
+
@import "./carousel";
|
6
|
+
@import "./checkbox";
|
7
|
+
@import "./datapager";
|
8
|
+
@import "./datepicker";
|
9
|
+
@import "./dialog";
|
10
|
+
@import "./drawer";
|
11
|
+
@import "./dropdown";
|
12
|
+
@import "./editor-container";
|
13
|
+
@import "./form";
|
14
|
+
@import "./input";
|
15
|
+
@import "./label";
|
16
|
+
@import "./list";
|
17
|
+
@import "./loading";
|
18
|
+
@import "./popup";
|
19
|
+
@import "./radio";
|
20
|
+
@import "./range-slider";
|
21
|
+
@import "./selectbox";
|
22
|
+
@import "./selection-list";
|
23
|
+
@import "./side-menu";
|
24
|
+
@import "./skeleton";
|
25
|
+
@import "./switch";
|
26
|
+
@import "./table";
|
27
|
+
@import "./tabs";
|
28
|
+
@import "./toast";
|
29
|
+
@import "./tooltip";
|