holyes-table 1.0.30 → 1.0.32

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 CHANGED
@@ -746,6 +746,26 @@ const columns = [
746
746
  }
747
747
  }
748
748
  },
749
+
750
+ // 复选框类型
751
+ {
752
+ field: 'checkbox',
753
+ title: '多选',
754
+ slots: {
755
+ defaultType: 'checkbox',
756
+ defaultProps: {
757
+ checkbox: {
758
+ checkedIndeterminateField: 'halfChecked',
759
+ disabledField: 'checkedDisabled',
760
+ checkedValue: true,
761
+ showField: "checkboxShow",
762
+ onChange: (row, index) => {
763
+ console.log('复选框变化', row)
764
+ }
765
+ }
766
+ }
767
+ }
768
+ },
749
769
 
750
770
  // 图标类型
751
771
  {