3h1-ui 3.0.0-next.73 → 3.0.0-next.74
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 +684 -243
- package/es/style.css +98 -29
- package/lib/index.js +684 -243
- package/package.json +1 -1
package/es/style.css
CHANGED
|
@@ -1013,7 +1013,7 @@ input:focus.ant-input {
|
|
|
1013
1013
|
color: var(--primary-5);
|
|
1014
1014
|
border-color: var(--primary-5);
|
|
1015
1015
|
}
|
|
1016
|
-
.ant-btn-dashed.ant-btn-dashed:hover
|
|
1016
|
+
.ant-btn-dashed.ant-btn-dashed:hover {
|
|
1017
1017
|
color: var(--gray-0);
|
|
1018
1018
|
background-color: var(--primary-5);
|
|
1019
1019
|
}
|
|
@@ -8303,30 +8303,55 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8303
8303
|
overflow: auto;
|
|
8304
8304
|
padding: 0 0;
|
|
8305
8305
|
height: 100%;
|
|
8306
|
-
}.shy-
|
|
8307
|
-
|
|
8308
|
-
height: 30px;
|
|
8309
|
-
font-size: 30px;
|
|
8310
|
-
cursor: pointer;
|
|
8311
|
-
display: flex;
|
|
8306
|
+
}.shy-ant-form-table-children {
|
|
8307
|
+
position: relative;
|
|
8312
8308
|
}
|
|
8313
|
-
.table-children
|
|
8314
|
-
|
|
8309
|
+
.shy-ant-form-table-children-scroll-bar-wrapper {
|
|
8310
|
+
position: absolute;
|
|
8311
|
+
top: 40px;
|
|
8312
|
+
right: 0;
|
|
8313
|
+
width: 20px;
|
|
8314
|
+
overflow: auto;
|
|
8315
|
+
height: var(--height);
|
|
8315
8316
|
}
|
|
8316
|
-
.table-children
|
|
8317
|
+
.shy-ant-form-table-children-scroll-bar-wrapper::-webkit-scrollbar {
|
|
8318
|
+
width: 10px;
|
|
8319
|
+
}
|
|
8320
|
+
.shy-ant-form-table-children-scroll-bar-wrapper::-webkit-scrollbar-thumb {
|
|
8321
|
+
box-shadow: inset 0 0 10px 10px var(--gray-2);
|
|
8322
|
+
border: solid 2px transparent;
|
|
8323
|
+
background-color: transparent;
|
|
8324
|
+
border-radius: 10px;
|
|
8325
|
+
}
|
|
8326
|
+
.shy-ant-form-table-children-scroll-bar-wrapper::-webkit-scrollbar-thumb:active, .shy-ant-form-table-children-scroll-bar-wrapper::-webkit-scrollbar-thumb:hover {
|
|
8327
|
+
box-shadow: inset 0 0 10px 10px var(--gray-3);
|
|
8328
|
+
background-color: transparent;
|
|
8329
|
+
}
|
|
8330
|
+
.shy-ant-form-table-children-scroll-bar-wrapper::-webkit-scrollbar-track {
|
|
8331
|
+
border-radius: 10px;
|
|
8332
|
+
border: solid 2px transparent;
|
|
8333
|
+
background: transparent;
|
|
8334
|
+
}
|
|
8335
|
+
.shy-ant-form-table-children-scroll-bar-inner {
|
|
8336
|
+
height: var(--height);
|
|
8337
|
+
}
|
|
8338
|
+
.shy-ant-form-table-children-body {
|
|
8317
8339
|
width: 100%;
|
|
8318
8340
|
}
|
|
8319
|
-
.table-children-
|
|
8341
|
+
.shy-ant-form-table-children-body .ant-form-item {
|
|
8342
|
+
margin-bottom: 0 !important;
|
|
8343
|
+
}
|
|
8344
|
+
.shy-ant-form-table-children-body-required {
|
|
8320
8345
|
color: #ff4d4f;
|
|
8321
8346
|
margin-right: 4px;
|
|
8322
8347
|
}
|
|
8323
|
-
.table-children
|
|
8348
|
+
.shy-ant-form-table-children-body .ant-table-cell {
|
|
8324
8349
|
padding: 8px !important;
|
|
8325
8350
|
}
|
|
8326
|
-
.table-children
|
|
8351
|
+
.shy-ant-form-table-children-body .ant-table-cell .ant-form-item-explain {
|
|
8327
8352
|
display: none;
|
|
8328
8353
|
}
|
|
8329
|
-
.table-children-add-btn
|
|
8354
|
+
.shy-ant-form-table-children-add-btn {
|
|
8330
8355
|
display: flex;
|
|
8331
8356
|
align-items: center;
|
|
8332
8357
|
padding-inline: 8px;
|
|
@@ -8336,8 +8361,17 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8336
8361
|
border-bottom-left-radius: 4px;
|
|
8337
8362
|
border-bottom-right-radius: 4px;
|
|
8338
8363
|
}
|
|
8339
|
-
.table-children-add-btn
|
|
8364
|
+
.shy-ant-form-table-children-add-btn .ant-btn {
|
|
8340
8365
|
width: 100%;
|
|
8366
|
+
}
|
|
8367
|
+
.shy-ant-form-table-children-footer {
|
|
8368
|
+
display: flex;
|
|
8369
|
+
justify-content: flex-end;
|
|
8370
|
+
align-items: center;
|
|
8371
|
+
width: 100%;
|
|
8372
|
+
height: fit-content;
|
|
8373
|
+
padding-block: 8px;
|
|
8374
|
+
gap: 8px;
|
|
8341
8375
|
}.shy-ant-form {
|
|
8342
8376
|
display: flex;
|
|
8343
8377
|
justify-content: space-between;
|
|
@@ -8521,6 +8555,41 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8521
8555
|
min-width: var(--min-width--large);
|
|
8522
8556
|
max-width: var(--max-width-large);
|
|
8523
8557
|
}
|
|
8558
|
+
}.shy-table-edit-icon-plus[data-v-d3bdc269] {
|
|
8559
|
+
width: 30px;
|
|
8560
|
+
height: 30px;
|
|
8561
|
+
font-size: 30px;
|
|
8562
|
+
cursor: pointer;
|
|
8563
|
+
display: flex;
|
|
8564
|
+
}
|
|
8565
|
+
.table-children[data-v-d3bdc269] .ant-form-item {
|
|
8566
|
+
margin-bottom: 0 !important;
|
|
8567
|
+
}
|
|
8568
|
+
.table-children[data-v-d3bdc269] {
|
|
8569
|
+
width: 100%;
|
|
8570
|
+
}
|
|
8571
|
+
.table-children-required[data-v-d3bdc269] {
|
|
8572
|
+
color: #ff4d4f;
|
|
8573
|
+
margin-right: 4px;
|
|
8574
|
+
}
|
|
8575
|
+
.table-children[data-v-d3bdc269] .ant-table-cell {
|
|
8576
|
+
padding: 8px !important;
|
|
8577
|
+
}
|
|
8578
|
+
.table-children[data-v-d3bdc269] .ant-table-cell .ant-form-item-explain {
|
|
8579
|
+
display: none;
|
|
8580
|
+
}
|
|
8581
|
+
.table-children-add-btn[data-v-d3bdc269] {
|
|
8582
|
+
display: flex;
|
|
8583
|
+
align-items: center;
|
|
8584
|
+
padding-inline: 8px;
|
|
8585
|
+
height: 50px;
|
|
8586
|
+
border-inline: 1px solid var(--gray-3);
|
|
8587
|
+
border-bottom: 1px solid var(--gray-3);
|
|
8588
|
+
border-bottom-left-radius: 4px;
|
|
8589
|
+
border-bottom-right-radius: 4px;
|
|
8590
|
+
}
|
|
8591
|
+
.table-children-add-btn[data-v-d3bdc269] .ant-btn {
|
|
8592
|
+
width: 100%;
|
|
8524
8593
|
}.wrapper[data-v-15e2dcbb] {
|
|
8525
8594
|
display: flex;
|
|
8526
8595
|
}
|
|
@@ -9033,7 +9102,7 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
9033
9102
|
}
|
|
9034
9103
|
.shy-container-footer-cancel-right {
|
|
9035
9104
|
flex-direction: row-reverse;
|
|
9036
|
-
}.process-wrapper[data-v-
|
|
9105
|
+
}.process-wrapper[data-v-95c7693b] {
|
|
9037
9106
|
position: relative;
|
|
9038
9107
|
display: flex;
|
|
9039
9108
|
flex-direction: column;
|
|
@@ -9049,39 +9118,39 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
9049
9118
|
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.04), 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
|
|
9050
9119
|
z-index: 100;
|
|
9051
9120
|
}
|
|
9052
|
-
.process-wrapper .process-header[data-v-
|
|
9121
|
+
.process-wrapper .process-header[data-v-95c7693b] {
|
|
9053
9122
|
font-family: PingFangSC, PingFang SC;
|
|
9054
9123
|
font-weight: 500;
|
|
9055
9124
|
color: #1b1f24;
|
|
9056
9125
|
text-align: left;
|
|
9057
9126
|
font-style: normal;
|
|
9058
9127
|
}
|
|
9059
|
-
.process-wrapper .process-body[data-v-
|
|
9128
|
+
.process-wrapper .process-body[data-v-95c7693b] {
|
|
9060
9129
|
padding-top: 4px;
|
|
9061
9130
|
padding-left: 10px;
|
|
9062
9131
|
overflow-y: auto;
|
|
9063
9132
|
}
|
|
9064
|
-
.process-wrapper .process-body[data-v-
|
|
9133
|
+
.process-wrapper .process-body[data-v-95c7693b]::-webkit-scrollbar {
|
|
9065
9134
|
position: absolute;
|
|
9066
9135
|
height: 10px;
|
|
9067
9136
|
width: 10px;
|
|
9068
9137
|
}
|
|
9069
|
-
.process-wrapper .process-body[data-v-
|
|
9138
|
+
.process-wrapper .process-body[data-v-95c7693b]::-webkit-scrollbar-thumb {
|
|
9070
9139
|
box-shadow: inset 0 0 10px 10px var(--gray-2);
|
|
9071
9140
|
border: solid 2px transparent;
|
|
9072
9141
|
background-color: transparent;
|
|
9073
9142
|
border-radius: 10px;
|
|
9074
9143
|
}
|
|
9075
|
-
.process-wrapper .process-body[data-v-
|
|
9144
|
+
.process-wrapper .process-body[data-v-95c7693b]::-webkit-scrollbar-thumb:active, .process-wrapper .process-body[data-v-95c7693b]::-webkit-scrollbar-thumb:hover {
|
|
9076
9145
|
box-shadow: inset 0 0 10px 10px var(--gray-3);
|
|
9077
9146
|
background-color: transparent;
|
|
9078
9147
|
}
|
|
9079
|
-
.process-wrapper .process-body[data-v-
|
|
9148
|
+
.process-wrapper .process-body[data-v-95c7693b]::-webkit-scrollbar-track {
|
|
9080
9149
|
border-radius: 10px;
|
|
9081
9150
|
border: solid 2px transparent;
|
|
9082
9151
|
background: transparent;
|
|
9083
9152
|
}
|
|
9084
|
-
.process-wrapper .process-body .process-item[data-v-
|
|
9153
|
+
.process-wrapper .process-body .process-item[data-v-95c7693b] {
|
|
9085
9154
|
font-family: PingFangSC, PingFang SC;
|
|
9086
9155
|
font-weight: 400;
|
|
9087
9156
|
font-size: 12px;
|
|
@@ -9091,21 +9160,21 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
9091
9160
|
font-style: normal;
|
|
9092
9161
|
padding: 2px 0;
|
|
9093
9162
|
}
|
|
9094
|
-
.process-wrapper .process-body .process-item[data-v-
|
|
9163
|
+
.process-wrapper .process-body .process-item[data-v-95c7693b]:nth-child(1) {
|
|
9095
9164
|
padding: 3px 0;
|
|
9096
9165
|
font-size: 14px;
|
|
9097
9166
|
}
|
|
9098
|
-
.process-wrapper .process-body .process-item[data-v-
|
|
9167
|
+
.process-wrapper .process-body .process-item[data-v-95c7693b]:nth-last-child(1) {
|
|
9099
9168
|
font-family: unset;
|
|
9100
9169
|
color: var(--gray-4);
|
|
9101
9170
|
}
|
|
9102
|
-
.process-wrapper .process-body .process-dot[data-v-
|
|
9171
|
+
.process-wrapper .process-body .process-dot[data-v-95c7693b] {
|
|
9103
9172
|
width: 12px;
|
|
9104
9173
|
height: 12px;
|
|
9105
9174
|
border-radius: 12px;
|
|
9106
9175
|
border: 1px solid var(--gray-3);
|
|
9107
9176
|
}
|
|
9108
|
-
.process-wrapper .process-body .process-dot[data-v-
|
|
9177
|
+
.process-wrapper .process-body .process-dot[data-v-95c7693b]::before {
|
|
9109
9178
|
content: '';
|
|
9110
9179
|
width: 6px;
|
|
9111
9180
|
height: 6px;
|
|
@@ -9116,9 +9185,9 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
9116
9185
|
left: 50%;
|
|
9117
9186
|
transform: translate(-50%, -50%);
|
|
9118
9187
|
}
|
|
9119
|
-
.process-wrapper .process-body .process-dot-first[data-v-
|
|
9188
|
+
.process-wrapper .process-body .process-dot-first[data-v-95c7693b] {
|
|
9120
9189
|
border: 1px solid var(--primary-5);
|
|
9121
9190
|
}
|
|
9122
|
-
.process-wrapper .process-body .process-dot-first[data-v-
|
|
9191
|
+
.process-wrapper .process-body .process-dot-first[data-v-95c7693b]::before {
|
|
9123
9192
|
background: var(--primary-5);
|
|
9124
9193
|
}
|