koin.js 1.0.10 → 1.0.12
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/index.d.mts +1 -13
- package/dist/index.d.ts +1 -13
- package/dist/index.js +279 -216
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +282 -218
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +0 -25
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -242,10 +242,6 @@
|
|
|
242
242
|
bottom: 1.5rem;
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
-
.koin-scope .bottom-full {
|
|
246
|
-
bottom: 100%;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
245
|
.koin-scope .left-0 {
|
|
250
246
|
left: 0px;
|
|
251
247
|
}
|
|
@@ -544,10 +540,6 @@
|
|
|
544
540
|
height: 100vh;
|
|
545
541
|
}
|
|
546
542
|
|
|
547
|
-
.koin-scope .max-h-64 {
|
|
548
|
-
max-height: 16rem;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
543
|
.koin-scope .max-h-\[400px\] {
|
|
552
544
|
max-height: 400px;
|
|
553
545
|
}
|
|
@@ -608,10 +600,6 @@
|
|
|
608
600
|
width: 1.25rem;
|
|
609
601
|
}
|
|
610
602
|
|
|
611
|
-
.koin-scope .w-56 {
|
|
612
|
-
width: 14rem;
|
|
613
|
-
}
|
|
614
|
-
|
|
615
603
|
.koin-scope .w-6 {
|
|
616
604
|
width: 1.5rem;
|
|
617
605
|
}
|
|
@@ -2056,11 +2044,6 @@
|
|
|
2056
2044
|
--tw-ring-color: rgb(234 179 8 / 0.5);
|
|
2057
2045
|
}
|
|
2058
2046
|
|
|
2059
|
-
.koin-scope .blur {
|
|
2060
|
-
--tw-blur: blur(8px);
|
|
2061
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2062
|
-
}
|
|
2063
|
-
|
|
2064
2047
|
.koin-scope .blur-lg {
|
|
2065
2048
|
--tw-blur: blur(16px);
|
|
2066
2049
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
@@ -2509,19 +2492,11 @@
|
|
|
2509
2492
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
2510
2493
|
}
|
|
2511
2494
|
|
|
2512
|
-
.koin-scope :is(.group:hover .group-hover\:opacity-100) {
|
|
2513
|
-
opacity: 1;
|
|
2514
|
-
}
|
|
2515
|
-
|
|
2516
2495
|
@media (min-width: 640px) {
|
|
2517
2496
|
.koin-scope .sm\:block {
|
|
2518
2497
|
display: block;
|
|
2519
2498
|
}
|
|
2520
2499
|
|
|
2521
|
-
.koin-scope .sm\:inline {
|
|
2522
|
-
display: inline;
|
|
2523
|
-
}
|
|
2524
|
-
|
|
2525
2500
|
.koin-scope .sm\:flex {
|
|
2526
2501
|
display: flex;
|
|
2527
2502
|
}
|
package/package.json
CHANGED