general-basic-form 3.0.2 → 3.0.3
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 +10 -7
- package/dist/index.js +40082 -33696
- package/dist/index.umd.cjs +65 -50
- package/package.json +117 -105
package/README.md
CHANGED
|
@@ -267,7 +267,7 @@ parametersType 类型介绍
|
|
|
267
267
|
prop: 'serviceType',
|
|
268
268
|
label: '服务类型',
|
|
269
269
|
type: 'select',
|
|
270
|
-
|
|
270
|
+
options: [
|
|
271
271
|
{ label: '到家服务', value: 'home_service' },
|
|
272
272
|
{ label: '医院陪护', value: 'hospital_care' },
|
|
273
273
|
],
|
|
@@ -317,7 +317,7 @@ parametersType 类型介绍
|
|
|
317
317
|
placeholder: '请选择等级',
|
|
318
318
|
type: 'checkbox-list',
|
|
319
319
|
},
|
|
320
|
-
|
|
320
|
+
options: [
|
|
321
321
|
{ label: 'Yysyayayasuydsaiewqnkerwjrklwjlwerjwlejrlj3', value: 'Y3' },
|
|
322
322
|
{ label: 'Yysyayayasuydsaiewqnkerwjrklwjlwerjwlejrlj4', value: 'Y4' },
|
|
323
323
|
|
|
@@ -387,7 +387,7 @@ parametersType 类型介绍
|
|
|
387
387
|
prop: 'level1',
|
|
388
388
|
label: '选择框',
|
|
389
389
|
type: 'select',
|
|
390
|
-
|
|
390
|
+
options: [
|
|
391
391
|
{ label: 'Y3', value: 'Y3' },
|
|
392
392
|
{ label: 'Y4', value: 'Y4' },
|
|
393
393
|
{ label: 'Y5', value: 'Y5' },
|
|
@@ -419,7 +419,7 @@ parametersType 类型介绍
|
|
|
419
419
|
// timeZone: "Asia/Shanghai",
|
|
420
420
|
// locale: ,
|
|
421
421
|
},
|
|
422
|
-
dataPickerType: "month",//day|month
|
|
422
|
+
dataPickerType: "month",//day|month|range
|
|
423
423
|
fieldSetting: {
|
|
424
424
|
className: fieldClassName,
|
|
425
425
|
},
|
|
@@ -438,7 +438,7 @@ parametersType 类型介绍
|
|
|
438
438
|
// setting: {
|
|
439
439
|
// disabled: true
|
|
440
440
|
// },
|
|
441
|
-
//
|
|
441
|
+
// options: [
|
|
442
442
|
// { value: '是', label: 'true', border: true },
|
|
443
443
|
// { value: '否', label: 'false' }
|
|
444
444
|
// ],
|
|
@@ -459,7 +459,7 @@ parametersType 类型介绍
|
|
|
459
459
|
legend: '标题',
|
|
460
460
|
type: 'checkbox-list',
|
|
461
461
|
gap: 3,
|
|
462
|
-
|
|
462
|
+
options: [
|
|
463
463
|
{ label: 'Y3', value: 'Y3' },
|
|
464
464
|
{ label: 'Y4', value: 'Y4' },
|
|
465
465
|
{ label: 'Y5', value: 'Y5' },
|
|
@@ -490,9 +490,11 @@ parametersType 类型介绍
|
|
|
490
490
|
// }
|
|
491
491
|
|
|
492
492
|
// enum ContainerTypes {
|
|
493
|
+
// "Combobox" = "Combobox",
|
|
493
494
|
// "Popover" = "Popover",
|
|
494
495
|
// "Drawer" = "Drawer",
|
|
495
496
|
// "Dialog" = "Dialog",
|
|
497
|
+
// "HoverCard" = "HoverCard",
|
|
496
498
|
// }
|
|
497
499
|
{
|
|
498
500
|
label: "分类",
|
|
@@ -545,7 +547,7 @@ parametersType 类型介绍
|
|
|
545
547
|
fieldSetting: {
|
|
546
548
|
className: fieldClassName,
|
|
547
549
|
},
|
|
548
|
-
|
|
550
|
+
options: [
|
|
549
551
|
{ label: 'Y3', value: 'Y3' },
|
|
550
552
|
{ label: 'Y4', value: 'Y4' },
|
|
551
553
|
{ label: 'Y5', value: 'Y5' },
|
|
@@ -784,6 +786,7 @@ import { RBaseCombobox } from 'general-basic-form';
|
|
|
784
786
|
empty: '搜索内容为空的提示',
|
|
785
787
|
},
|
|
786
788
|
container: 'Dialog',
|
|
789
|
+
showClear: true,
|
|
787
790
|
}}
|
|
788
791
|
/>
|
|
789
792
|
|