@vue-ui-kit/ant 1.7.4 → 1.8.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/README.md +430 -233
- package/README.zh.md +446 -303
- package/dist/cjs/index.js +1 -1
- package/dist/declarations/antProxy.d.ts +6 -1
- package/dist/es/index.js +2987 -2178
- package/dist/packages/components/PFormCol.vue.d.ts +31 -0
- package/dist/packages/components/PFormGroup.vue.d.ts +2 -2
- package/dist/packages/components/PGrid.vue.d.ts +3 -2
- package/dist/packages/utils/core.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -4
- package/src/declarations/antProxy.ts +6 -1
- package/src/packages/components/PForm.vue +21 -76
- package/src/packages/components/PFormCol.vue +89 -0
- package/src/packages/components/PFormGroup.vue +90 -28
- package/src/packages/components/PGrid.vue +12 -1
- package/src/packages/renders/TableInput.vue +1 -1
- package/src/packages/store/renderStore.tsx +1 -1
- package/src/packages/styles/index.scss +29 -1
- package/src/packages/utils/AFormatters.ts +1 -1
- package/src/packages/utils/core.ts +1 -1
|
@@ -204,7 +204,21 @@
|
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
|
-
|
|
207
|
+
.p-error-group-tab{
|
|
208
|
+
position:relative;
|
|
209
|
+
overflow: visible;
|
|
210
|
+
color:#f5222d!important;
|
|
211
|
+
&:after{
|
|
212
|
+
content:'🏷️';
|
|
213
|
+
position:absolute;
|
|
214
|
+
top:-1em;
|
|
215
|
+
right:0;
|
|
216
|
+
width:1em;
|
|
217
|
+
height:1em;
|
|
218
|
+
font-size:0.8em;
|
|
219
|
+
animation: heartbeat 2s infinite;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
208
222
|
//endregion
|
|
209
223
|
|
|
210
224
|
@each $align in right center {
|
|
@@ -220,3 +234,17 @@
|
|
|
220
234
|
text-align: #{$align};
|
|
221
235
|
}
|
|
222
236
|
}
|
|
237
|
+
|
|
238
|
+
@keyframes heartbeat {
|
|
239
|
+
0% { transform: scale(1); }
|
|
240
|
+
6% { transform: scale(1.22); }
|
|
241
|
+
12% { transform: scale(1); }
|
|
242
|
+
18% { transform: scale(1.18); }
|
|
243
|
+
24% { transform: scale(1); }
|
|
244
|
+
48% { transform: scale(1); } // 长停顿
|
|
245
|
+
54% { transform: scale(1.22); }
|
|
246
|
+
60% { transform: scale(1); }
|
|
247
|
+
66% { transform: scale(1.18); }
|
|
248
|
+
72% { transform: scale(1); }
|
|
249
|
+
100% { transform: scale(1); } // 长停顿
|
|
250
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ColumnProps, Responsive } from '#/antProxy';
|
|
2
2
|
import { TableColumnGroupType, TableColumnType } from 'ant-design-vue';
|
|
3
|
-
import { isArray, isNumber, omit, zipObject } from '
|
|
3
|
+
import { isArray, isNumber, omit, zipObject } from 'xe-utils';
|
|
4
4
|
import { valued } from '@/utils/is';
|
|
5
5
|
|
|
6
6
|
export const cleanCol = (col: ColumnProps): TableColumnType | TableColumnGroupType<Recordable> => {
|