@keadex/mina-react 2.8.0 → 2.10.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/main.css CHANGED
@@ -939,6 +939,8 @@ video {
939
939
  bottom: 0px;
940
940
  }.bottom-0\.5 {
941
941
  bottom: 0.125rem;
942
+ }.bottom-1 {
943
+ bottom: 0.25rem;
942
944
  }.bottom-1\/2 {
943
945
  bottom: 50%;
944
946
  }.bottom-5 {
@@ -965,6 +967,8 @@ video {
965
967
  right: 0.25rem;
966
968
  }.right-1\.5 {
967
969
  right: 0.375rem;
970
+ }.right-2 {
971
+ right: 0.5rem;
968
972
  }.right-3 {
969
973
  right: 0.75rem;
970
974
  }.right-5 {
@@ -979,8 +983,14 @@ video {
979
983
  top: 0.25rem;
980
984
  }.top-1\/2 {
981
985
  top: 50%;
986
+ }.top-10 {
987
+ top: 2.5rem;
988
+ }.top-14 {
989
+ top: 3.5rem;
982
990
  }.top-2 {
983
991
  top: 0.5rem;
992
+ }.top-20 {
993
+ top: 5rem;
984
994
  }.top-3 {
985
995
  top: 0.75rem;
986
996
  }.top-8 {
@@ -1051,6 +1061,8 @@ video {
1051
1061
  margin: 0px;
1052
1062
  }.m-1 {
1053
1063
  margin: 0.25rem;
1064
+ }.m-auto {
1065
+ margin: auto;
1054
1066
  }.\!my-0 {
1055
1067
  margin-top: 0px !important;
1056
1068
  margin-bottom: 0px !important;
@@ -1098,8 +1110,12 @@ video {
1098
1110
  margin-bottom: auto;
1099
1111
  }.\!mb-0 {
1100
1112
  margin-bottom: 0px !important;
1113
+ }.\!mb-2 {
1114
+ margin-bottom: 0.5rem !important;
1101
1115
  }.\!mr-3 {
1102
1116
  margin-right: 0.75rem !important;
1117
+ }.\!mt-3 {
1118
+ margin-top: 0.75rem !important;
1103
1119
  }.\!mt-4 {
1104
1120
  margin-top: 1rem !important;
1105
1121
  }.-ml-\[1\.5rem\] {
@@ -1186,8 +1202,8 @@ video {
1186
1202
  margin-top: 0.5rem;
1187
1203
  }.mt-2\.5 {
1188
1204
  margin-top: 0.625rem;
1189
- }.mt-20 {
1190
- margin-top: 5rem;
1205
+ }.mt-28 {
1206
+ margin-top: 7rem;
1191
1207
  }.mt-3 {
1192
1208
  margin-top: 0.75rem;
1193
1209
  }.mt-4 {
@@ -1372,10 +1388,14 @@ video {
1372
1388
  width: 6rem;
1373
1389
  }.w-3 {
1374
1390
  width: 0.75rem;
1391
+ }.w-32 {
1392
+ width: 8rem;
1375
1393
  }.w-36 {
1376
1394
  width: 9rem;
1377
1395
  }.w-4 {
1378
1396
  width: 1rem;
1397
+ }.w-40 {
1398
+ width: 10rem;
1379
1399
  }.w-48 {
1380
1400
  width: 12rem;
1381
1401
  }.w-5 {
@@ -1460,6 +1480,8 @@ video {
1460
1480
  width: 1px;
1461
1481
  }.w-screen {
1462
1482
  width: 100vw;
1483
+ }.\!min-w-0 {
1484
+ min-width: 0px !important;
1463
1485
  }.min-w-0 {
1464
1486
  min-width: 0px;
1465
1487
  }.min-w-\[100px\] {
@@ -1663,6 +1685,15 @@ video {
1663
1685
  }
1664
1686
  }.animate-\[spinner-grow_0\.75s_linear_infinite\] {
1665
1687
  animation: spinner-grow 0.75s linear infinite;
1688
+ }@keyframes bounce {0%, 100% {
1689
+ transform: translateY(-25%);
1690
+ animation-timing-function: cubic-bezier(0.8,0,1,1);
1691
+ }50% {
1692
+ transform: none;
1693
+ animation-timing-function: cubic-bezier(0,0,0.2,1);
1694
+ }
1695
+ }.animate-bounce {
1696
+ animation: bounce 1s infinite;
1666
1697
  }@keyframes spin {to {
1667
1698
  transform: rotate(360deg);
1668
1699
  }
@@ -1835,6 +1866,14 @@ video {
1835
1866
  }.rounded-t-md {
1836
1867
  border-top-left-radius: 0.375rem;
1837
1868
  border-top-right-radius: 0.375rem;
1869
+ }.rounded-ee-none {
1870
+ border-end-end-radius: 0px;
1871
+ }.rounded-es-none {
1872
+ border-end-start-radius: 0px;
1873
+ }.rounded-se-none {
1874
+ border-start-end-radius: 0px;
1875
+ }.rounded-ss-none {
1876
+ border-start-start-radius: 0px;
1838
1877
  }.\!border-0 {
1839
1878
  border-width: 0px !important;
1840
1879
  }.\!border-\[3px\] {
@@ -1862,6 +1901,8 @@ video {
1862
1901
  border-bottom-width: 0px;
1863
1902
  }.border-b-2 {
1864
1903
  border-bottom-width: 2px;
1904
+ }.border-b-\[0\.5px\] {
1905
+ border-bottom-width: 0.5px;
1865
1906
  }.border-l-0 {
1866
1907
  border-left-width: 0px;
1867
1908
  }.border-l-2 {
@@ -1926,6 +1967,9 @@ video {
1926
1967
  }.border-white {
1927
1968
  --tw-border-opacity: 1;
1928
1969
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
1970
+ }.border-b-secondary {
1971
+ --tw-border-opacity: 1;
1972
+ border-bottom-color: rgb(64 64 64 / var(--tw-border-opacity));
1929
1973
  }.border-r-transparent {
1930
1974
  border-right-color: transparent;
1931
1975
  }.border-t-transparent {
@@ -1935,9 +1979,15 @@ video {
1935
1979
  }.\!bg-\[\#858585\] {
1936
1980
  --tw-bg-opacity: 1 !important;
1937
1981
  background-color: rgb(133 133 133 / var(--tw-bg-opacity)) !important;
1982
+ }.\!bg-black {
1983
+ --tw-bg-opacity: 1 !important;
1984
+ background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
1938
1985
  }.\!bg-danger-100 {
1939
1986
  --tw-bg-opacity: 1 !important;
1940
1987
  background-color: rgb(250 229 233 / var(--tw-bg-opacity)) !important;
1988
+ }.\!bg-green-700 {
1989
+ --tw-bg-opacity: 1 !important;
1990
+ background-color: rgb(21 128 61 / var(--tw-bg-opacity)) !important;
1941
1991
  }.\!bg-neutral-100 {
1942
1992
  --tw-bg-opacity: 1 !important;
1943
1993
  background-color: rgb(245 245 245 / var(--tw-bg-opacity)) !important;
@@ -1976,6 +2026,12 @@ video {
1976
2026
  }.bg-brand1 {
1977
2027
  --tw-bg-opacity: 1;
1978
2028
  background-color: rgb(56 103 177 / var(--tw-bg-opacity));
2029
+ }.bg-brand2 {
2030
+ --tw-bg-opacity: 1;
2031
+ background-color: rgb(175 183 195 / var(--tw-bg-opacity));
2032
+ }.bg-brand3 {
2033
+ --tw-bg-opacity: 1;
2034
+ background-color: rgb(214 226 244 / var(--tw-bg-opacity));
1979
2035
  }.bg-current {
1980
2036
  background-color: currentColor;
1981
2037
  }.bg-dark-brand1 {
@@ -2071,6 +2127,9 @@ video {
2071
2127
  padding: 5px;
2072
2128
  }.p-\[auto\] {
2073
2129
  padding: auto;
2130
+ }.\!px-0 {
2131
+ padding-left: 0px !important;
2132
+ padding-right: 0px !important;
2074
2133
  }.\!py-0 {
2075
2134
  padding-top: 0px !important;
2076
2135
  padding-bottom: 0px !important;
@@ -2175,6 +2234,8 @@ video {
2175
2234
  padding-bottom: 5px;
2176
2235
  }.pb-0 {
2177
2236
  padding-bottom: 0px;
2237
+ }.pb-1 {
2238
+ padding-bottom: 0.25rem;
2178
2239
  }.pb-3 {
2179
2240
  padding-bottom: 0.75rem;
2180
2241
  }.pb-3\.5 {
@@ -2237,18 +2298,28 @@ video {
2237
2298
  text-align: center;
2238
2299
  }.text-right {
2239
2300
  text-align: right;
2301
+ }.align-top {
2302
+ vertical-align: top;
2240
2303
  }.align-middle {
2241
2304
  vertical-align: middle;
2242
2305
  }.align-bottom {
2243
2306
  vertical-align: bottom;
2244
2307
  }.align-\[-0\.125em\] {
2245
2308
  vertical-align: -0.125em;
2309
+ }.font-mono {
2310
+ font-family: ui-monospace, monospace;
2311
+ }.\!text-lg {
2312
+ font-size: 1.125rem !important;
2313
+ line-height: 1.75rem !important;
2246
2314
  }.\!text-xl {
2247
2315
  font-size: 1.25rem !important;
2248
2316
  line-height: 1.75rem !important;
2249
2317
  }.text-2xl {
2250
2318
  font-size: 1.5rem;
2251
2319
  line-height: 2rem;
2320
+ }.text-3xl {
2321
+ font-size: 1.875rem;
2322
+ line-height: 2.25rem;
2252
2323
  }.text-4xl {
2253
2324
  font-size: 2.25rem;
2254
2325
  line-height: 2.5rem;
@@ -2645,6 +2716,10 @@ video {
2645
2716
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
2646
2717
  }.\!\[clip\:rect\(0\2c 0\2c 0\2c 0\)\] {
2647
2718
  clip: rect(0,0,0,0) !important;
2719
+ }.\[animation-delay\:-0\.15s\] {
2720
+ animation-delay: -0.15s;
2721
+ }.\[animation-delay\:-0\.3s\] {
2722
+ animation-delay: -0.3s;
2648
2723
  }.\[direction\:ltr\] {
2649
2724
  direction: ltr;
2650
2725
  }.\[overflow-anchor\:none\] {
@@ -2740,6 +2815,8 @@ video {
2740
2815
  border-bottom-right-radius: 0.25rem;
2741
2816
  }.last\:rounded-tr:last-child {
2742
2817
  border-top-right-radius: 0.25rem;
2818
+ }.last\:border-b-0:last-child {
2819
+ border-bottom-width: 0px;
2743
2820
  }.checked\:\!border-\[\#14a44d\]:checked {
2744
2821
  --tw-border-opacity: 1 !important;
2745
2822
  border-color: rgb(20 164 77 / var(--tw-border-opacity)) !important;
@@ -2868,6 +2945,9 @@ video {
2868
2945
  }.hover\:\!bg-\[\#eee\]:hover {
2869
2946
  --tw-bg-opacity: 1 !important;
2870
2947
  background-color: rgb(238 238 238 / var(--tw-bg-opacity)) !important;
2948
+ }.hover\:\!bg-dark-primary:hover {
2949
+ --tw-bg-opacity: 1 !important;
2950
+ background-color: rgb(24 24 24 / var(--tw-bg-opacity)) !important;
2871
2951
  }.hover\:\!bg-red-600:hover {
2872
2952
  --tw-bg-opacity: 1 !important;
2873
2953
  background-color: rgb(220 38 38 / var(--tw-bg-opacity)) !important;
@@ -3159,6 +3239,9 @@ video {
3159
3239
  color: rgb(203 213 225 / var(--tw-text-opacity));
3160
3240
  }.disabled\:opacity-50:disabled {
3161
3241
  opacity: 0.5;
3242
+ }.disabled\:hover\:\!bg-black:hover:disabled {
3243
+ --tw-bg-opacity: 1 !important;
3244
+ background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
3162
3245
  }.disabled\:hover\:bg-transparent:hover:disabled {
3163
3246
  background-color: transparent;
3164
3247
  }.disabled\:hover\:text-accent-secondary:hover:disabled {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "React library to render C4 Model diagrams created with Keadex Mina.",
4
4
  "author": "Keadex <keadex.it@gmail.com>",
5
5
  "license": "MIT",
6
- "version": "2.8.0",
6
+ "version": "2.10.0",
7
7
  "private": false,
8
8
  "homepage": "https://keadex.dev",
9
9
  "repository": {
Binary file
Binary file