@next-bricks/form 1.15.10 → 1.15.11

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.
@@ -249,66 +249,6 @@
249
249
  "description": "通用下拉选择构件",
250
250
  "category": "form-input-basic"
251
251
  },
252
- {
253
- "name": "eo-submit-buttons",
254
- "alias": [
255
- "form.submit-buttons"
256
- ],
257
- "properties": [
258
- {
259
- "name": "submitText",
260
- "description": "提交按钮的文字",
261
- "default": "\"提交\"",
262
- "type": "string"
263
- },
264
- {
265
- "name": "cancelText",
266
- "description": "取消按钮的文字,不设置则不显示取消按钮",
267
- "type": "string"
268
- },
269
- {
270
- "name": "disableAfterClick",
271
- "description": "点击确定按钮后自动禁用",
272
- "type": "boolean"
273
- },
274
- {
275
- "name": "submitDisabled",
276
- "description": "禁用提交按钮",
277
- "type": "boolean"
278
- },
279
- {
280
- "name": "submitType",
281
- "description": "提交按钮类型",
282
- "type": "ButtonType"
283
- },
284
- {
285
- "name": "cancelType",
286
- "description": "取消按钮类型",
287
- "type": "ButtonType"
288
- }
289
- ],
290
- "events": [
291
- {
292
- "name": "submit",
293
- "description": "点击提交按钮触发的事件",
294
- "detail": {
295
- "type": "void"
296
- }
297
- },
298
- {
299
- "name": "cancel",
300
- "description": "点击取消按钮触发的事件",
301
- "detail": {
302
- "type": "void"
303
- }
304
- }
305
- ],
306
- "slots": [],
307
- "methods": [],
308
- "parts": [],
309
- "description": "表单提交按钮",
310
- "category": "form-input-basic"
311
- },
312
252
  {
313
253
  "name": "eo-checkbox",
314
254
  "alias": [
@@ -401,6 +341,66 @@
401
341
  "description": "表单复选框构件",
402
342
  "category": "form-input-basic"
403
343
  },
344
+ {
345
+ "name": "eo-submit-buttons",
346
+ "alias": [
347
+ "form.submit-buttons"
348
+ ],
349
+ "properties": [
350
+ {
351
+ "name": "submitText",
352
+ "description": "提交按钮的文字",
353
+ "default": "\"提交\"",
354
+ "type": "string"
355
+ },
356
+ {
357
+ "name": "cancelText",
358
+ "description": "取消按钮的文字,不设置则不显示取消按钮",
359
+ "type": "string"
360
+ },
361
+ {
362
+ "name": "disableAfterClick",
363
+ "description": "点击确定按钮后自动禁用",
364
+ "type": "boolean"
365
+ },
366
+ {
367
+ "name": "submitDisabled",
368
+ "description": "禁用提交按钮",
369
+ "type": "boolean"
370
+ },
371
+ {
372
+ "name": "submitType",
373
+ "description": "提交按钮类型",
374
+ "type": "ButtonType"
375
+ },
376
+ {
377
+ "name": "cancelType",
378
+ "description": "取消按钮类型",
379
+ "type": "ButtonType"
380
+ }
381
+ ],
382
+ "events": [
383
+ {
384
+ "name": "submit",
385
+ "description": "点击提交按钮触发的事件",
386
+ "detail": {
387
+ "type": "void"
388
+ }
389
+ },
390
+ {
391
+ "name": "cancel",
392
+ "description": "点击取消按钮触发的事件",
393
+ "detail": {
394
+ "type": "void"
395
+ }
396
+ }
397
+ ],
398
+ "slots": [],
399
+ "methods": [],
400
+ "parts": [],
401
+ "description": "表单提交按钮",
402
+ "category": "form-input-basic"
403
+ },
404
404
  {
405
405
  "name": "eo-dynamic-form-item",
406
406
  "alias": [
@@ -1103,104 +1103,6 @@
1103
1103
  "description": "带候选项的输入框",
1104
1104
  "category": "form-input-basic"
1105
1105
  },
1106
- {
1107
- "name": "eo-textarea",
1108
- "alias": [
1109
- "form.general-textarea"
1110
- ],
1111
- "properties": [
1112
- {
1113
- "name": "name",
1114
- "description": "字段名称",
1115
- "type": "string"
1116
- },
1117
- {
1118
- "name": "label",
1119
- "description": "标签文字",
1120
- "type": "string"
1121
- },
1122
- {
1123
- "name": "value",
1124
- "description": "值",
1125
- "type": "string"
1126
- },
1127
- {
1128
- "name": "placeholder",
1129
- "description": "占位说明",
1130
- "type": "string"
1131
- },
1132
- {
1133
- "name": "disabled",
1134
- "description": "是否禁用",
1135
- "type": "boolean"
1136
- },
1137
- {
1138
- "name": "minLength",
1139
- "description": "最小长度",
1140
- "type": "number"
1141
- },
1142
- {
1143
- "name": "maxLength",
1144
- "description": "最大长度",
1145
- "type": "number"
1146
- },
1147
- {
1148
- "name": "autoSize",
1149
- "description": "大小自适应",
1150
- "attribute": false,
1151
- "type": "AutoSize"
1152
- },
1153
- {
1154
- "name": "required",
1155
- "description": "是否必填",
1156
- "type": "boolean"
1157
- },
1158
- {
1159
- "name": "max",
1160
- "description": "表单校验最大长度",
1161
- "type": "number"
1162
- },
1163
- {
1164
- "name": "min",
1165
- "description": "表单校验最小长度",
1166
- "type": "number"
1167
- },
1168
- {
1169
- "name": "message",
1170
- "description": "校验信息",
1171
- "attribute": false,
1172
- "type": "Record<string, string>"
1173
- },
1174
- {
1175
- "name": "textareaStyle",
1176
- "description": "自定义样式",
1177
- "attribute": false,
1178
- "type": "React.CSSProperties"
1179
- }
1180
- ],
1181
- "events": [
1182
- {
1183
- "name": "change",
1184
- "description": "",
1185
- "detail": {
1186
- "description": null,
1187
- "type": "string"
1188
- }
1189
- }
1190
- ],
1191
- "slots": [],
1192
- "methods": [
1193
- {
1194
- "name": "focusTextarea",
1195
- "params": [],
1196
- "description": "focus",
1197
- "returns": {}
1198
- }
1199
- ],
1200
- "parts": [],
1201
- "description": "通用多行文本输入框构件",
1202
- "category": "form-input-basic"
1203
- },
1204
1106
  {
1205
1107
  "name": "eo-time-picker",
1206
1108
  "properties": [
@@ -1376,6 +1278,104 @@
1376
1278
  "description": "日期选择器",
1377
1279
  "category": "form-input-basic"
1378
1280
  },
1281
+ {
1282
+ "name": "eo-textarea",
1283
+ "alias": [
1284
+ "form.general-textarea"
1285
+ ],
1286
+ "properties": [
1287
+ {
1288
+ "name": "name",
1289
+ "description": "字段名称",
1290
+ "type": "string"
1291
+ },
1292
+ {
1293
+ "name": "label",
1294
+ "description": "标签文字",
1295
+ "type": "string"
1296
+ },
1297
+ {
1298
+ "name": "value",
1299
+ "description": "值",
1300
+ "type": "string"
1301
+ },
1302
+ {
1303
+ "name": "placeholder",
1304
+ "description": "占位说明",
1305
+ "type": "string"
1306
+ },
1307
+ {
1308
+ "name": "disabled",
1309
+ "description": "是否禁用",
1310
+ "type": "boolean"
1311
+ },
1312
+ {
1313
+ "name": "minLength",
1314
+ "description": "最小长度",
1315
+ "type": "number"
1316
+ },
1317
+ {
1318
+ "name": "maxLength",
1319
+ "description": "最大长度",
1320
+ "type": "number"
1321
+ },
1322
+ {
1323
+ "name": "autoSize",
1324
+ "description": "大小自适应",
1325
+ "attribute": false,
1326
+ "type": "AutoSize"
1327
+ },
1328
+ {
1329
+ "name": "required",
1330
+ "description": "是否必填",
1331
+ "type": "boolean"
1332
+ },
1333
+ {
1334
+ "name": "max",
1335
+ "description": "表单校验最大长度",
1336
+ "type": "number"
1337
+ },
1338
+ {
1339
+ "name": "min",
1340
+ "description": "表单校验最小长度",
1341
+ "type": "number"
1342
+ },
1343
+ {
1344
+ "name": "message",
1345
+ "description": "校验信息",
1346
+ "attribute": false,
1347
+ "type": "Record<string, string>"
1348
+ },
1349
+ {
1350
+ "name": "textareaStyle",
1351
+ "description": "自定义样式",
1352
+ "attribute": false,
1353
+ "type": "React.CSSProperties"
1354
+ }
1355
+ ],
1356
+ "events": [
1357
+ {
1358
+ "name": "change",
1359
+ "description": "",
1360
+ "detail": {
1361
+ "description": null,
1362
+ "type": "string"
1363
+ }
1364
+ }
1365
+ ],
1366
+ "slots": [],
1367
+ "methods": [
1368
+ {
1369
+ "name": "focusTextarea",
1370
+ "params": [],
1371
+ "description": "focus",
1372
+ "returns": {}
1373
+ }
1374
+ ],
1375
+ "parts": [],
1376
+ "description": "通用多行文本输入框构件",
1377
+ "category": "form-input-basic"
1378
+ },
1379
1379
  {
1380
1380
  "name": "eo-time-range-picker",
1381
1381
  "properties": [