manolis-ui 0.27.4 → 0.28.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/dist/SearchCounter-Bo1dwTXm.js +41 -0
- package/dist/index.d.ts +2471 -235
- package/dist/manolis-ui.css +1 -1
- package/dist/manolis-ui.js +3989 -1845
- package/dist/manolis-ui.umd.cjs +11 -11
- package/dist/style.css +257 -182
- package/package.json +2 -4
- package/dist/inputField-BxT95oyM.js +0 -4
- package/dist/select-Cz4vf_YE.js +0 -4
package/dist/style.css
CHANGED
|
@@ -50,15 +50,17 @@
|
|
|
50
50
|
--text-5xl--line-height: 1;
|
|
51
51
|
--text-6xl: 3.75rem;
|
|
52
52
|
--text-6xl--line-height: 1;
|
|
53
|
+
--font-weight-normal: 400;
|
|
53
54
|
--font-weight-medium: 500;
|
|
54
55
|
--font-weight-semibold: 600;
|
|
55
56
|
--font-weight-bold: 700;
|
|
56
57
|
--font-weight-black: 900;
|
|
58
|
+
--tracking-wider: 0.05em;
|
|
57
59
|
--radius-sm: 0.25rem;
|
|
58
60
|
--radius-md: 0.375rem;
|
|
59
61
|
--radius-lg: 0.5rem;
|
|
60
62
|
--radius-2xl: 1rem;
|
|
61
|
-
--
|
|
63
|
+
--radius-3xl: 1.5rem;
|
|
62
64
|
--default-transition-duration: 150ms;
|
|
63
65
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
64
66
|
--default-font-family: var(--font-sans);
|
|
@@ -500,6 +502,74 @@
|
|
|
500
502
|
}
|
|
501
503
|
}
|
|
502
504
|
}
|
|
505
|
+
.tooltip {
|
|
506
|
+
@layer daisyui.l1.l2.l3 {
|
|
507
|
+
position: relative;
|
|
508
|
+
display: inline-block;
|
|
509
|
+
--tt-bg: var(--color-neutral);
|
|
510
|
+
--tt-off: calc(100% + 0.5rem);
|
|
511
|
+
--tt-tail: calc(100% + 1px + 0.25rem);
|
|
512
|
+
& > .tooltip-content, &[data-tip]:before {
|
|
513
|
+
position: absolute;
|
|
514
|
+
max-width: 20rem;
|
|
515
|
+
border-radius: var(--radius-field);
|
|
516
|
+
padding-inline: calc(0.25rem * 2);
|
|
517
|
+
padding-block: calc(0.25rem * 1);
|
|
518
|
+
text-align: center;
|
|
519
|
+
white-space: normal;
|
|
520
|
+
color: var(--color-neutral-content);
|
|
521
|
+
opacity: 0%;
|
|
522
|
+
font-size: 0.875rem;
|
|
523
|
+
line-height: 1.25;
|
|
524
|
+
background-color: var(--tt-bg);
|
|
525
|
+
width: max-content;
|
|
526
|
+
pointer-events: none;
|
|
527
|
+
z-index: 2;
|
|
528
|
+
--tw-content: attr(data-tip);
|
|
529
|
+
content: var(--tw-content);
|
|
530
|
+
}
|
|
531
|
+
&:after {
|
|
532
|
+
opacity: 0%;
|
|
533
|
+
background-color: var(--tt-bg);
|
|
534
|
+
content: "";
|
|
535
|
+
pointer-events: none;
|
|
536
|
+
width: 0.625rem;
|
|
537
|
+
height: 0.25rem;
|
|
538
|
+
display: block;
|
|
539
|
+
position: absolute;
|
|
540
|
+
mask-repeat: no-repeat;
|
|
541
|
+
mask-position: -1px 0;
|
|
542
|
+
--mask-tooltip: url("data:image/svg+xml,%3Csvg width='10' height='4' viewBox='0 0 8 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.500009 1C3.5 1 3.00001 4 5.00001 4C7 4 6.5 1 9.5 1C10 1 10 0.499897 10 0H0C-1.99338e-08 0.5 0 1 0.500009 1Z' fill='black'/%3E%3C/svg%3E%0A");
|
|
543
|
+
mask-image: var(--mask-tooltip);
|
|
544
|
+
}
|
|
545
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
546
|
+
& > .tooltip-content, &[data-tip]:before, &:after {
|
|
547
|
+
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 75ms, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 75ms;
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
&:is([data-tip]:not([data-tip=""]), :has(.tooltip-content:not(:empty))) {
|
|
551
|
+
&.tooltip-open, &:hover, &:has(:focus-visible) {
|
|
552
|
+
& > .tooltip-content, &[data-tip]:before, &:after {
|
|
553
|
+
opacity: 100%;
|
|
554
|
+
--tt-pos: 0rem;
|
|
555
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
556
|
+
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
@layer daisyui.l1.l2 {
|
|
563
|
+
> .tooltip-content, &[data-tip]:before {
|
|
564
|
+
transform: translateX(-50%) translateY(var(--tt-pos, 0.25rem));
|
|
565
|
+
inset: auto auto var(--tt-off) 50%;
|
|
566
|
+
}
|
|
567
|
+
&:after {
|
|
568
|
+
transform: translateX(-50%) translateY(var(--tt-pos, 0.25rem));
|
|
569
|
+
inset: auto auto var(--tt-tail) 50%;
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
}
|
|
503
573
|
.tab {
|
|
504
574
|
@layer daisyui.l1.l2.l3 {
|
|
505
575
|
position: relative;
|
|
@@ -2851,6 +2921,21 @@
|
|
|
2851
2921
|
.relative {
|
|
2852
2922
|
position: relative;
|
|
2853
2923
|
}
|
|
2924
|
+
.tooltip-left {
|
|
2925
|
+
@layer daisyui.l1.l2 {
|
|
2926
|
+
> .tooltip-content, &[data-tip]:before {
|
|
2927
|
+
transform: translateX(calc(var(--tt-pos, 0.25rem) - 0.25rem)) translateY(-50%);
|
|
2928
|
+
inset: 50% var(--tt-off) auto auto;
|
|
2929
|
+
}
|
|
2930
|
+
&:after {
|
|
2931
|
+
transform: translateX(var(--tt-pos, 0.25rem)) translateY(-50%) rotate(-90deg);
|
|
2932
|
+
inset: 50% calc(var(--tt-tail) + 1px) auto auto;
|
|
2933
|
+
}
|
|
2934
|
+
}
|
|
2935
|
+
}
|
|
2936
|
+
.inset-0 {
|
|
2937
|
+
inset: calc(var(--spacing) * 0);
|
|
2938
|
+
}
|
|
2854
2939
|
.toast-center {
|
|
2855
2940
|
@layer daisyui.l1.l2 {
|
|
2856
2941
|
inset-inline-start: calc(1/2 * 100%);
|
|
@@ -2971,9 +3056,6 @@
|
|
|
2971
3056
|
.top-4 {
|
|
2972
3057
|
top: calc(var(--spacing) * 4);
|
|
2973
3058
|
}
|
|
2974
|
-
.top-6 {
|
|
2975
|
-
top: calc(var(--spacing) * 6);
|
|
2976
|
-
}
|
|
2977
3059
|
.top-full {
|
|
2978
3060
|
top: 100%;
|
|
2979
3061
|
}
|
|
@@ -2983,27 +3065,18 @@
|
|
|
2983
3065
|
.right-5 {
|
|
2984
3066
|
right: calc(var(--spacing) * 5);
|
|
2985
3067
|
}
|
|
2986
|
-
.right-6 {
|
|
2987
|
-
right: calc(var(--spacing) * 6);
|
|
2988
|
-
}
|
|
2989
3068
|
.bottom-0 {
|
|
2990
3069
|
bottom: calc(var(--spacing) * 0);
|
|
2991
3070
|
}
|
|
2992
3071
|
.bottom-5 {
|
|
2993
3072
|
bottom: calc(var(--spacing) * 5);
|
|
2994
3073
|
}
|
|
2995
|
-
.bottom-6 {
|
|
2996
|
-
bottom: calc(var(--spacing) * 6);
|
|
2997
|
-
}
|
|
2998
3074
|
.left-0 {
|
|
2999
3075
|
left: calc(var(--spacing) * 0);
|
|
3000
3076
|
}
|
|
3001
3077
|
.left-5 {
|
|
3002
3078
|
left: calc(var(--spacing) * 5);
|
|
3003
3079
|
}
|
|
3004
|
-
.left-6 {
|
|
3005
|
-
left: calc(var(--spacing) * 6);
|
|
3006
|
-
}
|
|
3007
3080
|
.join {
|
|
3008
3081
|
display: inline-flex;
|
|
3009
3082
|
align-items: stretch;
|
|
@@ -3381,9 +3454,15 @@
|
|
|
3381
3454
|
.z-10 {
|
|
3382
3455
|
z-index: 10;
|
|
3383
3456
|
}
|
|
3457
|
+
.z-20 {
|
|
3458
|
+
z-index: 20;
|
|
3459
|
+
}
|
|
3384
3460
|
.z-30 {
|
|
3385
3461
|
z-index: 30;
|
|
3386
3462
|
}
|
|
3463
|
+
.z-40 {
|
|
3464
|
+
z-index: 40;
|
|
3465
|
+
}
|
|
3387
3466
|
.z-50 {
|
|
3388
3467
|
z-index: 50;
|
|
3389
3468
|
}
|
|
@@ -4237,20 +4316,9 @@
|
|
|
4237
4316
|
.mb-10 {
|
|
4238
4317
|
margin-bottom: calc(var(--spacing) * 10);
|
|
4239
4318
|
}
|
|
4240
|
-
.ml-1 {
|
|
4241
|
-
margin-left: calc(var(--spacing) * 1);
|
|
4242
|
-
}
|
|
4243
4319
|
.ml-2 {
|
|
4244
4320
|
margin-left: calc(var(--spacing) * 2);
|
|
4245
4321
|
}
|
|
4246
|
-
.carousel-item {
|
|
4247
|
-
@layer daisyui.l1.l2.l3 {
|
|
4248
|
-
box-sizing: content-box;
|
|
4249
|
-
display: flex;
|
|
4250
|
-
flex: none;
|
|
4251
|
-
scroll-snap-align: start;
|
|
4252
|
-
}
|
|
4253
|
-
}
|
|
4254
4322
|
.status {
|
|
4255
4323
|
@layer daisyui.l1.l2.l3 {
|
|
4256
4324
|
display: inline-block;
|
|
@@ -4558,6 +4626,9 @@
|
|
|
4558
4626
|
.block {
|
|
4559
4627
|
display: block;
|
|
4560
4628
|
}
|
|
4629
|
+
.contents {
|
|
4630
|
+
display: contents;
|
|
4631
|
+
}
|
|
4561
4632
|
.contents\! {
|
|
4562
4633
|
display: contents !important;
|
|
4563
4634
|
}
|
|
@@ -4898,6 +4969,9 @@
|
|
|
4898
4969
|
.min-h-40 {
|
|
4899
4970
|
min-height: calc(var(--spacing) * 40);
|
|
4900
4971
|
}
|
|
4972
|
+
.min-h-\[400px\] {
|
|
4973
|
+
min-height: 400px;
|
|
4974
|
+
}
|
|
4901
4975
|
.min-h-full {
|
|
4902
4976
|
min-height: 100%;
|
|
4903
4977
|
}
|
|
@@ -5207,6 +5281,9 @@
|
|
|
5207
5281
|
.max-w-6xl {
|
|
5208
5282
|
max-width: var(--container-6xl);
|
|
5209
5283
|
}
|
|
5284
|
+
.max-w-\[140px\] {
|
|
5285
|
+
max-width: 140px;
|
|
5286
|
+
}
|
|
5210
5287
|
.max-w-full {
|
|
5211
5288
|
max-width: 100%;
|
|
5212
5289
|
}
|
|
@@ -5225,6 +5302,18 @@
|
|
|
5225
5302
|
.min-w-64 {
|
|
5226
5303
|
min-width: calc(var(--spacing) * 64);
|
|
5227
5304
|
}
|
|
5305
|
+
.min-w-\[280px\] {
|
|
5306
|
+
min-width: 280px;
|
|
5307
|
+
}
|
|
5308
|
+
.min-w-\[300px\] {
|
|
5309
|
+
min-width: 300px;
|
|
5310
|
+
}
|
|
5311
|
+
.min-w-\[350px\] {
|
|
5312
|
+
min-width: 350px;
|
|
5313
|
+
}
|
|
5314
|
+
.min-w-\[400px\] {
|
|
5315
|
+
min-width: 400px;
|
|
5316
|
+
}
|
|
5228
5317
|
.min-w-\[inherit\] {
|
|
5229
5318
|
min-width: inherit;
|
|
5230
5319
|
}
|
|
@@ -5246,9 +5335,6 @@
|
|
|
5246
5335
|
.flex-shrink-0 {
|
|
5247
5336
|
flex-shrink: 0;
|
|
5248
5337
|
}
|
|
5249
|
-
.shrink {
|
|
5250
|
-
flex-shrink: 1;
|
|
5251
|
-
}
|
|
5252
5338
|
.shrink-0 {
|
|
5253
5339
|
flex-shrink: 0;
|
|
5254
5340
|
}
|
|
@@ -5321,29 +5407,9 @@
|
|
|
5321
5407
|
.cursor-default {
|
|
5322
5408
|
cursor: default;
|
|
5323
5409
|
}
|
|
5324
|
-
.cursor-grabbing {
|
|
5325
|
-
cursor: grabbing;
|
|
5326
|
-
}
|
|
5327
5410
|
.cursor-pointer {
|
|
5328
5411
|
cursor: pointer;
|
|
5329
5412
|
}
|
|
5330
|
-
.resize {
|
|
5331
|
-
resize: both;
|
|
5332
|
-
}
|
|
5333
|
-
.carousel-horizontal {
|
|
5334
|
-
@layer daisyui.l1.l2 {
|
|
5335
|
-
flex-direction: row;
|
|
5336
|
-
overflow-x: scroll;
|
|
5337
|
-
scroll-snap-type: x mandatory;
|
|
5338
|
-
}
|
|
5339
|
-
}
|
|
5340
|
-
.carousel-vertical {
|
|
5341
|
-
@layer daisyui.l1.l2 {
|
|
5342
|
-
flex-direction: column;
|
|
5343
|
-
overflow-y: scroll;
|
|
5344
|
-
scroll-snap-type: y mandatory;
|
|
5345
|
-
}
|
|
5346
|
-
}
|
|
5347
5413
|
.stats-horizontal {
|
|
5348
5414
|
@layer daisyui.l1.l2 {
|
|
5349
5415
|
grid-auto-flow: column;
|
|
@@ -5421,6 +5487,9 @@
|
|
|
5421
5487
|
.gap-5 {
|
|
5422
5488
|
gap: calc(var(--spacing) * 5);
|
|
5423
5489
|
}
|
|
5490
|
+
.gap-6 {
|
|
5491
|
+
gap: calc(var(--spacing) * 6);
|
|
5492
|
+
}
|
|
5424
5493
|
.space-y-2 {
|
|
5425
5494
|
:where(& > :not(:last-child)) {
|
|
5426
5495
|
--tw-space-y-reverse: 0;
|
|
@@ -5453,15 +5522,9 @@
|
|
|
5453
5522
|
.overflow-x-auto {
|
|
5454
5523
|
overflow-x: auto;
|
|
5455
5524
|
}
|
|
5456
|
-
.overflow-x-hidden {
|
|
5457
|
-
overflow-x: hidden;
|
|
5458
|
-
}
|
|
5459
5525
|
.overflow-y-auto {
|
|
5460
5526
|
overflow-y: auto;
|
|
5461
5527
|
}
|
|
5462
|
-
.overflow-y-scroll {
|
|
5463
|
-
overflow-y: scroll;
|
|
5464
|
-
}
|
|
5465
5528
|
.timeline-box {
|
|
5466
5529
|
@layer daisyui.l1.l2.l3 {
|
|
5467
5530
|
border: var(--border) solid;
|
|
@@ -5497,6 +5560,9 @@
|
|
|
5497
5560
|
.rounded-2xl {
|
|
5498
5561
|
border-radius: var(--radius-2xl);
|
|
5499
5562
|
}
|
|
5563
|
+
.rounded-3xl {
|
|
5564
|
+
border-radius: var(--radius-3xl);
|
|
5565
|
+
}
|
|
5500
5566
|
.rounded-box {
|
|
5501
5567
|
border-radius: var(--radius-box);
|
|
5502
5568
|
}
|
|
@@ -5602,12 +5668,6 @@
|
|
|
5602
5668
|
.border-base-300 {
|
|
5603
5669
|
border-color: var(--color-base-300);
|
|
5604
5670
|
}
|
|
5605
|
-
.border-base-300\/25 {
|
|
5606
|
-
border-color: var(--color-base-300);
|
|
5607
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
5608
|
-
border-color: color-mix(in oklab, var(--color-base-300) 25%, transparent);
|
|
5609
|
-
}
|
|
5610
|
-
}
|
|
5611
5671
|
.border-base-content\/20 {
|
|
5612
5672
|
border-color: var(--color-base-content);
|
|
5613
5673
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -5646,6 +5706,12 @@
|
|
|
5646
5706
|
.bg-base-100 {
|
|
5647
5707
|
background-color: var(--color-base-100);
|
|
5648
5708
|
}
|
|
5709
|
+
.bg-base-100\/50 {
|
|
5710
|
+
background-color: var(--color-base-100);
|
|
5711
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5712
|
+
background-color: color-mix(in oklab, var(--color-base-100) 50%, transparent);
|
|
5713
|
+
}
|
|
5714
|
+
}
|
|
5649
5715
|
.bg-base-200 {
|
|
5650
5716
|
background-color: var(--color-base-200);
|
|
5651
5717
|
}
|
|
@@ -5913,6 +5979,9 @@
|
|
|
5913
5979
|
.px-5 {
|
|
5914
5980
|
padding-inline: calc(var(--spacing) * 5);
|
|
5915
5981
|
}
|
|
5982
|
+
.px-6 {
|
|
5983
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
5984
|
+
}
|
|
5916
5985
|
.py-0\! {
|
|
5917
5986
|
padding-block: calc(var(--spacing) * 0) !important;
|
|
5918
5987
|
}
|
|
@@ -5940,8 +6009,8 @@
|
|
|
5940
6009
|
.py-10 {
|
|
5941
6010
|
padding-block: calc(var(--spacing) * 10);
|
|
5942
6011
|
}
|
|
5943
|
-
.pr-
|
|
5944
|
-
padding-right: calc(var(--spacing) *
|
|
6012
|
+
.pr-2 {
|
|
6013
|
+
padding-right: calc(var(--spacing) * 2);
|
|
5945
6014
|
}
|
|
5946
6015
|
.text-center {
|
|
5947
6016
|
text-align: center;
|
|
@@ -5949,12 +6018,12 @@
|
|
|
5949
6018
|
.text-left {
|
|
5950
6019
|
text-align: left;
|
|
5951
6020
|
}
|
|
5952
|
-
.text-start {
|
|
5953
|
-
text-align: start;
|
|
5954
|
-
}
|
|
5955
6021
|
.font-mono {
|
|
5956
6022
|
font-family: var(--font-mono);
|
|
5957
6023
|
}
|
|
6024
|
+
.font-sans {
|
|
6025
|
+
font-family: var(--font-sans);
|
|
6026
|
+
}
|
|
5958
6027
|
.text-2xl {
|
|
5959
6028
|
font-size: var(--text-2xl);
|
|
5960
6029
|
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
@@ -6041,6 +6110,10 @@
|
|
|
6041
6110
|
--tw-font-weight: var(--font-weight-semibold);
|
|
6042
6111
|
font-weight: var(--font-weight-semibold);
|
|
6043
6112
|
}
|
|
6113
|
+
.tracking-wider {
|
|
6114
|
+
--tw-tracking: var(--tracking-wider);
|
|
6115
|
+
letter-spacing: var(--tracking-wider);
|
|
6116
|
+
}
|
|
6044
6117
|
.alert-error {
|
|
6045
6118
|
@layer daisyui.l1.l2 {
|
|
6046
6119
|
color: var(--color-error-content);
|
|
@@ -6086,6 +6159,12 @@
|
|
|
6086
6159
|
.text-base-content {
|
|
6087
6160
|
color: var(--color-base-content);
|
|
6088
6161
|
}
|
|
6162
|
+
.text-base-content\/40 {
|
|
6163
|
+
color: var(--color-base-content);
|
|
6164
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
6165
|
+
color: color-mix(in oklab, var(--color-base-content) 40%, transparent);
|
|
6166
|
+
}
|
|
6167
|
+
}
|
|
6089
6168
|
.text-base-content\/50 {
|
|
6090
6169
|
color: var(--color-base-content);
|
|
6091
6170
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -6098,6 +6177,12 @@
|
|
|
6098
6177
|
color: color-mix(in oklab, var(--color-base-content) 60%, transparent);
|
|
6099
6178
|
}
|
|
6100
6179
|
}
|
|
6180
|
+
.text-base-content\/70 {
|
|
6181
|
+
color: var(--color-base-content);
|
|
6182
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
6183
|
+
color: color-mix(in oklab, var(--color-base-content) 70%, transparent);
|
|
6184
|
+
}
|
|
6185
|
+
}
|
|
6101
6186
|
.text-blue-500 {
|
|
6102
6187
|
color: var(--color-blue-500);
|
|
6103
6188
|
}
|
|
@@ -6155,6 +6240,12 @@
|
|
|
6155
6240
|
.text-white {
|
|
6156
6241
|
color: var(--color-white);
|
|
6157
6242
|
}
|
|
6243
|
+
.capitalize {
|
|
6244
|
+
text-transform: capitalize;
|
|
6245
|
+
}
|
|
6246
|
+
.uppercase {
|
|
6247
|
+
text-transform: uppercase;
|
|
6248
|
+
}
|
|
6158
6249
|
.italic {
|
|
6159
6250
|
font-style: italic;
|
|
6160
6251
|
}
|
|
@@ -6188,9 +6279,6 @@
|
|
|
6188
6279
|
}
|
|
6189
6280
|
}
|
|
6190
6281
|
}
|
|
6191
|
-
.opacity-35 {
|
|
6192
|
-
opacity: 35%;
|
|
6193
|
-
}
|
|
6194
6282
|
.opacity-50 {
|
|
6195
6283
|
opacity: 50%;
|
|
6196
6284
|
}
|
|
@@ -6215,10 +6303,6 @@
|
|
|
6215
6303
|
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
6216
6304
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6217
6305
|
}
|
|
6218
|
-
.shadow-md {
|
|
6219
|
-
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
6220
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6221
|
-
}
|
|
6222
6306
|
.shadow-sm {
|
|
6223
6307
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
6224
6308
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -6296,17 +6380,13 @@
|
|
|
6296
6380
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
6297
6381
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
6298
6382
|
}
|
|
6299
|
-
.duration-0 {
|
|
6300
|
-
--tw-duration: 0ms;
|
|
6301
|
-
transition-duration: 0ms;
|
|
6302
|
-
}
|
|
6303
6383
|
.duration-200 {
|
|
6304
6384
|
--tw-duration: 200ms;
|
|
6305
6385
|
transition-duration: 200ms;
|
|
6306
6386
|
}
|
|
6307
|
-
.
|
|
6308
|
-
--tw-
|
|
6309
|
-
transition-
|
|
6387
|
+
.duration-300 {
|
|
6388
|
+
--tw-duration: 300ms;
|
|
6389
|
+
transition-duration: 300ms;
|
|
6310
6390
|
}
|
|
6311
6391
|
.btn-outline {
|
|
6312
6392
|
@layer daisyui.l1 {
|
|
@@ -6349,10 +6429,6 @@
|
|
|
6349
6429
|
--size: calc(var(--size-field, 0.25rem) * 6);
|
|
6350
6430
|
}
|
|
6351
6431
|
}
|
|
6352
|
-
.\!select-none {
|
|
6353
|
-
-webkit-user-select: none !important;
|
|
6354
|
-
user-select: none !important;
|
|
6355
|
-
}
|
|
6356
6432
|
.badge-accent {
|
|
6357
6433
|
@layer daisyui.l1.l2 {
|
|
6358
6434
|
--badge-color: var(--color-accent);
|
|
@@ -6449,6 +6525,10 @@
|
|
|
6449
6525
|
--btn-fg: var(--color-warning-content);
|
|
6450
6526
|
}
|
|
6451
6527
|
}
|
|
6528
|
+
.outline-none {
|
|
6529
|
+
--tw-outline-style: none;
|
|
6530
|
+
outline-style: none;
|
|
6531
|
+
}
|
|
6452
6532
|
.timeline-snap-icon {
|
|
6453
6533
|
@layer daisyui.l1.l2 {
|
|
6454
6534
|
> li {
|
|
@@ -6525,47 +6605,34 @@
|
|
|
6525
6605
|
color: var(--color-primary-content);
|
|
6526
6606
|
}
|
|
6527
6607
|
}
|
|
6528
|
-
.
|
|
6529
|
-
|
|
6530
|
-
|
|
6531
|
-
position: absolute;
|
|
6608
|
+
.peer-checked\:z-30 {
|
|
6609
|
+
&:is(:where(.peer):checked ~ *) {
|
|
6610
|
+
z-index: 30;
|
|
6532
6611
|
}
|
|
6533
6612
|
}
|
|
6534
|
-
.
|
|
6535
|
-
|
|
6536
|
-
|
|
6537
|
-
top: calc(var(--spacing) * 0);
|
|
6613
|
+
.peer-checked\:bg-white {
|
|
6614
|
+
&:is(:where(.peer):checked ~ *) {
|
|
6615
|
+
background-color: var(--color-white);
|
|
6538
6616
|
}
|
|
6539
6617
|
}
|
|
6540
|
-
.
|
|
6541
|
-
|
|
6542
|
-
|
|
6543
|
-
|
|
6618
|
+
.peer-checked\:shadow-sm {
|
|
6619
|
+
&:is(:where(.peer):checked ~ *) {
|
|
6620
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
6621
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6544
6622
|
}
|
|
6545
6623
|
}
|
|
6546
|
-
.
|
|
6547
|
-
&::
|
|
6548
|
-
|
|
6549
|
-
|
|
6624
|
+
.placeholder\:font-normal {
|
|
6625
|
+
&::placeholder {
|
|
6626
|
+
--tw-font-weight: var(--font-weight-normal);
|
|
6627
|
+
font-weight: var(--font-weight-normal);
|
|
6550
6628
|
}
|
|
6551
6629
|
}
|
|
6552
|
-
.
|
|
6553
|
-
&::
|
|
6554
|
-
|
|
6555
|
-
|
|
6556
|
-
|
|
6557
|
-
|
|
6558
|
-
.after\:bg-base-200 {
|
|
6559
|
-
&::after {
|
|
6560
|
-
content: var(--tw-content);
|
|
6561
|
-
background-color: var(--color-base-200);
|
|
6562
|
-
}
|
|
6563
|
-
}
|
|
6564
|
-
.after\:content-none {
|
|
6565
|
-
&::after {
|
|
6566
|
-
content: var(--tw-content);
|
|
6567
|
-
--tw-content: none;
|
|
6568
|
-
content: none;
|
|
6630
|
+
.placeholder\:text-base-content\/30 {
|
|
6631
|
+
&::placeholder {
|
|
6632
|
+
color: var(--color-base-content);
|
|
6633
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
6634
|
+
color: color-mix(in oklab, var(--color-base-content) 30%, transparent);
|
|
6635
|
+
}
|
|
6569
6636
|
}
|
|
6570
6637
|
}
|
|
6571
6638
|
.last\:border-b-0 {
|
|
@@ -6574,25 +6641,6 @@
|
|
|
6574
6641
|
border-bottom-width: 0px;
|
|
6575
6642
|
}
|
|
6576
6643
|
}
|
|
6577
|
-
.first-of-type\:flex-auto {
|
|
6578
|
-
&:first-of-type {
|
|
6579
|
-
flex: auto;
|
|
6580
|
-
}
|
|
6581
|
-
}
|
|
6582
|
-
.last-of-type\:flex-auto {
|
|
6583
|
-
&:last-of-type {
|
|
6584
|
-
flex: auto;
|
|
6585
|
-
}
|
|
6586
|
-
}
|
|
6587
|
-
.last-of-type\:after\:content-none {
|
|
6588
|
-
&:last-of-type {
|
|
6589
|
-
&::after {
|
|
6590
|
-
content: var(--tw-content);
|
|
6591
|
-
--tw-content: none;
|
|
6592
|
-
content: none;
|
|
6593
|
-
}
|
|
6594
|
-
}
|
|
6595
|
-
}
|
|
6596
6644
|
.open\:-m-0\.5 {
|
|
6597
6645
|
&:is([open], :popover-open, :open) {
|
|
6598
6646
|
margin: calc(var(--spacing) * -0.5);
|
|
@@ -6625,6 +6673,16 @@
|
|
|
6625
6673
|
}
|
|
6626
6674
|
}
|
|
6627
6675
|
}
|
|
6676
|
+
.hover\:scale-105 {
|
|
6677
|
+
&:hover {
|
|
6678
|
+
@media (hover: hover) {
|
|
6679
|
+
--tw-scale-x: 105%;
|
|
6680
|
+
--tw-scale-y: 105%;
|
|
6681
|
+
--tw-scale-z: 105%;
|
|
6682
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
6683
|
+
}
|
|
6684
|
+
}
|
|
6685
|
+
}
|
|
6628
6686
|
.hover\:border-b-2 {
|
|
6629
6687
|
&:hover {
|
|
6630
6688
|
@media (hover: hover) {
|
|
@@ -6633,6 +6691,13 @@
|
|
|
6633
6691
|
}
|
|
6634
6692
|
}
|
|
6635
6693
|
}
|
|
6694
|
+
.hover\:border-black {
|
|
6695
|
+
&:hover {
|
|
6696
|
+
@media (hover: hover) {
|
|
6697
|
+
border-color: var(--color-black);
|
|
6698
|
+
}
|
|
6699
|
+
}
|
|
6700
|
+
}
|
|
6636
6701
|
.hover\:bg-base-200 {
|
|
6637
6702
|
&:hover {
|
|
6638
6703
|
@media (hover: hover) {
|
|
@@ -6654,6 +6719,12 @@
|
|
|
6654
6719
|
}
|
|
6655
6720
|
}
|
|
6656
6721
|
}
|
|
6722
|
+
.focus\:ring-0 {
|
|
6723
|
+
&:focus {
|
|
6724
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
6725
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6726
|
+
}
|
|
6727
|
+
}
|
|
6657
6728
|
.focus\:outline-none {
|
|
6658
6729
|
&:focus {
|
|
6659
6730
|
--tw-outline-style: none;
|
|
@@ -6670,6 +6741,11 @@
|
|
|
6670
6741
|
color: var(--color-primary-content);
|
|
6671
6742
|
}
|
|
6672
6743
|
}
|
|
6744
|
+
.disabled\:opacity-20 {
|
|
6745
|
+
&:disabled {
|
|
6746
|
+
opacity: 20%;
|
|
6747
|
+
}
|
|
6748
|
+
}
|
|
6673
6749
|
.max-lg\:w-full {
|
|
6674
6750
|
@media (width < 64rem) {
|
|
6675
6751
|
width: 100%;
|
|
@@ -6854,11 +6930,6 @@
|
|
|
6854
6930
|
padding-block: calc(var(--spacing) * 2);
|
|
6855
6931
|
}
|
|
6856
6932
|
}
|
|
6857
|
-
.md\:block {
|
|
6858
|
-
@media (width >= 48rem) {
|
|
6859
|
-
display: block;
|
|
6860
|
-
}
|
|
6861
|
-
}
|
|
6862
6933
|
.md\:flex {
|
|
6863
6934
|
@media (width >= 48rem) {
|
|
6864
6935
|
display: flex;
|
|
@@ -6884,14 +6955,14 @@
|
|
|
6884
6955
|
max-width: var(--container-sm);
|
|
6885
6956
|
}
|
|
6886
6957
|
}
|
|
6887
|
-
.md\:min-w
|
|
6958
|
+
.md\:min-w-\[600px\] {
|
|
6888
6959
|
@media (width >= 48rem) {
|
|
6889
|
-
min-width:
|
|
6960
|
+
min-width: 600px;
|
|
6890
6961
|
}
|
|
6891
6962
|
}
|
|
6892
|
-
.md\:
|
|
6963
|
+
.md\:min-w-full {
|
|
6893
6964
|
@media (width >= 48rem) {
|
|
6894
|
-
|
|
6965
|
+
min-width: 100%;
|
|
6895
6966
|
}
|
|
6896
6967
|
}
|
|
6897
6968
|
.md\:px-10 {
|
|
@@ -6908,14 +6979,6 @@
|
|
|
6908
6979
|
}
|
|
6909
6980
|
}
|
|
6910
6981
|
}
|
|
6911
|
-
.md\:after\:content-\[\'\'\] {
|
|
6912
|
-
@media (width >= 48rem) {
|
|
6913
|
-
&::after {
|
|
6914
|
-
--tw-content: '';
|
|
6915
|
-
content: var(--tw-content);
|
|
6916
|
-
}
|
|
6917
|
-
}
|
|
6918
|
-
}
|
|
6919
6982
|
.lg\:steps-horizontal {
|
|
6920
6983
|
@media (width >= 64rem) {
|
|
6921
6984
|
@layer daisyui.l1.l2 {
|
|
@@ -7242,34 +7305,34 @@
|
|
|
7242
7305
|
@layer base {
|
|
7243
7306
|
:where(:root),:root:has(input.theme-controller[value=reserveren]:checked),[data-theme="reserveren"] {
|
|
7244
7307
|
color-scheme: light;
|
|
7245
|
-
--color-base-100:
|
|
7246
|
-
--color-base-200: oklch(
|
|
7247
|
-
--color-base-300: oklch(95% 0.
|
|
7248
|
-
--color-base-content: oklch(
|
|
7249
|
-
--color-primary: oklch(
|
|
7250
|
-
--color-primary-content: oklch(
|
|
7251
|
-
--color-secondary:
|
|
7252
|
-
--color-secondary-content: oklch(
|
|
7253
|
-
--color-accent:
|
|
7254
|
-
--color-accent-content: oklch(
|
|
7255
|
-
--color-neutral: oklch(
|
|
7256
|
-
--color-neutral-content: oklch(
|
|
7257
|
-
--color-info: oklch(
|
|
7258
|
-
--color-info-content: oklch(
|
|
7259
|
-
--color-success: oklch(
|
|
7260
|
-
--color-success-content: oklch(
|
|
7261
|
-
--color-warning: oklch(
|
|
7262
|
-
--color-warning-content: oklch(
|
|
7263
|
-
--color-error: oklch(
|
|
7264
|
-
--color-error-content: oklch(
|
|
7265
|
-
--radius-selector:
|
|
7266
|
-
--radius-field:
|
|
7267
|
-
--radius-box:
|
|
7268
|
-
--size-selector: 0.
|
|
7269
|
-
--size-field: 0.
|
|
7308
|
+
--color-base-100: oklch(100% 0 0);
|
|
7309
|
+
--color-base-200: oklch(98% 0.01 240);
|
|
7310
|
+
--color-base-300: oklch(95% 0.02 240);
|
|
7311
|
+
--color-base-content: oklch(20% 0.05 240);
|
|
7312
|
+
--color-primary: oklch(33% 0.12 245);
|
|
7313
|
+
--color-primary-content: oklch(98% 0.01 240);
|
|
7314
|
+
--color-secondary: oklch(68% 0.16 245);
|
|
7315
|
+
--color-secondary-content: oklch(98% 0.01 240);
|
|
7316
|
+
--color-accent: oklch(82% 0.18 85);
|
|
7317
|
+
--color-accent-content: oklch(20% 0.05 85);
|
|
7318
|
+
--color-neutral: oklch(25% 0.02 260);
|
|
7319
|
+
--color-neutral-content: oklch(98% 0.01 240);
|
|
7320
|
+
--color-info: oklch(70% 0.2 220);
|
|
7321
|
+
--color-info-content: oklch(29% 0.066 243.157);
|
|
7322
|
+
--color-success: oklch(65% 0.25 140);
|
|
7323
|
+
--color-success-content: oklch(28.2% 0.266 168.940);
|
|
7324
|
+
--color-warning: oklch(80% 0.25 80);
|
|
7325
|
+
--color-warning-content: oklch(41% 0.153 45.904);
|
|
7326
|
+
--color-error: oklch(65% 0.3 30);
|
|
7327
|
+
--color-error-content: oklch(27% 0.105 12.094);
|
|
7328
|
+
--radius-selector: 1rem;
|
|
7329
|
+
--radius-field: 1rem;
|
|
7330
|
+
--radius-box: 0.5rem;
|
|
7331
|
+
--size-selector: 0.25rem;
|
|
7332
|
+
--size-field: 0.25rem;
|
|
7270
7333
|
--border: 1px;
|
|
7271
7334
|
--depth: 1;
|
|
7272
|
-
--noise:
|
|
7335
|
+
--noise: 0;
|
|
7273
7336
|
}
|
|
7274
7337
|
}
|
|
7275
7338
|
@property --tw-translate-x {
|
|
@@ -7363,6 +7426,10 @@
|
|
|
7363
7426
|
syntax: "*";
|
|
7364
7427
|
inherits: false;
|
|
7365
7428
|
}
|
|
7429
|
+
@property --tw-tracking {
|
|
7430
|
+
syntax: "*";
|
|
7431
|
+
inherits: false;
|
|
7432
|
+
}
|
|
7366
7433
|
@property --tw-shadow {
|
|
7367
7434
|
syntax: "*";
|
|
7368
7435
|
inherits: false;
|
|
@@ -7490,14 +7557,20 @@
|
|
|
7490
7557
|
syntax: "*";
|
|
7491
7558
|
inherits: false;
|
|
7492
7559
|
}
|
|
7493
|
-
@property --tw-
|
|
7560
|
+
@property --tw-scale-x {
|
|
7561
|
+
syntax: "*";
|
|
7562
|
+
inherits: false;
|
|
7563
|
+
initial-value: 1;
|
|
7564
|
+
}
|
|
7565
|
+
@property --tw-scale-y {
|
|
7494
7566
|
syntax: "*";
|
|
7495
7567
|
inherits: false;
|
|
7568
|
+
initial-value: 1;
|
|
7496
7569
|
}
|
|
7497
|
-
@property --tw-
|
|
7570
|
+
@property --tw-scale-z {
|
|
7498
7571
|
syntax: "*";
|
|
7499
|
-
initial-value: "";
|
|
7500
7572
|
inherits: false;
|
|
7573
|
+
initial-value: 1;
|
|
7501
7574
|
}
|
|
7502
7575
|
@layer properties {
|
|
7503
7576
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
@@ -7522,6 +7595,7 @@
|
|
|
7522
7595
|
--tw-gradient-via-position: 50%;
|
|
7523
7596
|
--tw-gradient-to-position: 100%;
|
|
7524
7597
|
--tw-font-weight: initial;
|
|
7598
|
+
--tw-tracking: initial;
|
|
7525
7599
|
--tw-shadow: 0 0 #0000;
|
|
7526
7600
|
--tw-shadow-color: initial;
|
|
7527
7601
|
--tw-shadow-alpha: 100%;
|
|
@@ -7551,8 +7625,9 @@
|
|
|
7551
7625
|
--tw-drop-shadow-alpha: 100%;
|
|
7552
7626
|
--tw-drop-shadow-size: initial;
|
|
7553
7627
|
--tw-duration: initial;
|
|
7554
|
-
--tw-
|
|
7555
|
-
--tw-
|
|
7628
|
+
--tw-scale-x: 1;
|
|
7629
|
+
--tw-scale-y: 1;
|
|
7630
|
+
--tw-scale-z: 1;
|
|
7556
7631
|
}
|
|
7557
7632
|
}
|
|
7558
7633
|
}
|