@next-bricks/form 0.19.8 → 0.19.9
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/bricks.json +3 -3
- package/dist/chunks/{5789.041157a8.js → 5789.d59ac23c.js} +3 -3
- package/dist/chunks/{5789.041157a8.js.map → 5789.d59ac23c.js.map} +1 -1
- package/dist/chunks/{main.c2fe0d2b.js → main.a6538e13.js} +2 -2
- package/dist/chunks/{main.c2fe0d2b.js.map → main.a6538e13.js.map} +1 -1
- package/dist/examples.json +3 -3
- package/dist/{index.054cb467.js → index.9ca557c0.js} +2 -2
- package/dist/{index.054cb467.js.map → index.9ca557c0.js.map} +1 -1
- package/dist/manifest.json +90 -90
- package/package.json +2 -2
- /package/dist/chunks/{5789.041157a8.js.LICENSE.txt → 5789.d59ac23c.js.LICENSE.txt} +0 -0
package/dist/manifest.json
CHANGED
|
@@ -187,6 +187,96 @@
|
|
|
187
187
|
],
|
|
188
188
|
"description": "通用输入框构件"
|
|
189
189
|
},
|
|
190
|
+
{
|
|
191
|
+
"name": "eo-textarea",
|
|
192
|
+
"alias": [
|
|
193
|
+
"form.general-textarea"
|
|
194
|
+
],
|
|
195
|
+
"properties": [
|
|
196
|
+
{
|
|
197
|
+
"name": "name",
|
|
198
|
+
"description": "字段名称",
|
|
199
|
+
"type": "string"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"name": "label",
|
|
203
|
+
"description": "标签文字",
|
|
204
|
+
"type": "string"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "value",
|
|
208
|
+
"description": "值",
|
|
209
|
+
"type": "string"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "placeholder",
|
|
213
|
+
"description": "占位说明",
|
|
214
|
+
"type": "string"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "disabled",
|
|
218
|
+
"description": "是否禁用",
|
|
219
|
+
"type": "boolean"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "minLength",
|
|
223
|
+
"description": "最小长度",
|
|
224
|
+
"type": "number"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"name": "maxLength",
|
|
228
|
+
"description": "最大长度",
|
|
229
|
+
"type": "number"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "autoSize",
|
|
233
|
+
"description": "大小自适应",
|
|
234
|
+
"attribute": false,
|
|
235
|
+
"type": "AutoSize"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "required",
|
|
239
|
+
"description": "是否必填",
|
|
240
|
+
"type": "boolean"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"name": "max",
|
|
244
|
+
"description": "表单校验最大长度",
|
|
245
|
+
"type": "number"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "min",
|
|
249
|
+
"description": "表单校验最小长度",
|
|
250
|
+
"type": "number"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "message",
|
|
254
|
+
"description": "校验信息",
|
|
255
|
+
"attribute": false,
|
|
256
|
+
"type": "Record<string, string>"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"name": "textareaStyle",
|
|
260
|
+
"description": "自定义样式",
|
|
261
|
+
"attribute": false,
|
|
262
|
+
"type": "React.CSSProperties"
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
"events": [
|
|
266
|
+
{
|
|
267
|
+
"name": "change",
|
|
268
|
+
"description": "",
|
|
269
|
+
"detail": {
|
|
270
|
+
"description": null,
|
|
271
|
+
"type": "string"
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
],
|
|
275
|
+
"slots": [],
|
|
276
|
+
"methods": [],
|
|
277
|
+
"parts": [],
|
|
278
|
+
"description": "通用多行文本输入框构件"
|
|
279
|
+
},
|
|
190
280
|
{
|
|
191
281
|
"name": "eo-form",
|
|
192
282
|
"alias": [
|
|
@@ -302,96 +392,6 @@
|
|
|
302
392
|
"parts": [],
|
|
303
393
|
"description": "表单构件"
|
|
304
394
|
},
|
|
305
|
-
{
|
|
306
|
-
"name": "eo-textarea",
|
|
307
|
-
"alias": [
|
|
308
|
-
"form.general-textarea"
|
|
309
|
-
],
|
|
310
|
-
"properties": [
|
|
311
|
-
{
|
|
312
|
-
"name": "name",
|
|
313
|
-
"description": "字段名称",
|
|
314
|
-
"type": "string"
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
"name": "label",
|
|
318
|
-
"description": "标签文字",
|
|
319
|
-
"type": "string"
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"name": "value",
|
|
323
|
-
"description": "值",
|
|
324
|
-
"type": "string"
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
"name": "placeholder",
|
|
328
|
-
"description": "占位说明",
|
|
329
|
-
"type": "string"
|
|
330
|
-
},
|
|
331
|
-
{
|
|
332
|
-
"name": "disabled",
|
|
333
|
-
"description": "是否禁用",
|
|
334
|
-
"type": "boolean"
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
"name": "minLength",
|
|
338
|
-
"description": "最小长度",
|
|
339
|
-
"type": "number"
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"name": "maxLength",
|
|
343
|
-
"description": "最大长度",
|
|
344
|
-
"type": "number"
|
|
345
|
-
},
|
|
346
|
-
{
|
|
347
|
-
"name": "autoSize",
|
|
348
|
-
"description": "大小自适应",
|
|
349
|
-
"attribute": false,
|
|
350
|
-
"type": "AutoSize"
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"name": "required",
|
|
354
|
-
"description": "是否必填",
|
|
355
|
-
"type": "boolean"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"name": "max",
|
|
359
|
-
"description": "表单校验最大长度",
|
|
360
|
-
"type": "number"
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
"name": "min",
|
|
364
|
-
"description": "表单校验最小长度",
|
|
365
|
-
"type": "number"
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"name": "message",
|
|
369
|
-
"description": "校验信息",
|
|
370
|
-
"attribute": false,
|
|
371
|
-
"type": "Record<string, string>"
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
"name": "textareaStyle",
|
|
375
|
-
"description": "自定义样式",
|
|
376
|
-
"attribute": false,
|
|
377
|
-
"type": "React.CSSProperties"
|
|
378
|
-
}
|
|
379
|
-
],
|
|
380
|
-
"events": [
|
|
381
|
-
{
|
|
382
|
-
"name": "change",
|
|
383
|
-
"description": "",
|
|
384
|
-
"detail": {
|
|
385
|
-
"description": null,
|
|
386
|
-
"type": "string"
|
|
387
|
-
}
|
|
388
|
-
}
|
|
389
|
-
],
|
|
390
|
-
"slots": [],
|
|
391
|
-
"methods": [],
|
|
392
|
-
"parts": [],
|
|
393
|
-
"description": "通用多行文本输入框构件"
|
|
394
|
-
},
|
|
395
395
|
{
|
|
396
396
|
"name": "eo-form-item",
|
|
397
397
|
"alias": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-bricks/form",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.9",
|
|
4
4
|
"homepage": "https://github.com/easyops-cn/next-bricks/tree/master/bricks/form",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"@next-core/build-next-bricks": "^1.14.3",
|
|
38
38
|
"@next-core/test-next": "^1.0.11"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "e2cfacf65496826a55d1e65d5802540caa4c41b9"
|
|
41
41
|
}
|
|
File without changes
|