daisyui 1.19.0 → 1.22.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.
- package/CHANGELOG.md +29 -0
- package/README.md +2 -1
- package/dist/full.css +279 -15
- package/dist/styled.css +95 -16
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/unstyled.css +13 -0
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/dist/utilities-styled.js +1 -1
- package/dist/utilities-unstyled.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.22.0](https://github.com/saadeghi/daisyui/compare/v1.20.1...v1.22.0) (2022-01-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add rating component (fix [#374](https://github.com/saadeghi/daisyui/issues/374)) ([6285227](https://github.com/saadeghi/daisyui/commit/6285227ffbf9818b9bc2d8be1a4a5a610ad09954))
|
|
11
|
+
* responsive table compact (fix [#364](https://github.com/saadeghi/daisyui/issues/364)) ([6e3d9b1](https://github.com/saadeghi/daisyui/commit/6e3d9b1074a3f1b02af27d102c3b13e30427f511))
|
|
12
|
+
|
|
13
|
+
## [1.21.0](https://github.com/saadeghi/daisyui/compare/v1.20.1...v1.21.0) (2022-01-01)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* responsive table compact (fix [#364](https://github.com/saadeghi/daisyui/issues/364)) ([6e3d9b1](https://github.com/saadeghi/daisyui/commit/6e3d9b1074a3f1b02af27d102c3b13e30427f511))
|
|
19
|
+
|
|
20
|
+
### [1.20.1](https://github.com/saadeghi/daisyui/compare/v1.20.0...v1.20.1) (2021-12-30)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* [#369](https://github.com/saadeghi/daisyui/issues/369) ([7b1b52b](https://github.com/saadeghi/daisyui/commit/7b1b52b71561e86dedf3e69f98e08143ed6a762a))
|
|
26
|
+
|
|
27
|
+
## [1.20.0](https://github.com/saadeghi/daisyui/compare/v1.19.0...v1.20.0) (2021-12-26)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* support [checked=true] style on checkbox and toggle ([8131232](https://github.com/saadeghi/daisyui/commit/8131232836c145c23ed40707f4272fb00c6a3f1b))
|
|
33
|
+
|
|
5
34
|
## [1.19.0](https://github.com/saadeghi/daisyui/compare/v1.17.1...v1.19.0) (2021-12-22)
|
|
6
35
|
|
|
7
36
|
|
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ Loading CSS files from CDN is not recommended for production. It's better to ins
|
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
```html
|
|
82
|
-
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.
|
|
82
|
+
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.21.0/dist/full.css" rel="stylesheet" type="text/css" />
|
|
83
83
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2/dist/tailwind.min.css" rel="stylesheet" type="text/css" />
|
|
84
84
|
```
|
|
85
85
|
|
|
@@ -207,6 +207,7 @@ Read the documents for more info:
|
|
|
207
207
|
- [dailydev](https://app.daily.dev/posts/-4OPGw0te)
|
|
208
208
|
- [Future Tech Blog (Japanese)](https://future-architect.github.io/articles/20211124a/)
|
|
209
209
|
- Youtube videos
|
|
210
|
+
- [Supabase & Sveltekit - Build Twitter in 75 minutes](https://www.youtube.com/watch?v=mPQyckogDYc)
|
|
210
211
|
- [Setup the Best Frontend JavaScript Stack - Svelte, Vite, TailwindCSS and DaisyUI](https://www.youtube.com/watch?v=mEBPN_9jTAE)
|
|
211
212
|
- [Jamstack powered Image gallery with Cloudinary, Tailwind and DaisyUI](https://www.youtube.com/watch?v=Hpjq0D1vcpM)
|
|
212
213
|
- [SvelteKit Crash Course w/ Tailwind CSS and DaisyUI, GraphQL and dynamic routes](https://www.youtube.com/watch?v=zH2qG9YwN3s)
|
package/dist/full.css
CHANGED
|
@@ -1541,6 +1541,14 @@ html{
|
|
|
1541
1541
|
overflow:hidden;
|
|
1542
1542
|
}
|
|
1543
1543
|
|
|
1544
|
+
.drawer.drawer-end{
|
|
1545
|
+
direction:rtl;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
.drawer.drawer-end>*{
|
|
1549
|
+
direction:ltr;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1544
1552
|
.drawer.drawer-end .drawer-toggle~.drawer-side>.drawer-overlay+*{
|
|
1545
1553
|
justify-self:end;
|
|
1546
1554
|
--tw-translate-x:100%;
|
|
@@ -1692,6 +1700,7 @@ html{
|
|
|
1692
1700
|
.drawer-mobile.drawer-end{
|
|
1693
1701
|
grid-auto-columns:auto -webkit-max-content;
|
|
1694
1702
|
grid-auto-columns:auto max-content;
|
|
1703
|
+
direction:ltr;
|
|
1695
1704
|
}
|
|
1696
1705
|
|
|
1697
1706
|
.drawer-mobile.drawer-end>.drawer-toggle~.drawer-content{
|
|
@@ -2264,6 +2273,24 @@ html{
|
|
|
2264
2273
|
outline:none;
|
|
2265
2274
|
}
|
|
2266
2275
|
|
|
2276
|
+
.rating{
|
|
2277
|
+
display:inline-flex;
|
|
2278
|
+
position:relative;
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2281
|
+
.rating :where(input){
|
|
2282
|
+
cursor:pointer;
|
|
2283
|
+
-webkit-animation:rating-pop var(--animation-input, .25s) ease-out;
|
|
2284
|
+
animation:rating-pop var(--animation-input, .25s) ease-out;
|
|
2285
|
+
-webkit-appearance:none;
|
|
2286
|
+
-moz-appearance:none;
|
|
2287
|
+
appearance:none;
|
|
2288
|
+
background-color:hsla(var(--bc) / var(--tw-bg-opacity, 1));
|
|
2289
|
+
--tw-bg-opacity:1;
|
|
2290
|
+
height:1.5rem;
|
|
2291
|
+
width:1.5rem;
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2267
2294
|
.select{
|
|
2268
2295
|
-webkit-appearance:none;
|
|
2269
2296
|
-moz-appearance:none;
|
|
@@ -3194,7 +3221,7 @@ html{
|
|
|
3194
3221
|
box-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--bc));
|
|
3195
3222
|
}
|
|
3196
3223
|
|
|
3197
|
-
.checkbox:checked{
|
|
3224
|
+
.checkbox:checked,.checkbox[checked=true]{
|
|
3198
3225
|
--tw-bg-opacity:1;
|
|
3199
3226
|
background-color:hsla(var(--bc) / var(--tw-bg-opacity, 1));
|
|
3200
3227
|
background-repeat:no-repeat;
|
|
@@ -3219,7 +3246,7 @@ html{
|
|
|
3219
3246
|
box-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--p));
|
|
3220
3247
|
}
|
|
3221
3248
|
|
|
3222
|
-
.checkbox-primary:checked{
|
|
3249
|
+
.checkbox-primary:checked,.checkbox-primary[checked=true]{
|
|
3223
3250
|
--tw-bg-opacity:1;
|
|
3224
3251
|
background-color:hsla(var(--p) / var(--tw-bg-opacity, 1));
|
|
3225
3252
|
--tw-border-opacity:1;
|
|
@@ -3244,7 +3271,7 @@ html{
|
|
|
3244
3271
|
box-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--s));
|
|
3245
3272
|
}
|
|
3246
3273
|
|
|
3247
|
-
.checkbox-secondary:checked{
|
|
3274
|
+
.checkbox-secondary:checked,.checkbox-secondary[checked=true]{
|
|
3248
3275
|
--tw-bg-opacity:1;
|
|
3249
3276
|
background-color:hsla(var(--s) / var(--tw-bg-opacity, 1));
|
|
3250
3277
|
--tw-border-opacity:1;
|
|
@@ -3269,7 +3296,7 @@ html{
|
|
|
3269
3296
|
box-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--a));
|
|
3270
3297
|
}
|
|
3271
3298
|
|
|
3272
|
-
.checkbox-accent:checked{
|
|
3299
|
+
.checkbox-accent:checked,.checkbox-accent[checked=true]{
|
|
3273
3300
|
--tw-bg-opacity:1;
|
|
3274
3301
|
background-color:hsla(var(--a) / var(--tw-bg-opacity, 1));
|
|
3275
3302
|
--tw-border-opacity:1;
|
|
@@ -4218,6 +4245,57 @@ html{
|
|
|
4218
4245
|
--range-shdw:var(--a);
|
|
4219
4246
|
}
|
|
4220
4247
|
|
|
4248
|
+
.rating .rating-hidden{
|
|
4249
|
+
background-color:transparent;
|
|
4250
|
+
width:.5rem;
|
|
4251
|
+
}
|
|
4252
|
+
|
|
4253
|
+
.rating input:checked~input{
|
|
4254
|
+
--tw-bg-opacity:0.2;
|
|
4255
|
+
}
|
|
4256
|
+
|
|
4257
|
+
.rating input:focus-visible{
|
|
4258
|
+
transition-property:transform;
|
|
4259
|
+
transition-duration:.15s;
|
|
4260
|
+
transition-duration:.3s;
|
|
4261
|
+
transition-timing-function:cubic-bezier(.4, 0, .2, 1);
|
|
4262
|
+
transform:translateY(-.125em);
|
|
4263
|
+
}
|
|
4264
|
+
|
|
4265
|
+
.rating input:active:focus{
|
|
4266
|
+
-webkit-animation:none;
|
|
4267
|
+
animation:none;
|
|
4268
|
+
transform:translateY(-.125em);
|
|
4269
|
+
}
|
|
4270
|
+
|
|
4271
|
+
@-webkit-keyframes rating-pop{
|
|
4272
|
+
0%{
|
|
4273
|
+
transform:translateY(-.125em);
|
|
4274
|
+
}
|
|
4275
|
+
|
|
4276
|
+
40%{
|
|
4277
|
+
transform:translateY(-.125em);
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4280
|
+
to{
|
|
4281
|
+
transform:translateY(0);
|
|
4282
|
+
}
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4285
|
+
@keyframes rating-pop{
|
|
4286
|
+
0%{
|
|
4287
|
+
transform:translateY(-.125em);
|
|
4288
|
+
}
|
|
4289
|
+
|
|
4290
|
+
40%{
|
|
4291
|
+
transform:translateY(-.125em);
|
|
4292
|
+
}
|
|
4293
|
+
|
|
4294
|
+
to{
|
|
4295
|
+
transform:translateY(0);
|
|
4296
|
+
}
|
|
4297
|
+
}
|
|
4298
|
+
|
|
4221
4299
|
.select-bordered{
|
|
4222
4300
|
--tw-border-opacity:0.2;
|
|
4223
4301
|
}
|
|
@@ -4635,12 +4713,6 @@ html{
|
|
|
4635
4713
|
background-color:hsla(var(--b2) / var(--tw-bg-opacity, 1));
|
|
4636
4714
|
}
|
|
4637
4715
|
|
|
4638
|
-
.table-compact td,.table-compact th{
|
|
4639
|
-
font-size:.875rem;
|
|
4640
|
-
line-height:1.25rem;
|
|
4641
|
-
padding:.5rem;
|
|
4642
|
-
}
|
|
4643
|
-
|
|
4644
4716
|
.textarea-bordered{
|
|
4645
4717
|
--tw-border-opacity:0.2;
|
|
4646
4718
|
}
|
|
@@ -4774,14 +4846,14 @@ html{
|
|
|
4774
4846
|
--focus-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--bc));
|
|
4775
4847
|
}
|
|
4776
4848
|
|
|
4777
|
-
.toggle:checked{
|
|
4849
|
+
.toggle:checked,.toggle[checked=true]{
|
|
4778
4850
|
--chkbg:hsl(var(--bc));
|
|
4779
4851
|
--tw-bg-opacity:1;
|
|
4780
4852
|
--tw-border-opacity:1;
|
|
4781
4853
|
box-shadow:var(--handleoffset) 0 0 2px hsl(var(--b1)) inset, 0 0 0 2px hsl(var(--b1)) inset, var(--focus-shadow);
|
|
4782
4854
|
}
|
|
4783
4855
|
|
|
4784
|
-
[dir=rtl] .toggle:checked{
|
|
4856
|
+
[dir=rtl] .toggle:checked,[dir=rtl] .toggle[checked=true]{
|
|
4785
4857
|
box-shadow:calc(var(--handleoffset)*1) 0 0 2px hsl(var(--b1)) inset, 0 0 0 2px hsl(var(--b1)) inset, var(--focus-shadow);
|
|
4786
4858
|
}
|
|
4787
4859
|
|
|
@@ -4789,7 +4861,7 @@ html{
|
|
|
4789
4861
|
--focus-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--p));
|
|
4790
4862
|
}
|
|
4791
4863
|
|
|
4792
|
-
.toggle-primary:checked{
|
|
4864
|
+
.toggle-primary:checked,.toggle-primary[checked=true]{
|
|
4793
4865
|
--chkbg:hsl(var(--p));
|
|
4794
4866
|
--tw-bg-opacity:1;
|
|
4795
4867
|
background-color:hsla(var(--p) / var(--tw-bg-opacity, 1));
|
|
@@ -4804,7 +4876,7 @@ html{
|
|
|
4804
4876
|
--focus-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--s));
|
|
4805
4877
|
}
|
|
4806
4878
|
|
|
4807
|
-
.toggle-secondary:checked{
|
|
4879
|
+
.toggle-secondary:checked,.toggle-secondary[checked=true]{
|
|
4808
4880
|
--chkbg:hsl(var(--s));
|
|
4809
4881
|
--tw-bg-opacity:1;
|
|
4810
4882
|
background-color:hsla(var(--s) / var(--tw-bg-opacity, 1));
|
|
@@ -4819,7 +4891,7 @@ html{
|
|
|
4819
4891
|
--focus-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--a));
|
|
4820
4892
|
}
|
|
4821
4893
|
|
|
4822
|
-
.toggle-accent:checked{
|
|
4894
|
+
.toggle-accent:checked,.toggle-accent[checked=true]{
|
|
4823
4895
|
--chkbg:hsl(var(--a));
|
|
4824
4896
|
--tw-bg-opacity:1;
|
|
4825
4897
|
background-color:hsla(var(--a) / var(--tw-bg-opacity, 1));
|
|
@@ -9407,6 +9479,26 @@ html{
|
|
|
9407
9479
|
width:2rem;
|
|
9408
9480
|
}
|
|
9409
9481
|
|
|
9482
|
+
.rating-xs input{
|
|
9483
|
+
height:.75rem;
|
|
9484
|
+
width:.75rem;
|
|
9485
|
+
}
|
|
9486
|
+
|
|
9487
|
+
.rating-sm input{
|
|
9488
|
+
height:1rem;
|
|
9489
|
+
width:1rem;
|
|
9490
|
+
}
|
|
9491
|
+
|
|
9492
|
+
.rating-md input{
|
|
9493
|
+
height:1.5rem;
|
|
9494
|
+
width:1.5rem;
|
|
9495
|
+
}
|
|
9496
|
+
|
|
9497
|
+
.rating-lg input{
|
|
9498
|
+
height:2.5rem;
|
|
9499
|
+
width:2.5rem;
|
|
9500
|
+
}
|
|
9501
|
+
|
|
9410
9502
|
.select-md{
|
|
9411
9503
|
height:3rem;
|
|
9412
9504
|
font-size:.875rem;
|
|
@@ -9771,6 +9863,18 @@ html{
|
|
|
9771
9863
|
margin-left:50%;
|
|
9772
9864
|
}
|
|
9773
9865
|
|
|
9866
|
+
.table-normal :where(th,td){
|
|
9867
|
+
font-size:1rem;
|
|
9868
|
+
line-height:1.5rem;
|
|
9869
|
+
padding:1rem;
|
|
9870
|
+
}
|
|
9871
|
+
|
|
9872
|
+
.table-compact :where(th,td){
|
|
9873
|
+
font-size:.875rem;
|
|
9874
|
+
line-height:1.25rem;
|
|
9875
|
+
padding:.5rem;
|
|
9876
|
+
}
|
|
9877
|
+
|
|
9774
9878
|
@media (min-width:640px){
|
|
9775
9879
|
.sm\:animate-none{
|
|
9776
9880
|
-webkit-animation:none;
|
|
@@ -14120,6 +14224,26 @@ html{
|
|
|
14120
14224
|
width:2rem;
|
|
14121
14225
|
}
|
|
14122
14226
|
|
|
14227
|
+
.sm\:rating-xs input{
|
|
14228
|
+
height:.75rem;
|
|
14229
|
+
width:.75rem;
|
|
14230
|
+
}
|
|
14231
|
+
|
|
14232
|
+
.sm\:rating-sm input{
|
|
14233
|
+
height:1rem;
|
|
14234
|
+
width:1rem;
|
|
14235
|
+
}
|
|
14236
|
+
|
|
14237
|
+
.sm\:rating-md input{
|
|
14238
|
+
height:1.5rem;
|
|
14239
|
+
width:1.5rem;
|
|
14240
|
+
}
|
|
14241
|
+
|
|
14242
|
+
.sm\:rating-lg input{
|
|
14243
|
+
height:2.5rem;
|
|
14244
|
+
width:2.5rem;
|
|
14245
|
+
}
|
|
14246
|
+
|
|
14123
14247
|
.sm\:select-md{
|
|
14124
14248
|
height:3rem;
|
|
14125
14249
|
font-size:.875rem;
|
|
@@ -14483,6 +14607,18 @@ html{
|
|
|
14483
14607
|
--tw-translate-y:-50%;
|
|
14484
14608
|
margin-left:50%;
|
|
14485
14609
|
}
|
|
14610
|
+
|
|
14611
|
+
.sm\:table-normal :where(th,td){
|
|
14612
|
+
font-size:1rem;
|
|
14613
|
+
line-height:1.5rem;
|
|
14614
|
+
padding:1rem;
|
|
14615
|
+
}
|
|
14616
|
+
|
|
14617
|
+
.sm\:table-compact :where(th,td){
|
|
14618
|
+
font-size:.875rem;
|
|
14619
|
+
line-height:1.25rem;
|
|
14620
|
+
padding:.5rem;
|
|
14621
|
+
}
|
|
14486
14622
|
}
|
|
14487
14623
|
|
|
14488
14624
|
@media (min-width:768px){
|
|
@@ -18834,6 +18970,26 @@ html{
|
|
|
18834
18970
|
width:2rem;
|
|
18835
18971
|
}
|
|
18836
18972
|
|
|
18973
|
+
.md\:rating-xs input{
|
|
18974
|
+
height:.75rem;
|
|
18975
|
+
width:.75rem;
|
|
18976
|
+
}
|
|
18977
|
+
|
|
18978
|
+
.md\:rating-sm input{
|
|
18979
|
+
height:1rem;
|
|
18980
|
+
width:1rem;
|
|
18981
|
+
}
|
|
18982
|
+
|
|
18983
|
+
.md\:rating-md input{
|
|
18984
|
+
height:1.5rem;
|
|
18985
|
+
width:1.5rem;
|
|
18986
|
+
}
|
|
18987
|
+
|
|
18988
|
+
.md\:rating-lg input{
|
|
18989
|
+
height:2.5rem;
|
|
18990
|
+
width:2.5rem;
|
|
18991
|
+
}
|
|
18992
|
+
|
|
18837
18993
|
.md\:select-md{
|
|
18838
18994
|
height:3rem;
|
|
18839
18995
|
font-size:.875rem;
|
|
@@ -19197,6 +19353,18 @@ html{
|
|
|
19197
19353
|
--tw-translate-y:-50%;
|
|
19198
19354
|
margin-left:50%;
|
|
19199
19355
|
}
|
|
19356
|
+
|
|
19357
|
+
.md\:table-normal :where(th,td){
|
|
19358
|
+
font-size:1rem;
|
|
19359
|
+
line-height:1.5rem;
|
|
19360
|
+
padding:1rem;
|
|
19361
|
+
}
|
|
19362
|
+
|
|
19363
|
+
.md\:table-compact :where(th,td){
|
|
19364
|
+
font-size:.875rem;
|
|
19365
|
+
line-height:1.25rem;
|
|
19366
|
+
padding:.5rem;
|
|
19367
|
+
}
|
|
19200
19368
|
}
|
|
19201
19369
|
|
|
19202
19370
|
@media (min-width:1024px){
|
|
@@ -23548,6 +23716,26 @@ html{
|
|
|
23548
23716
|
width:2rem;
|
|
23549
23717
|
}
|
|
23550
23718
|
|
|
23719
|
+
.lg\:rating-xs input{
|
|
23720
|
+
height:.75rem;
|
|
23721
|
+
width:.75rem;
|
|
23722
|
+
}
|
|
23723
|
+
|
|
23724
|
+
.lg\:rating-sm input{
|
|
23725
|
+
height:1rem;
|
|
23726
|
+
width:1rem;
|
|
23727
|
+
}
|
|
23728
|
+
|
|
23729
|
+
.lg\:rating-md input{
|
|
23730
|
+
height:1.5rem;
|
|
23731
|
+
width:1.5rem;
|
|
23732
|
+
}
|
|
23733
|
+
|
|
23734
|
+
.lg\:rating-lg input{
|
|
23735
|
+
height:2.5rem;
|
|
23736
|
+
width:2.5rem;
|
|
23737
|
+
}
|
|
23738
|
+
|
|
23551
23739
|
.lg\:select-md{
|
|
23552
23740
|
height:3rem;
|
|
23553
23741
|
font-size:.875rem;
|
|
@@ -23911,6 +24099,18 @@ html{
|
|
|
23911
24099
|
--tw-translate-y:-50%;
|
|
23912
24100
|
margin-left:50%;
|
|
23913
24101
|
}
|
|
24102
|
+
|
|
24103
|
+
.lg\:table-normal :where(th,td){
|
|
24104
|
+
font-size:1rem;
|
|
24105
|
+
line-height:1.5rem;
|
|
24106
|
+
padding:1rem;
|
|
24107
|
+
}
|
|
24108
|
+
|
|
24109
|
+
.lg\:table-compact :where(th,td){
|
|
24110
|
+
font-size:.875rem;
|
|
24111
|
+
line-height:1.25rem;
|
|
24112
|
+
padding:.5rem;
|
|
24113
|
+
}
|
|
23914
24114
|
}
|
|
23915
24115
|
|
|
23916
24116
|
@media (min-width:1280px){
|
|
@@ -28262,6 +28462,26 @@ html{
|
|
|
28262
28462
|
width:2rem;
|
|
28263
28463
|
}
|
|
28264
28464
|
|
|
28465
|
+
.xl\:rating-xs input{
|
|
28466
|
+
height:.75rem;
|
|
28467
|
+
width:.75rem;
|
|
28468
|
+
}
|
|
28469
|
+
|
|
28470
|
+
.xl\:rating-sm input{
|
|
28471
|
+
height:1rem;
|
|
28472
|
+
width:1rem;
|
|
28473
|
+
}
|
|
28474
|
+
|
|
28475
|
+
.xl\:rating-md input{
|
|
28476
|
+
height:1.5rem;
|
|
28477
|
+
width:1.5rem;
|
|
28478
|
+
}
|
|
28479
|
+
|
|
28480
|
+
.xl\:rating-lg input{
|
|
28481
|
+
height:2.5rem;
|
|
28482
|
+
width:2.5rem;
|
|
28483
|
+
}
|
|
28484
|
+
|
|
28265
28485
|
.xl\:select-md{
|
|
28266
28486
|
height:3rem;
|
|
28267
28487
|
font-size:.875rem;
|
|
@@ -28625,6 +28845,18 @@ html{
|
|
|
28625
28845
|
--tw-translate-y:-50%;
|
|
28626
28846
|
margin-left:50%;
|
|
28627
28847
|
}
|
|
28848
|
+
|
|
28849
|
+
.xl\:table-normal :where(th,td){
|
|
28850
|
+
font-size:1rem;
|
|
28851
|
+
line-height:1.5rem;
|
|
28852
|
+
padding:1rem;
|
|
28853
|
+
}
|
|
28854
|
+
|
|
28855
|
+
.xl\:table-compact :where(th,td){
|
|
28856
|
+
font-size:.875rem;
|
|
28857
|
+
line-height:1.25rem;
|
|
28858
|
+
padding:.5rem;
|
|
28859
|
+
}
|
|
28628
28860
|
}
|
|
28629
28861
|
|
|
28630
28862
|
@media (min-width:1536px){
|
|
@@ -32976,6 +33208,26 @@ html{
|
|
|
32976
33208
|
width:2rem;
|
|
32977
33209
|
}
|
|
32978
33210
|
|
|
33211
|
+
.\32xl\:rating-xs input{
|
|
33212
|
+
height:.75rem;
|
|
33213
|
+
width:.75rem;
|
|
33214
|
+
}
|
|
33215
|
+
|
|
33216
|
+
.\32xl\:rating-sm input{
|
|
33217
|
+
height:1rem;
|
|
33218
|
+
width:1rem;
|
|
33219
|
+
}
|
|
33220
|
+
|
|
33221
|
+
.\32xl\:rating-md input{
|
|
33222
|
+
height:1.5rem;
|
|
33223
|
+
width:1.5rem;
|
|
33224
|
+
}
|
|
33225
|
+
|
|
33226
|
+
.\32xl\:rating-lg input{
|
|
33227
|
+
height:2.5rem;
|
|
33228
|
+
width:2.5rem;
|
|
33229
|
+
}
|
|
33230
|
+
|
|
32979
33231
|
.\32xl\:select-md{
|
|
32980
33232
|
height:3rem;
|
|
32981
33233
|
font-size:.875rem;
|
|
@@ -33339,5 +33591,17 @@ html{
|
|
|
33339
33591
|
--tw-translate-y:-50%;
|
|
33340
33592
|
margin-left:50%;
|
|
33341
33593
|
}
|
|
33594
|
+
|
|
33595
|
+
.\32xl\:table-normal :where(th,td){
|
|
33596
|
+
font-size:1rem;
|
|
33597
|
+
line-height:1.5rem;
|
|
33598
|
+
padding:1rem;
|
|
33599
|
+
}
|
|
33600
|
+
|
|
33601
|
+
.\32xl\:table-compact :where(th,td){
|
|
33602
|
+
font-size:.875rem;
|
|
33603
|
+
line-height:1.25rem;
|
|
33604
|
+
padding:.5rem;
|
|
33605
|
+
}
|
|
33342
33606
|
}
|
|
33343
33607
|
|
package/dist/styled.css
CHANGED
|
@@ -319,6 +319,12 @@
|
|
|
319
319
|
display:grid;
|
|
320
320
|
overflow:hidden;
|
|
321
321
|
}
|
|
322
|
+
.drawer.drawer-end{
|
|
323
|
+
direction:rtl;
|
|
324
|
+
}
|
|
325
|
+
.drawer.drawer-end>*{
|
|
326
|
+
direction:ltr;
|
|
327
|
+
}
|
|
322
328
|
.drawer.drawer-end .drawer-toggle~.drawer-side>.drawer-overlay+*{
|
|
323
329
|
justify-self:end;
|
|
324
330
|
--tw-translate-x:100%;
|
|
@@ -424,6 +430,7 @@
|
|
|
424
430
|
.drawer-mobile.drawer-end{
|
|
425
431
|
grid-auto-columns:auto -webkit-max-content;
|
|
426
432
|
grid-auto-columns:auto max-content;
|
|
433
|
+
direction:ltr;
|
|
427
434
|
}
|
|
428
435
|
.drawer-mobile.drawer-end>.drawer-toggle~.drawer-content{
|
|
429
436
|
height:auto;
|
|
@@ -867,6 +874,12 @@
|
|
|
867
874
|
}
|
|
868
875
|
.range:focus{
|
|
869
876
|
outline:none;
|
|
877
|
+
}.rating{
|
|
878
|
+
display:inline-flex;
|
|
879
|
+
position:relative;
|
|
880
|
+
}
|
|
881
|
+
.rating :where(input){
|
|
882
|
+
cursor:pointer;
|
|
870
883
|
}.select{
|
|
871
884
|
-webkit-appearance:none;
|
|
872
885
|
-moz-appearance:none;
|
|
@@ -1702,10 +1715,12 @@
|
|
|
1702
1715
|
.checkbox:focus-visible{
|
|
1703
1716
|
box-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--bc));
|
|
1704
1717
|
}
|
|
1705
|
-
.checkbox:checked{
|
|
1718
|
+
.checkbox:checked,.checkbox[checked=true]{
|
|
1706
1719
|
--tw-bg-opacity:1;
|
|
1707
1720
|
background-color:hsla(var(--bc) / var(--tw-bg-opacity, 1));
|
|
1708
1721
|
background-repeat:no-repeat;
|
|
1722
|
+
}
|
|
1723
|
+
.checkbox:checked,.checkbox[checked=true]{
|
|
1709
1724
|
-webkit-animation:checkmark var(--animation-input, .2s) ease-in-out;
|
|
1710
1725
|
animation:checkmark var(--animation-input, .2s) ease-in-out;
|
|
1711
1726
|
background-image:linear-gradient(-45deg, transparent 65%, hsl(var(--chkbg)) 0), linear-gradient(45deg, transparent 75%, hsl(var(--chkbg)) 0), linear-gradient(-45deg, hsl(var(--chkbg)) 40%, transparent 0), linear-gradient(45deg, hsl(var(--chkbg)) 30%, hsl(var(--chkfg)) 0, hsl(var(--chkfg)) 40%, transparent 0), linear-gradient(-45deg, hsl(var(--chkfg)) 50%, hsl(var(--chkbg)) 0);
|
|
@@ -1723,7 +1738,7 @@
|
|
|
1723
1738
|
.checkbox-primary:focus-visible{
|
|
1724
1739
|
box-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--p));
|
|
1725
1740
|
}
|
|
1726
|
-
.checkbox-primary:checked{
|
|
1741
|
+
.checkbox-primary:checked,.checkbox-primary[checked=true]{
|
|
1727
1742
|
--tw-bg-opacity:1;
|
|
1728
1743
|
background-color:hsla(var(--p) / var(--tw-bg-opacity, 1));
|
|
1729
1744
|
--tw-border-opacity:1;
|
|
@@ -1744,7 +1759,7 @@
|
|
|
1744
1759
|
.checkbox-secondary:focus-visible{
|
|
1745
1760
|
box-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--s));
|
|
1746
1761
|
}
|
|
1747
|
-
.checkbox-secondary:checked{
|
|
1762
|
+
.checkbox-secondary:checked,.checkbox-secondary[checked=true]{
|
|
1748
1763
|
--tw-bg-opacity:1;
|
|
1749
1764
|
background-color:hsla(var(--s) / var(--tw-bg-opacity, 1));
|
|
1750
1765
|
--tw-border-opacity:1;
|
|
@@ -1765,7 +1780,7 @@
|
|
|
1765
1780
|
.checkbox-accent:focus-visible{
|
|
1766
1781
|
box-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--a));
|
|
1767
1782
|
}
|
|
1768
|
-
.checkbox-accent:checked{
|
|
1783
|
+
.checkbox-accent:checked,.checkbox-accent[checked=true]{
|
|
1769
1784
|
--tw-bg-opacity:1;
|
|
1770
1785
|
background-color:hsla(var(--a) / var(--tw-bg-opacity, 1));
|
|
1771
1786
|
--tw-border-opacity:1;
|
|
@@ -2793,7 +2808,66 @@
|
|
|
2793
2808
|
}
|
|
2794
2809
|
.range-accent{
|
|
2795
2810
|
--range-shdw:var(--a);
|
|
2796
|
-
}.
|
|
2811
|
+
}.rating :where(input){
|
|
2812
|
+
-webkit-animation:rating-pop var(--animation-input, .25s) ease-out;
|
|
2813
|
+
animation:rating-pop var(--animation-input, .25s) ease-out;
|
|
2814
|
+
-webkit-appearance:none;
|
|
2815
|
+
-moz-appearance:none;
|
|
2816
|
+
appearance:none;
|
|
2817
|
+
background-color:hsla(var(--bc) / var(--tw-bg-opacity, 1));
|
|
2818
|
+
--tw-bg-opacity:1;
|
|
2819
|
+
height:1.5rem;
|
|
2820
|
+
width:1.5rem;
|
|
2821
|
+
}
|
|
2822
|
+
.rating .rating-hidden{
|
|
2823
|
+
background-color:transparent;
|
|
2824
|
+
width:.5rem;
|
|
2825
|
+
}
|
|
2826
|
+
.rating input:checked~input{
|
|
2827
|
+
--tw-bg-opacity:0.2;
|
|
2828
|
+
}
|
|
2829
|
+
.rating input:focus-visible{
|
|
2830
|
+
transition-property:transform;
|
|
2831
|
+
transition-duration:.15s;
|
|
2832
|
+
transition-timing-function:cubic-bezier(.4, 0, .2, 1);
|
|
2833
|
+
transition-duration:.3s;
|
|
2834
|
+
transform:translateY(-.125em);
|
|
2835
|
+
}
|
|
2836
|
+
.rating input:active:focus{
|
|
2837
|
+
-webkit-animation:none;
|
|
2838
|
+
animation:none;
|
|
2839
|
+
}
|
|
2840
|
+
.rating input:active:focus{
|
|
2841
|
+
transform:translateY(-.125em);
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
@-webkit-keyframes rating-pop{
|
|
2845
|
+
0%{
|
|
2846
|
+
transform:translateY(-.125em);
|
|
2847
|
+
}
|
|
2848
|
+
|
|
2849
|
+
40%{
|
|
2850
|
+
transform:translateY(-.125em);
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2853
|
+
to{
|
|
2854
|
+
transform:translateY(0);
|
|
2855
|
+
}
|
|
2856
|
+
}
|
|
2857
|
+
|
|
2858
|
+
@keyframes rating-pop{
|
|
2859
|
+
0%{
|
|
2860
|
+
transform:translateY(-.125em);
|
|
2861
|
+
}
|
|
2862
|
+
|
|
2863
|
+
40%{
|
|
2864
|
+
transform:translateY(-.125em);
|
|
2865
|
+
}
|
|
2866
|
+
|
|
2867
|
+
to{
|
|
2868
|
+
transform:translateY(0);
|
|
2869
|
+
}
|
|
2870
|
+
}.select{
|
|
2797
2871
|
--tw-bg-opacity:1;
|
|
2798
2872
|
background-color:hsla(var(--b1) / var(--tw-bg-opacity, 1));
|
|
2799
2873
|
--tw-border-opacity:1;
|
|
@@ -3263,11 +3337,6 @@
|
|
|
3263
3337
|
--tw-bg-opacity:1;
|
|
3264
3338
|
background-color:hsla(var(--b2) / var(--tw-bg-opacity, 1));
|
|
3265
3339
|
}
|
|
3266
|
-
.table-compact td,.table-compact th{
|
|
3267
|
-
font-size:.875rem;
|
|
3268
|
-
line-height:1.25rem;
|
|
3269
|
-
padding:.5rem;
|
|
3270
|
-
}
|
|
3271
3340
|
.textarea{
|
|
3272
3341
|
--tw-bg-opacity:1;
|
|
3273
3342
|
background-color:hsla(var(--b1) / var(--tw-bg-opacity, 1));
|
|
@@ -3391,20 +3460,26 @@
|
|
|
3391
3460
|
.toggle:focus-visible{
|
|
3392
3461
|
--focus-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--bc));
|
|
3393
3462
|
}
|
|
3394
|
-
.toggle:checked{
|
|
3395
|
-
--chkbg:hsl(var(--bc))
|
|
3463
|
+
.toggle:checked,.toggle[checked=true]{
|
|
3464
|
+
--chkbg:hsl(var(--bc))
|
|
3465
|
+
}
|
|
3466
|
+
.toggle:checked,.toggle[checked=true]{
|
|
3396
3467
|
--tw-bg-opacity:1;
|
|
3397
3468
|
--tw-border-opacity:1;
|
|
3469
|
+
}
|
|
3470
|
+
.toggle:checked,.toggle[checked=true]{
|
|
3398
3471
|
box-shadow:var(--handleoffset) 0 0 2px hsl(var(--b1)) inset, 0 0 0 2px hsl(var(--b1)) inset, var(--focus-shadow);
|
|
3399
3472
|
}
|
|
3400
|
-
[dir=rtl] .toggle:checked{
|
|
3473
|
+
[dir=rtl] .toggle:checked,[dir=rtl] .toggle[checked=true]{
|
|
3401
3474
|
box-shadow:calc(var(--handleoffset)*1) 0 0 2px hsl(var(--b1)) inset, 0 0 0 2px hsl(var(--b1)) inset, var(--focus-shadow);
|
|
3402
3475
|
}
|
|
3403
3476
|
.toggle-primary:focus-visible{
|
|
3404
3477
|
--focus-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--p));
|
|
3405
3478
|
}
|
|
3406
|
-
.toggle-primary:checked{
|
|
3479
|
+
.toggle-primary:checked,.toggle-primary[checked=true]{
|
|
3407
3480
|
--chkbg:hsl(var(--p));
|
|
3481
|
+
}
|
|
3482
|
+
.toggle-primary:checked,.toggle-primary[checked=true]{
|
|
3408
3483
|
--tw-bg-opacity:1;
|
|
3409
3484
|
background-color:hsla(var(--p) / var(--tw-bg-opacity, 1));
|
|
3410
3485
|
--tw-border-opacity:1;
|
|
@@ -3416,8 +3491,10 @@
|
|
|
3416
3491
|
.toggle-secondary:focus-visible{
|
|
3417
3492
|
--focus-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--s));
|
|
3418
3493
|
}
|
|
3419
|
-
.toggle-secondary:checked{
|
|
3494
|
+
.toggle-secondary:checked,.toggle-secondary[checked=true]{
|
|
3420
3495
|
--chkbg:hsl(var(--s));
|
|
3496
|
+
}
|
|
3497
|
+
.toggle-secondary:checked,.toggle-secondary[checked=true]{
|
|
3421
3498
|
--tw-bg-opacity:1;
|
|
3422
3499
|
background-color:hsla(var(--s) / var(--tw-bg-opacity, 1));
|
|
3423
3500
|
--tw-border-opacity:1;
|
|
@@ -3429,8 +3506,10 @@
|
|
|
3429
3506
|
.toggle-accent:focus-visible{
|
|
3430
3507
|
--focus-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--a));
|
|
3431
3508
|
}
|
|
3432
|
-
.toggle-accent:checked{
|
|
3509
|
+
.toggle-accent:checked,.toggle-accent[checked=true]{
|
|
3433
3510
|
--chkbg:hsl(var(--a));
|
|
3511
|
+
}
|
|
3512
|
+
.toggle-accent:checked,.toggle-accent[checked=true]{
|
|
3434
3513
|
--tw-bg-opacity:1;
|
|
3435
3514
|
background-color:hsla(var(--a) / var(--tw-bg-opacity, 1));
|
|
3436
3515
|
--tw-border-opacity:1;
|