daisyui 5.0.0-alpha.21 → 5.0.0-alpha.22
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/base/properties.css +49 -1
- package/base/rootcolor.css +43 -1
- package/base/scrollbar.css +37 -1
- package/colors/properties.css +500 -1
- package/colors/responsive.css +2510 -1
- package/colors/states.css +1840 -1
- package/components/alert/object.js +1 -1
- package/components/alert.css +433 -1
- package/components/avatar/object.js +1 -1
- package/components/avatar.css +385 -1
- package/components/badge/object.js +1 -1
- package/components/badge.css +589 -1
- package/components/button/object.js +1 -1
- package/components/button.css +1795 -1
- package/components/card/object.js +1 -1
- package/components/card.css +955 -1
- package/components/chat/object.js +1 -1
- package/components/chat.css +775 -1
- package/components/checkbox/object.js +1 -1
- package/components/checkbox.css +853 -1
- package/components/collapse.css +1039 -1
- package/components/countdown.css +121 -1
- package/components/divider/object.js +1 -1
- package/components/divider.css +643 -1
- package/components/dropdown/object.js +1 -1
- package/components/dropdown.css +1123 -1
- package/components/footer/object.js +1 -1
- package/components/footer.css +265 -1
- package/components/hero.css +181 -1
- package/components/input/class.json +1 -1
- package/components/input/object.js +1 -1
- package/components/input.css +1147 -1
- package/components/kbd/object.js +1 -1
- package/components/kbd.css +295 -1
- package/components/link.css +427 -1
- package/components/loading.css +271 -1
- package/components/mask.css +499 -1
- package/components/menu/object.js +1 -1
- package/components/menu.css +1411 -1
- package/components/navbar.css +151 -1
- package/components/progress.css +967 -1
- package/components/radialprogress.css +223 -1
- package/components/radio/object.js +1 -1
- package/components/radio.css +601 -1
- package/components/range/object.js +1 -1
- package/components/range.css +973 -1
- package/components/rating/object.js +1 -1
- package/components/rating.css +613 -1
- package/components/select/class.json +1 -1
- package/components/select/object.js +1 -1
- package/components/select.css +925 -1
- package/components/skeleton/object.js +1 -1
- package/components/skeleton.css +145 -1
- package/components/stack.css +157 -1
- package/components/status.css +385 -1
- package/components/steps/object.js +1 -1
- package/components/steps.css +853 -1
- package/components/swap/object.js +1 -1
- package/components/swap.css +553 -1
- package/components/tab/class.json +4 -4
- package/components/tab/object.js +1 -1
- package/components/tab.css +1333 -1
- package/components/table/object.js +1 -1
- package/components/table.css +781 -1
- package/components/timeline/object.js +1 -1
- package/components/timeline.css +1735 -1
- package/components/toggle/object.js +1 -1
- package/components/toggle.css +811 -1
- package/components/tooltip/object.js +1 -1
- package/components/tooltip.css +823 -1
- package/full.css +1 -1
- package/index.js +1 -1
- package/package.json +79 -78
- package/themes.css +1 -1
- package/utilities/join.css +757 -1
package/components/countdown.css
CHANGED
|
@@ -1 +1,121 @@
|
|
|
1
|
-
|
|
1
|
+
.countdown {
|
|
2
|
+
display: inline-flex;
|
|
3
|
+
line-height: 1em;
|
|
4
|
+
&>* {
|
|
5
|
+
display: inline-block;
|
|
6
|
+
overflow-y: hidden;
|
|
7
|
+
height: 1em;
|
|
8
|
+
&:before {
|
|
9
|
+
position: relative;
|
|
10
|
+
content: "00\A 01\A 02\A 03\A 04\A 05\A 06\A 07\A 08\A 09\A 10\A 11\A 12\A 13\A 14\A 15\A 16\A 17\A 18\A 19\A 20\A 21\A 22\A 23\A 24\A 25\A 26\A 27\A 28\A 29\A 30\A 31\A 32\A 33\A 34\A 35\A 36\A 37\A 38\A 39\A 40\A 41\A 42\A 43\A 44\A 45\A 46\A 47\A 48\A 49\A 50\A 51\A 52\A 53\A 54\A 55\A 56\A 57\A 58\A 59\A 60\A 61\A 62\A 63\A 64\A 65\A 66\A 67\A 68\A 69\A 70\A 71\A 72\A 73\A 74\A 75\A 76\A 77\A 78\A 79\A 80\A 81\A 82\A 83\A 84\A 85\A 86\A 87\A 88\A 89\A 90\A 91\A 92\A 93\A 94\A 95\A 96\A 97\A 98\A 99\A";
|
|
11
|
+
white-space: pre;
|
|
12
|
+
top: calc(var(--value) * -1em);
|
|
13
|
+
text-align: center;
|
|
14
|
+
transition: all 1s cubic-bezier(1, 0, 0, 1);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
@media (min-width: 640px) {
|
|
19
|
+
.sm\:countdown {
|
|
20
|
+
display: inline-flex;
|
|
21
|
+
line-height: 1em;
|
|
22
|
+
&>* {
|
|
23
|
+
display: inline-block;
|
|
24
|
+
overflow-y: hidden;
|
|
25
|
+
height: 1em;
|
|
26
|
+
&:before {
|
|
27
|
+
position: relative;
|
|
28
|
+
content: "00\A 01\A 02\A 03\A 04\A 05\A 06\A 07\A 08\A 09\A 10\A 11\A 12\A 13\A 14\A 15\A 16\A 17\A 18\A 19\A 20\A 21\A 22\A 23\A 24\A 25\A 26\A 27\A 28\A 29\A 30\A 31\A 32\A 33\A 34\A 35\A 36\A 37\A 38\A 39\A 40\A 41\A 42\A 43\A 44\A 45\A 46\A 47\A 48\A 49\A 50\A 51\A 52\A 53\A 54\A 55\A 56\A 57\A 58\A 59\A 60\A 61\A 62\A 63\A 64\A 65\A 66\A 67\A 68\A 69\A 70\A 71\A 72\A 73\A 74\A 75\A 76\A 77\A 78\A 79\A 80\A 81\A 82\A 83\A 84\A 85\A 86\A 87\A 88\A 89\A 90\A 91\A 92\A 93\A 94\A 95\A 96\A 97\A 98\A 99\A";
|
|
29
|
+
white-space: pre;
|
|
30
|
+
top: calc(var(--value) * -1em);
|
|
31
|
+
text-align: center;
|
|
32
|
+
transition: all 1s cubic-bezier(1, 0, 0, 1);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
@media (min-width: 768px) {
|
|
40
|
+
.md\:countdown {
|
|
41
|
+
display: inline-flex;
|
|
42
|
+
line-height: 1em;
|
|
43
|
+
&>* {
|
|
44
|
+
display: inline-block;
|
|
45
|
+
overflow-y: hidden;
|
|
46
|
+
height: 1em;
|
|
47
|
+
&:before {
|
|
48
|
+
position: relative;
|
|
49
|
+
content: "00\A 01\A 02\A 03\A 04\A 05\A 06\A 07\A 08\A 09\A 10\A 11\A 12\A 13\A 14\A 15\A 16\A 17\A 18\A 19\A 20\A 21\A 22\A 23\A 24\A 25\A 26\A 27\A 28\A 29\A 30\A 31\A 32\A 33\A 34\A 35\A 36\A 37\A 38\A 39\A 40\A 41\A 42\A 43\A 44\A 45\A 46\A 47\A 48\A 49\A 50\A 51\A 52\A 53\A 54\A 55\A 56\A 57\A 58\A 59\A 60\A 61\A 62\A 63\A 64\A 65\A 66\A 67\A 68\A 69\A 70\A 71\A 72\A 73\A 74\A 75\A 76\A 77\A 78\A 79\A 80\A 81\A 82\A 83\A 84\A 85\A 86\A 87\A 88\A 89\A 90\A 91\A 92\A 93\A 94\A 95\A 96\A 97\A 98\A 99\A";
|
|
50
|
+
white-space: pre;
|
|
51
|
+
top: calc(var(--value) * -1em);
|
|
52
|
+
text-align: center;
|
|
53
|
+
transition: all 1s cubic-bezier(1, 0, 0, 1);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
@media (min-width: 1024px) {
|
|
61
|
+
.lg\:countdown {
|
|
62
|
+
display: inline-flex;
|
|
63
|
+
line-height: 1em;
|
|
64
|
+
&>* {
|
|
65
|
+
display: inline-block;
|
|
66
|
+
overflow-y: hidden;
|
|
67
|
+
height: 1em;
|
|
68
|
+
&:before {
|
|
69
|
+
position: relative;
|
|
70
|
+
content: "00\A 01\A 02\A 03\A 04\A 05\A 06\A 07\A 08\A 09\A 10\A 11\A 12\A 13\A 14\A 15\A 16\A 17\A 18\A 19\A 20\A 21\A 22\A 23\A 24\A 25\A 26\A 27\A 28\A 29\A 30\A 31\A 32\A 33\A 34\A 35\A 36\A 37\A 38\A 39\A 40\A 41\A 42\A 43\A 44\A 45\A 46\A 47\A 48\A 49\A 50\A 51\A 52\A 53\A 54\A 55\A 56\A 57\A 58\A 59\A 60\A 61\A 62\A 63\A 64\A 65\A 66\A 67\A 68\A 69\A 70\A 71\A 72\A 73\A 74\A 75\A 76\A 77\A 78\A 79\A 80\A 81\A 82\A 83\A 84\A 85\A 86\A 87\A 88\A 89\A 90\A 91\A 92\A 93\A 94\A 95\A 96\A 97\A 98\A 99\A";
|
|
71
|
+
white-space: pre;
|
|
72
|
+
top: calc(var(--value) * -1em);
|
|
73
|
+
text-align: center;
|
|
74
|
+
transition: all 1s cubic-bezier(1, 0, 0, 1);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
@media (min-width: 1280px) {
|
|
82
|
+
.xl\:countdown {
|
|
83
|
+
display: inline-flex;
|
|
84
|
+
line-height: 1em;
|
|
85
|
+
&>* {
|
|
86
|
+
display: inline-block;
|
|
87
|
+
overflow-y: hidden;
|
|
88
|
+
height: 1em;
|
|
89
|
+
&:before {
|
|
90
|
+
position: relative;
|
|
91
|
+
content: "00\A 01\A 02\A 03\A 04\A 05\A 06\A 07\A 08\A 09\A 10\A 11\A 12\A 13\A 14\A 15\A 16\A 17\A 18\A 19\A 20\A 21\A 22\A 23\A 24\A 25\A 26\A 27\A 28\A 29\A 30\A 31\A 32\A 33\A 34\A 35\A 36\A 37\A 38\A 39\A 40\A 41\A 42\A 43\A 44\A 45\A 46\A 47\A 48\A 49\A 50\A 51\A 52\A 53\A 54\A 55\A 56\A 57\A 58\A 59\A 60\A 61\A 62\A 63\A 64\A 65\A 66\A 67\A 68\A 69\A 70\A 71\A 72\A 73\A 74\A 75\A 76\A 77\A 78\A 79\A 80\A 81\A 82\A 83\A 84\A 85\A 86\A 87\A 88\A 89\A 90\A 91\A 92\A 93\A 94\A 95\A 96\A 97\A 98\A 99\A";
|
|
92
|
+
white-space: pre;
|
|
93
|
+
top: calc(var(--value) * -1em);
|
|
94
|
+
text-align: center;
|
|
95
|
+
transition: all 1s cubic-bezier(1, 0, 0, 1);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
@media (min-width: 1536px) {
|
|
103
|
+
.\32xl\:countdown {
|
|
104
|
+
display: inline-flex;
|
|
105
|
+
line-height: 1em;
|
|
106
|
+
&>* {
|
|
107
|
+
display: inline-block;
|
|
108
|
+
overflow-y: hidden;
|
|
109
|
+
height: 1em;
|
|
110
|
+
&:before {
|
|
111
|
+
position: relative;
|
|
112
|
+
content: "00\A 01\A 02\A 03\A 04\A 05\A 06\A 07\A 08\A 09\A 10\A 11\A 12\A 13\A 14\A 15\A 16\A 17\A 18\A 19\A 20\A 21\A 22\A 23\A 24\A 25\A 26\A 27\A 28\A 29\A 30\A 31\A 32\A 33\A 34\A 35\A 36\A 37\A 38\A 39\A 40\A 41\A 42\A 43\A 44\A 45\A 46\A 47\A 48\A 49\A 50\A 51\A 52\A 53\A 54\A 55\A 56\A 57\A 58\A 59\A 60\A 61\A 62\A 63\A 64\A 65\A 66\A 67\A 68\A 69\A 70\A 71\A 72\A 73\A 74\A 75\A 76\A 77\A 78\A 79\A 80\A 81\A 82\A 83\A 84\A 85\A 86\A 87\A 88\A 89\A 90\A 91\A 92\A 93\A 94\A 95\A 96\A 97\A 98\A 99\A";
|
|
113
|
+
white-space: pre;
|
|
114
|
+
top: calc(var(--value) * -1em);
|
|
115
|
+
text-align: center;
|
|
116
|
+
transition: all 1s cubic-bezier(1, 0, 0, 1);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default {".divider":{"@apply flex flex-row items-center self-stretch my-4 h-4 whitespace-nowrap":{},"&:before,\n &:after":{"@apply h-0.5 w-full grow
|
|
1
|
+
export default {".divider":{"@apply flex flex-row items-center self-stretch my-4 h-4 whitespace-nowrap":{},"&:before,\n &:after":{"content":"none","@apply h-0.5 w-full grow bg-base-content/10":{}},"&:not(:empty)":{"@apply gap-4":{}}},".divider-horizontal":{"&.divider":{"@apply mx-4 my-0 h-auto w-4 flex-col":{},"&:before":{"@apply h-full w-0.5":{}},"&:after":{"@apply h-full w-0.5":{}}}},".divider-vertical":{"&.divider":{"@apply mx-0 my-4 h-4 w-auto flex-row":{},"&:before":{"@apply h-0.5 w-full":{}},"&:after":{"@apply h-0.5 w-full":{}}}},".divider-neutral":{"&:before,\n &:after":{"@apply bg-neutral":{}}},".divider-primary":{"&:before,\n &:after":{"@apply bg-primary":{}}},".divider-secondary":{"&:before,\n &:after":{"@apply bg-secondary":{}}},".divider-accent":{"&:before,\n &:after":{"@apply bg-accent":{}}},".divider-success":{"&:before,\n &:after":{"@apply bg-success":{}}},".divider-warning":{"&:before,\n &:after":{"@apply bg-warning":{}}},".divider-info":{"&:before,\n &:after":{"@apply bg-info":{}}},".divider-error":{"&:before,\n &:after":{"@apply bg-error":{}}},".divider-start:before":{"@apply hidden":{}},".divider-end:after":{"@apply hidden":{}}};
|