3h1-ui 3.0.0-next.97 → 3.0.0-next.99
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/es/index.js +741 -944
- package/es/style.css +15 -48
- package/lib/index.js +735 -938
- package/package.json +3 -3
package/es/style.css
CHANGED
|
@@ -359,12 +359,6 @@ ul {
|
|
|
359
359
|
-webkit-align-items: center;
|
|
360
360
|
align-items: center;
|
|
361
361
|
}
|
|
362
|
-
.justify-end {
|
|
363
|
-
-webkit-box-pack: end;
|
|
364
|
-
-ms-flex-pack: end;
|
|
365
|
-
-webkit-justify-content: flex-end;
|
|
366
|
-
justify-content: flex-end;
|
|
367
|
-
}
|
|
368
362
|
.justify-center {
|
|
369
363
|
-webkit-box-pack: center;
|
|
370
364
|
-ms-flex-pack: center;
|
|
@@ -383,9 +377,6 @@ ul {
|
|
|
383
377
|
.\!h-full {
|
|
384
378
|
height: 100% !important;
|
|
385
379
|
}
|
|
386
|
-
.h-\[fit-content\] {
|
|
387
|
-
height: fit-content;
|
|
388
|
-
}
|
|
389
380
|
.\.w-100 {
|
|
390
381
|
height: 25rem;
|
|
391
382
|
}
|
|
@@ -454,10 +445,6 @@ ul {
|
|
|
454
445
|
padding-top: 0.5rem;
|
|
455
446
|
padding-bottom: 0.5rem;
|
|
456
447
|
}
|
|
457
|
-
.py-8px {
|
|
458
|
-
padding-top: 8px;
|
|
459
|
-
padding-bottom: 8px;
|
|
460
|
-
}
|
|
461
448
|
.fixed {
|
|
462
449
|
position: fixed;
|
|
463
450
|
}
|
|
@@ -8301,6 +8288,21 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8301
8288
|
justify-content: space-between;
|
|
8302
8289
|
padding: 1px;
|
|
8303
8290
|
}
|
|
8291
|
+
.shy-ant-form-collapse {
|
|
8292
|
+
flex: var(--col-span);
|
|
8293
|
+
width: var(--col-span);
|
|
8294
|
+
max-width: var(--col-span);
|
|
8295
|
+
background: transparent;
|
|
8296
|
+
}
|
|
8297
|
+
.shy-ant-form-collapse .ant-collapse-header.ant-collapse-header {
|
|
8298
|
+
align-items: center;
|
|
8299
|
+
background: var(--gray-1);
|
|
8300
|
+
padding: 0 8px;
|
|
8301
|
+
border-radius: 4px !important;
|
|
8302
|
+
}
|
|
8303
|
+
.shy-ant-form-collapse .ant-collapse-content-box.ant-collapse-content-box {
|
|
8304
|
+
padding: 8px 0;
|
|
8305
|
+
}
|
|
8304
8306
|
.shy-ant-form :is(.ant-input-number) {
|
|
8305
8307
|
width: 100%;
|
|
8306
8308
|
}
|
|
@@ -8479,41 +8481,6 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8479
8481
|
min-width: var(--min-width--large);
|
|
8480
8482
|
max-width: var(--max-width-large);
|
|
8481
8483
|
}
|
|
8482
|
-
}.shy-table-edit-icon-plus[data-v-5f20f43f] {
|
|
8483
|
-
width: 30px;
|
|
8484
|
-
height: 30px;
|
|
8485
|
-
font-size: 30px;
|
|
8486
|
-
cursor: pointer;
|
|
8487
|
-
display: flex;
|
|
8488
|
-
}
|
|
8489
|
-
.table-children[data-v-5f20f43f] .ant-form-item {
|
|
8490
|
-
margin-bottom: 0 !important;
|
|
8491
|
-
}
|
|
8492
|
-
.table-children[data-v-5f20f43f] {
|
|
8493
|
-
width: 100%;
|
|
8494
|
-
}
|
|
8495
|
-
.table-children-required[data-v-5f20f43f] {
|
|
8496
|
-
color: #ff4d4f;
|
|
8497
|
-
margin-right: 4px;
|
|
8498
|
-
}
|
|
8499
|
-
.table-children[data-v-5f20f43f] .ant-table-cell {
|
|
8500
|
-
padding: 8px !important;
|
|
8501
|
-
}
|
|
8502
|
-
.table-children[data-v-5f20f43f] .ant-table-cell .ant-form-item-explain {
|
|
8503
|
-
display: none;
|
|
8504
|
-
}
|
|
8505
|
-
.table-children-add-btn[data-v-5f20f43f] {
|
|
8506
|
-
display: flex;
|
|
8507
|
-
align-items: center;
|
|
8508
|
-
padding-inline: 8px;
|
|
8509
|
-
height: 50px;
|
|
8510
|
-
border-inline: 1px solid var(--gray-2);
|
|
8511
|
-
border-bottom: 1px solid var(--gray-2);
|
|
8512
|
-
border-bottom-left-radius: 4px;
|
|
8513
|
-
border-bottom-right-radius: 4px;
|
|
8514
|
-
}
|
|
8515
|
-
.table-children-add-btn[data-v-5f20f43f] .ant-btn {
|
|
8516
|
-
width: 100%;
|
|
8517
8484
|
}.wrapper[data-v-15e2dcbb] {
|
|
8518
8485
|
display: flex;
|
|
8519
8486
|
}
|