nuxt-glorious 2.0.0-develop-0 → 2.0.0-develop-2
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/dist/module.json +1 -1
- package/dist/runtime/components/G/Modal.vue +1 -1
- package/dist/runtime/components/G/Table.vue +11 -6
- package/dist/runtime/components/helper.mjs +1 -12
- package/dist/runtime/scss/alert.css +33 -0
- package/dist/runtime/scss/avatar.css +57 -0
- package/dist/runtime/scss/breadcrumb.css +6 -0
- package/dist/runtime/scss/button.css +113 -0
- package/dist/runtime/scss/checkbox.css +94 -0
- package/dist/runtime/scss/drawer.css +56 -0
- package/dist/runtime/scss/file.css +134 -0
- package/dist/runtime/scss/glorious/alert.css +33 -0
- package/dist/runtime/scss/glorious/avatar.css +57 -0
- package/dist/runtime/scss/glorious/breadcrumb.css +6 -0
- package/dist/runtime/scss/glorious/button.css +113 -0
- package/dist/runtime/scss/glorious/checkbox.css +94 -0
- package/dist/runtime/scss/glorious/drawer.css +56 -0
- package/dist/runtime/scss/glorious/file.css +134 -0
- package/dist/runtime/scss/glorious/glorious.css +1334 -0
- package/dist/runtime/scss/glorious/input.css +184 -0
- package/dist/runtime/scss/glorious/loading.css +43 -0
- package/dist/runtime/scss/glorious/mixin.css +0 -0
- package/dist/runtime/scss/glorious/modal.css +69 -0
- package/dist/runtime/scss/glorious/paginate.css +32 -0
- package/dist/runtime/scss/glorious/radio.css +121 -0
- package/dist/{scss/rating.scss → runtime/scss/glorious/rating.css} +30 -29
- package/dist/runtime/scss/glorious/select.css +49 -0
- package/dist/runtime/scss/glorious/switch.css +61 -0
- package/dist/runtime/scss/glorious/tab.css +9 -0
- package/dist/runtime/scss/glorious/table.css +99 -0
- package/dist/runtime/scss/glorious/textarea.css +67 -0
- package/dist/runtime/scss/glorious/timeline.css +47 -0
- package/dist/runtime/scss/glorious/tooltip.css +9 -0
- package/dist/runtime/scss/glorious/variable.css +0 -0
- package/dist/runtime/scss/glorious.css +1334 -0
- package/dist/runtime/scss/input.css +184 -0
- package/dist/runtime/scss/loading.css +43 -0
- package/dist/runtime/scss/mixin.css +0 -0
- package/dist/runtime/scss/modal.css +69 -0
- package/dist/runtime/scss/paginate.css +32 -0
- package/dist/runtime/scss/radio.css +121 -0
- package/dist/runtime/scss/rating.css +30 -0
- package/dist/runtime/scss/select.css +49 -0
- package/dist/runtime/scss/switch.css +61 -0
- package/dist/runtime/scss/tab.css +9 -0
- package/dist/runtime/scss/table.css +99 -0
- package/dist/runtime/scss/textarea.css +67 -0
- package/dist/runtime/scss/timeline.css +47 -0
- package/dist/runtime/scss/tooltip.css +9 -0
- package/dist/runtime/scss/variable.css +0 -0
- package/package.json +5 -3
- package/dist/scss/alert.scss +0 -7
- package/dist/scss/avatar.scss +0 -13
- package/dist/scss/breadcrumb.scss +0 -6
- package/dist/scss/button.scss +0 -30
- package/dist/scss/checkbox.scss +0 -52
- package/dist/scss/drawer.scss +0 -64
- package/dist/scss/file.scss +0 -19
- package/dist/scss/glorious.scss +0 -22
- package/dist/scss/input.scss +0 -93
- package/dist/scss/loading.scss +0 -92
- package/dist/scss/mixin.scss +0 -40
- package/dist/scss/modal.scss +0 -76
- package/dist/scss/paginate.scss +0 -28
- package/dist/scss/radio.scss +0 -59
- package/dist/scss/select.scss +0 -44
- package/dist/scss/switch.scss +0 -74
- package/dist/scss/tab.scss +0 -11
- package/dist/scss/table.scss +0 -41
- package/dist/scss/textarea.scss +0 -47
- package/dist/scss/timeline.scss +0 -40
- package/dist/scss/tooltip.scss +0 -14
- package/dist/scss/variable.scss +0 -19
@@ -0,0 +1,99 @@
|
|
1
|
+
.glorious-table {
|
2
|
+
@apply overflow-x-auto;
|
3
|
+
}
|
4
|
+
.glorious-table.color-orange > table > thead {
|
5
|
+
@apply rounded-t-md overflow-hidden;
|
6
|
+
}
|
7
|
+
.glorious-table.color-orange > table > thead > tr > th:first-child {
|
8
|
+
@apply rounded-r-lg bg-orange-400;
|
9
|
+
}
|
10
|
+
.glorious-table.color-orange > table > thead > tr > th {
|
11
|
+
@apply bg-orange-400;
|
12
|
+
}
|
13
|
+
.glorious-table.color-orange > table > thead > tr > th:last-child {
|
14
|
+
@apply rounded-l-lg bg-orange-400;
|
15
|
+
}
|
16
|
+
.glorious-table.color-orange > table > tbody > tr:nth-child(even) {
|
17
|
+
@apply bg-orange-50;
|
18
|
+
}
|
19
|
+
.glorious-table.color-orange > table > tbody > tr > td {
|
20
|
+
@apply px-4 py-2 text-center;
|
21
|
+
}
|
22
|
+
.glorious-table.color-blue > table > thead {
|
23
|
+
@apply rounded-t-md overflow-hidden;
|
24
|
+
}
|
25
|
+
.glorious-table.color-blue > table > thead > tr > th:first-child {
|
26
|
+
@apply rounded-r-lg bg-blue-400;
|
27
|
+
}
|
28
|
+
.glorious-table.color-blue > table > thead > tr > th {
|
29
|
+
@apply bg-blue-400;
|
30
|
+
}
|
31
|
+
.glorious-table.color-blue > table > thead > tr > th:last-child {
|
32
|
+
@apply rounded-l-lg bg-blue-400;
|
33
|
+
}
|
34
|
+
.glorious-table.color-blue > table > tbody > tr:nth-child(even) {
|
35
|
+
@apply bg-blue-50;
|
36
|
+
}
|
37
|
+
.glorious-table.color-blue > table > tbody > tr > td {
|
38
|
+
@apply px-4 py-2 text-center;
|
39
|
+
}
|
40
|
+
.glorious-table.color-gray > table > thead {
|
41
|
+
@apply rounded-t-md overflow-hidden;
|
42
|
+
}
|
43
|
+
.glorious-table.color-gray > table > thead > tr > th:first-child {
|
44
|
+
@apply rounded-r-lg bg-gray-400;
|
45
|
+
}
|
46
|
+
.glorious-table.color-gray > table > thead > tr > th {
|
47
|
+
@apply bg-gray-400;
|
48
|
+
}
|
49
|
+
.glorious-table.color-gray > table > thead > tr > th:last-child {
|
50
|
+
@apply rounded-l-lg bg-gray-400;
|
51
|
+
}
|
52
|
+
.glorious-table.color-gray > table > tbody > tr:nth-child(even) {
|
53
|
+
@apply bg-gray-50;
|
54
|
+
}
|
55
|
+
.glorious-table.color-gray > table > tbody > tr > td {
|
56
|
+
@apply px-4 py-2 text-center;
|
57
|
+
}
|
58
|
+
.glorious-table.color-red > table > thead {
|
59
|
+
@apply rounded-t-md overflow-hidden;
|
60
|
+
}
|
61
|
+
.glorious-table.color-red > table > thead > tr > th:first-child {
|
62
|
+
@apply rounded-r-lg bg-red-400;
|
63
|
+
}
|
64
|
+
.glorious-table.color-red > table > thead > tr > th {
|
65
|
+
@apply bg-red-400;
|
66
|
+
}
|
67
|
+
.glorious-table.color-red > table > thead > tr > th:last-child {
|
68
|
+
@apply rounded-l-lg bg-red-400;
|
69
|
+
}
|
70
|
+
.glorious-table.color-red > table > tbody > tr:nth-child(even) {
|
71
|
+
@apply bg-red-50;
|
72
|
+
}
|
73
|
+
.glorious-table.color-red > table > tbody > tr > td {
|
74
|
+
@apply px-4 py-2 text-center;
|
75
|
+
}
|
76
|
+
.glorious-table.color-green > table > thead {
|
77
|
+
@apply rounded-t-md overflow-hidden;
|
78
|
+
}
|
79
|
+
.glorious-table.color-green > table > thead > tr > th:first-child {
|
80
|
+
@apply rounded-r-lg bg-green-400;
|
81
|
+
}
|
82
|
+
.glorious-table.color-green > table > thead > tr > th {
|
83
|
+
@apply bg-green-400;
|
84
|
+
}
|
85
|
+
.glorious-table.color-green > table > thead > tr > th:last-child {
|
86
|
+
@apply rounded-l-lg bg-green-400;
|
87
|
+
}
|
88
|
+
.glorious-table.color-green > table > tbody > tr:nth-child(even) {
|
89
|
+
@apply bg-green-50;
|
90
|
+
}
|
91
|
+
.glorious-table.color-green > table > tbody > tr > td {
|
92
|
+
@apply px-4 py-2 text-center;
|
93
|
+
}
|
94
|
+
.glorious-table > table {
|
95
|
+
@apply w-full;
|
96
|
+
}
|
97
|
+
.glorious-table > table > thead > tr > th {
|
98
|
+
@apply px-4 py-2 text-center;
|
99
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
.glorious-textarea-orange {
|
2
|
+
@apply ring-orange-500;
|
3
|
+
@apply rounded-md ring-1 px-3;
|
4
|
+
}
|
5
|
+
.glorious-textarea-orange:focus-visible {
|
6
|
+
@apply outline-none ring-2;
|
7
|
+
}
|
8
|
+
.glorious-textarea-orange:disabled {
|
9
|
+
@apply bg-green-300 cursor-not-allowed;
|
10
|
+
}
|
11
|
+
|
12
|
+
.glorious-textarea-blue {
|
13
|
+
@apply ring-blue-500;
|
14
|
+
@apply rounded-md ring-1 px-3;
|
15
|
+
}
|
16
|
+
.glorious-textarea-blue:focus-visible {
|
17
|
+
@apply outline-none ring-2;
|
18
|
+
}
|
19
|
+
.glorious-textarea-blue:disabled {
|
20
|
+
@apply bg-green-300 cursor-not-allowed;
|
21
|
+
}
|
22
|
+
|
23
|
+
.glorious-textarea-gray {
|
24
|
+
@apply ring-gray-500;
|
25
|
+
@apply rounded-md ring-1 px-3;
|
26
|
+
}
|
27
|
+
.glorious-textarea-gray:focus-visible {
|
28
|
+
@apply outline-none ring-2;
|
29
|
+
}
|
30
|
+
.glorious-textarea-gray:disabled {
|
31
|
+
@apply bg-green-300 cursor-not-allowed;
|
32
|
+
}
|
33
|
+
|
34
|
+
.glorious-textarea-red {
|
35
|
+
@apply ring-red-500;
|
36
|
+
@apply rounded-md ring-1 px-3;
|
37
|
+
}
|
38
|
+
.glorious-textarea-red:focus-visible {
|
39
|
+
@apply outline-none ring-2;
|
40
|
+
}
|
41
|
+
.glorious-textarea-red:disabled {
|
42
|
+
@apply bg-green-300 cursor-not-allowed;
|
43
|
+
}
|
44
|
+
|
45
|
+
.glorious-textarea-green {
|
46
|
+
@apply ring-green-500;
|
47
|
+
@apply rounded-md ring-1 px-3;
|
48
|
+
}
|
49
|
+
.glorious-textarea-green:focus-visible {
|
50
|
+
@apply outline-none ring-2;
|
51
|
+
}
|
52
|
+
.glorious-textarea-green:disabled {
|
53
|
+
@apply bg-green-300 cursor-not-allowed;
|
54
|
+
}
|
55
|
+
|
56
|
+
.glorious-textarea {
|
57
|
+
@apply relative w-full flex flex-col;
|
58
|
+
}
|
59
|
+
.glorious-textarea > textarea {
|
60
|
+
@apply w-full p-2;
|
61
|
+
}
|
62
|
+
.glorious-textarea > textarea.validation-error {
|
63
|
+
@apply ring-red-500 bg-red-50;
|
64
|
+
}
|
65
|
+
.glorious-textarea > textarea::placeholder {
|
66
|
+
@apply text-[14px];
|
67
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
.glorious-timeline-items {
|
2
|
+
@apply relative;
|
3
|
+
}
|
4
|
+
.glorious-timeline-items div {
|
5
|
+
@apply relative;
|
6
|
+
}
|
7
|
+
.glorious-timeline-items div::before {
|
8
|
+
content: "";
|
9
|
+
@apply absolute w-[2px] right-[-15px];
|
10
|
+
}
|
11
|
+
.glorious-timeline-items div::before:not(:last-child) {
|
12
|
+
@apply h-[calc(100%+20px)];
|
13
|
+
}
|
14
|
+
.glorious-timeline-items-count {
|
15
|
+
@apply absolute w-5 h-5 top-0 right-[-24px] rounded-full;
|
16
|
+
@apply text-white flex justify-center items-center font-medium;
|
17
|
+
}
|
18
|
+
.glorious-timeline-items.color-orange > div::before {
|
19
|
+
@apply bg-orange-500;
|
20
|
+
}
|
21
|
+
.glorious-timeline-items.color-blue > div::before {
|
22
|
+
@apply bg-blue-500;
|
23
|
+
}
|
24
|
+
.glorious-timeline-items.color-gray > div::before {
|
25
|
+
@apply bg-gray-500;
|
26
|
+
}
|
27
|
+
.glorious-timeline-items.color-red > div::before {
|
28
|
+
@apply bg-red-500;
|
29
|
+
}
|
30
|
+
.glorious-timeline-items.color-green > div::before {
|
31
|
+
@apply bg-green-500;
|
32
|
+
}
|
33
|
+
.glorious-timeline-items.color-orange .glorious-timeline-items-count {
|
34
|
+
@apply bg-orange-500;
|
35
|
+
}
|
36
|
+
.glorious-timeline-items.color-blue .glorious-timeline-items-count {
|
37
|
+
@apply bg-blue-500;
|
38
|
+
}
|
39
|
+
.glorious-timeline-items.color-gray .glorious-timeline-items-count {
|
40
|
+
@apply bg-gray-500;
|
41
|
+
}
|
42
|
+
.glorious-timeline-items.color-red .glorious-timeline-items-count {
|
43
|
+
@apply bg-red-500;
|
44
|
+
}
|
45
|
+
.glorious-timeline-items.color-green .glorious-timeline-items-count {
|
46
|
+
@apply bg-green-500;
|
47
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
.glorious-tooltip {
|
2
|
+
@apply relative w-max;
|
3
|
+
}
|
4
|
+
.glorious-tooltip > .tooltip-slot:hover ~ .tooltip-content {
|
5
|
+
@apply opacity-100;
|
6
|
+
}
|
7
|
+
.glorious-tooltip > .tooltip-content {
|
8
|
+
@apply bg-white w-max rounded-lg shadow-md pt-2 px-3 flex absolute bottom-10 opacity-0 transition-all duration-100 ease-in;
|
9
|
+
}
|
File without changes
|