koin.js 1.0.4 → 1.0.6
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +109 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +109 -2
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +13 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1142,6 +1142,10 @@
|
|
|
1142
1142
|
border-color: rgb(239 68 68 / 0.3);
|
|
1143
1143
|
}
|
|
1144
1144
|
|
|
1145
|
+
.koin-scope .border-red-500\/50 {
|
|
1146
|
+
border-color: rgb(239 68 68 / 0.5);
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1145
1149
|
.koin-scope .border-white {
|
|
1146
1150
|
--tw-border-opacity: 1;
|
|
1147
1151
|
border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
|
|
@@ -1308,6 +1312,10 @@
|
|
|
1308
1312
|
background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
|
|
1309
1313
|
}
|
|
1310
1314
|
|
|
1315
|
+
.koin-scope .bg-red-900\/80 {
|
|
1316
|
+
background-color: rgb(127 29 29 / 0.8);
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1311
1319
|
.koin-scope .bg-transparent {
|
|
1312
1320
|
background-color: transparent;
|
|
1313
1321
|
}
|
|
@@ -1760,6 +1768,11 @@
|
|
|
1760
1768
|
color: rgb(192 132 252 / var(--tw-text-opacity, 1));
|
|
1761
1769
|
}
|
|
1762
1770
|
|
|
1771
|
+
.koin-scope .text-red-200 {
|
|
1772
|
+
--tw-text-opacity: 1;
|
|
1773
|
+
color: rgb(254 202 202 / var(--tw-text-opacity, 1));
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1763
1776
|
.koin-scope .text-red-300 {
|
|
1764
1777
|
--tw-text-opacity: 1;
|
|
1765
1778
|
color: rgb(252 165 165 / var(--tw-text-opacity, 1));
|
package/package.json
CHANGED