@rakun-kit/manager-react 1.4.3 → 1.4.5
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/cjs/router/dashboard/[contentType]/[edit]/_fields/DynamicDataControl.js +216 -30
- package/dist/cjs/router/dashboard/[contentType]/[edit]/_fields/DynamicDataControl.js.map +1 -1
- package/dist/esm/router/dashboard/[contentType]/[edit]/_fields/DynamicDataControl.d.ts +5 -0
- package/dist/esm/router/dashboard/[contentType]/[edit]/_fields/DynamicDataControl.d.ts.map +1 -1
- package/dist/esm/router/dashboard/[contentType]/[edit]/_fields/DynamicDataControl.js +216 -31
- package/dist/esm/router/dashboard/[contentType]/[edit]/_fields/DynamicDataControl.js.map +1 -1
- package/dist/styles.css +44 -5
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -1119,6 +1119,9 @@
|
|
|
1119
1119
|
.max-w-32 {
|
|
1120
1120
|
max-width: calc(var(--spacing) * 32);
|
|
1121
1121
|
}
|
|
1122
|
+
.max-w-40 {
|
|
1123
|
+
max-width: calc(var(--spacing) * 40);
|
|
1124
|
+
}
|
|
1122
1125
|
.max-w-80 {
|
|
1123
1126
|
max-width: calc(var(--spacing) * 80);
|
|
1124
1127
|
}
|
|
@@ -1454,6 +1457,9 @@
|
|
|
1454
1457
|
.grid-cols-\[minmax\(0\,1fr\)_auto\] {
|
|
1455
1458
|
grid-template-columns: minmax(0,1fr) auto;
|
|
1456
1459
|
}
|
|
1460
|
+
.grid-cols-\[minmax\(6rem\,0\.45fr\)_auto_minmax\(0\,1fr\)_auto\] {
|
|
1461
|
+
grid-template-columns: minmax(6rem,0.45fr) auto minmax(0,1fr) auto;
|
|
1462
|
+
}
|
|
1457
1463
|
.grid-rows-\[auto_auto\] {
|
|
1458
1464
|
grid-template-rows: auto auto;
|
|
1459
1465
|
}
|
|
@@ -1478,6 +1484,9 @@
|
|
|
1478
1484
|
.place-items-center {
|
|
1479
1485
|
place-items: center;
|
|
1480
1486
|
}
|
|
1487
|
+
.content-start {
|
|
1488
|
+
align-content: flex-start;
|
|
1489
|
+
}
|
|
1481
1490
|
.items-center {
|
|
1482
1491
|
align-items: center;
|
|
1483
1492
|
}
|
|
@@ -3352,6 +3361,11 @@
|
|
|
3352
3361
|
border-inline-start-width: 1px;
|
|
3353
3362
|
}
|
|
3354
3363
|
}
|
|
3364
|
+
.group-data-\[state\=open\]\:rotate-90 {
|
|
3365
|
+
&:is(:where(.group)[data-state="open"] *) {
|
|
3366
|
+
rotate: 90deg;
|
|
3367
|
+
}
|
|
3368
|
+
}
|
|
3355
3369
|
.group-data-\[state\=open\]\/collapsible\:rotate-90 {
|
|
3356
3370
|
&:is(:where(.group\/collapsible)[data-state="open"] *) {
|
|
3357
3371
|
rotate: 90deg;
|
|
@@ -3920,6 +3934,16 @@
|
|
|
3920
3934
|
}
|
|
3921
3935
|
}
|
|
3922
3936
|
}
|
|
3937
|
+
.hover\:border-foreground\/20 {
|
|
3938
|
+
&:hover {
|
|
3939
|
+
@media (hover: hover) {
|
|
3940
|
+
border-color: var(--foreground);
|
|
3941
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3942
|
+
border-color: color-mix(in oklab, var(--foreground) 20%, transparent);
|
|
3943
|
+
}
|
|
3944
|
+
}
|
|
3945
|
+
}
|
|
3946
|
+
}
|
|
3923
3947
|
.hover\:border-primary\/50 {
|
|
3924
3948
|
&:hover {
|
|
3925
3949
|
@media (hover: hover) {
|
|
@@ -4441,6 +4465,11 @@
|
|
|
4441
4465
|
outline-style: none;
|
|
4442
4466
|
}
|
|
4443
4467
|
}
|
|
4468
|
+
.focus-visible\:ring-inset {
|
|
4469
|
+
&:focus-visible {
|
|
4470
|
+
--tw-ring-inset: inset;
|
|
4471
|
+
}
|
|
4472
|
+
}
|
|
4444
4473
|
.active\:bg-sidebar-accent {
|
|
4445
4474
|
&:active {
|
|
4446
4475
|
background-color: var(--sidebar-accent);
|
|
@@ -5809,6 +5838,11 @@
|
|
|
5809
5838
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
5810
5839
|
}
|
|
5811
5840
|
}
|
|
5841
|
+
.sm\:grid-cols-\[0\.7fr_1fr_0\.7fr\] {
|
|
5842
|
+
@media (width >= 40rem) {
|
|
5843
|
+
grid-template-columns: 0.7fr 1fr 0.7fr;
|
|
5844
|
+
}
|
|
5845
|
+
}
|
|
5812
5846
|
.sm\:grid-cols-\[1fr_0\.9fr_1fr\] {
|
|
5813
5847
|
@media (width >= 40rem) {
|
|
5814
5848
|
grid-template-columns: 1fr 0.9fr 1fr;
|
|
@@ -5933,6 +5967,11 @@
|
|
|
5933
5967
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
5934
5968
|
}
|
|
5935
5969
|
}
|
|
5970
|
+
.md\:grid-cols-\[0\.7fr_1\.3fr\] {
|
|
5971
|
+
@media (width >= 48rem) {
|
|
5972
|
+
grid-template-columns: 0.7fr 1.3fr;
|
|
5973
|
+
}
|
|
5974
|
+
}
|
|
5936
5975
|
.md\:grid-cols-\[0\.7fr_1fr_1\.1fr\] {
|
|
5937
5976
|
@media (width >= 48rem) {
|
|
5938
5977
|
grid-template-columns: 0.7fr 1fr 1.1fr;
|
|
@@ -5983,11 +6022,6 @@
|
|
|
5983
6022
|
grid-template-columns: minmax(0,1fr) 11rem;
|
|
5984
6023
|
}
|
|
5985
6024
|
}
|
|
5986
|
-
.md\:grid-cols-\[minmax\(8rem\,0\.7fr\)_auto_minmax\(12rem\,1\.3fr\)\] {
|
|
5987
|
-
@media (width >= 48rem) {
|
|
5988
|
-
grid-template-columns: minmax(8rem,0.7fr) auto minmax(12rem,1.3fr);
|
|
5989
|
-
}
|
|
5990
|
-
}
|
|
5991
6025
|
.md\:flex-row {
|
|
5992
6026
|
@media (width >= 48rem) {
|
|
5993
6027
|
flex-direction: row;
|
|
@@ -6116,6 +6150,11 @@
|
|
|
6116
6150
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
6117
6151
|
}
|
|
6118
6152
|
}
|
|
6153
|
+
.lg\:grid-cols-4 {
|
|
6154
|
+
@media (width >= 64rem) {
|
|
6155
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
6156
|
+
}
|
|
6157
|
+
}
|
|
6119
6158
|
.lg\:grid-cols-6 {
|
|
6120
6159
|
@media (width >= 64rem) {
|
|
6121
6160
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|