next-element-vue 0.7.5 → 0.7.7-dev.1

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.

Potentially problematic release.


This version of next-element-vue might be problematic. Click here for more details.

@@ -63,6 +63,7 @@ export interface SearchColumnProps extends Column {
63
63
  searchLeafOnly?: boolean;
64
64
  searchShowCheckboxn?: boolean;
65
65
  searchCheckStrictly?: boolean;
66
+ searchCheckOnClickNode?: boolean;
66
67
  searchRenderAfterExpand?: boolean;
67
68
  searchTreeSelectProps?: string;
68
69
  treeSelectNodeClickSearch?: Function;
@@ -81,6 +82,22 @@ export interface FormColunmProps extends Column {
81
82
  formStartPlaceholder?: string;
82
83
  formEndPlaceholder?: string;
83
84
  formRangeSeparator?: string;
85
+ formTimePickerProps?: {
86
+ isRange?: boolean;
87
+ rangeSeparator?: string;
88
+ arrowControl?: boolean;
89
+ placement?: string;
90
+ disabledHours?: Function;
91
+ disabledMinutes?: Function;
92
+ disabledSeconds?: Function;
93
+ };
94
+ formTimeSelectProps?: {
95
+ start?: string;
96
+ end?: string;
97
+ step?: string;
98
+ minTime?: string;
99
+ maxTime?: string;
100
+ };
84
101
  formDisabled?: string;
85
102
  formEditDisabled?: boolean;
86
103
  formClearable?: boolean;
@@ -107,12 +124,15 @@ export interface FormColunmProps extends Column {
107
124
  formShortcuts?: any[];
108
125
  formFormat?: string;
109
126
  formAccept?: string;
110
- formRenderDivider?: Function;
127
+ formRenderDividerBefore?: Function;
128
+ formRenderDividerAfter?: Function;
111
129
  formRemark?: string;
112
130
  formRules?: any[];
113
131
  formDicKey?: string;
114
132
  formMultiple?: boolean;
133
+ formShowAllLevels?: boolean;
115
134
  formCollapseTags?: boolean;
135
+ formCollapseTagsTooltip?: boolean;
116
136
  formLimit?: number;
117
137
  formDicData?: DictData[];
118
138
  formLoadDicData?: Function;
@@ -126,6 +146,7 @@ export interface FormColunmProps extends Column {
126
146
  formAllowCreate?: boolean;
127
147
  formNodeKey?: string;
128
148
  formCheckStrictly?: boolean;
149
+ formCheckOnClickNode?: boolean;
129
150
  formLeafOnly?: boolean;
130
151
  formShowCheckboxn?: boolean;
131
152
  formRenderAfterExpand?: boolean;
@@ -198,11 +219,12 @@ declare const _default: {
198
219
  dialogFullscreenBtn: boolean;
199
220
  dialogDraggable: boolean;
200
221
  dialogFormParamsDefault: {};
201
- closeOnClickModal: boolean;
222
+ dialogCloseOnClickModal: boolean;
202
223
  formColumns: FormColunmProps | unknown;
203
224
  formLabelWidth: string;
204
225
  formSpan: number;
205
226
  formSpanFixed: any;
206
227
  formColumnMinWidth: number;
228
+ loadFormDetail: any;
207
229
  };
208
230
  export default _default;
@@ -48,6 +48,10 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
48
48
  type: BooleanConstructor;
49
49
  default: boolean;
50
50
  };
51
+ overflow: {
52
+ type: BooleanConstructor;
53
+ default: boolean;
54
+ };
51
55
  zoomSize: {
52
56
  type: BooleanConstructor;
53
57
  default: boolean;
@@ -117,6 +121,10 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
117
121
  type: BooleanConstructor;
118
122
  default: boolean;
119
123
  };
124
+ overflow: {
125
+ type: BooleanConstructor;
126
+ default: boolean;
127
+ };
120
128
  zoomSize: {
121
129
  type: BooleanConstructor;
122
130
  default: boolean;
@@ -152,6 +160,7 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
152
160
  showClose: boolean;
153
161
  appendToBody: boolean;
154
162
  draggable: boolean;
163
+ overflow: boolean;
155
164
  zoomSize: boolean;
156
165
  destroyOnClose: boolean;
157
166
  modal: boolean;
@@ -48,6 +48,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
48
48
  type: BooleanConstructor;
49
49
  default: boolean;
50
50
  };
51
+ overflow: {
52
+ type: BooleanConstructor;
53
+ default: boolean;
54
+ };
51
55
  zoomSize: {
52
56
  type: BooleanConstructor;
53
57
  default: boolean;
@@ -117,6 +121,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
117
121
  type: BooleanConstructor;
118
122
  default: boolean;
119
123
  };
124
+ overflow: {
125
+ type: BooleanConstructor;
126
+ default: boolean;
127
+ };
120
128
  zoomSize: {
121
129
  type: BooleanConstructor;
122
130
  default: boolean;
@@ -152,6 +160,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
152
160
  showClose: boolean;
153
161
  appendToBody: boolean;
154
162
  draggable: boolean;
163
+ overflow: boolean;
155
164
  zoomSize: boolean;
156
165
  destroyOnClose: boolean;
157
166
  modal: boolean;
@@ -30,15 +30,34 @@ export interface FormItemProps {
30
30
  startPlaceholder?: string;
31
31
  endPlaceholder?: string;
32
32
  rangeSeparator?: string;
33
+ timePickerProps?: {
34
+ isRange?: boolean;
35
+ rangeSeparator?: string;
36
+ arrowControl?: boolean;
37
+ placement?: string;
38
+ disabledHours?: Function;
39
+ disabledMinutes?: Function;
40
+ disabledSeconds?: Function;
41
+ };
42
+ timeSelectProps?: {
43
+ start?: string;
44
+ end?: string;
45
+ step?: string;
46
+ minTime?: string;
47
+ maxTime?: string;
48
+ };
33
49
  readonly?: boolean;
34
50
  filterable?: boolean;
51
+ showAllLevels?: boolean;
35
52
  allowCreate?: boolean;
36
53
  clearable?: boolean;
37
54
  dicData?: DicData[];
38
55
  loadDicData?: Function;
56
+ _dictDataLoading?: boolean;
39
57
  hide?: boolean;
40
58
  multiple?: boolean;
41
59
  collapseTags?: boolean;
60
+ collapseTagsTooltip?: boolean;
42
61
  limit?: number;
43
62
  accept?: string;
44
63
  editable?: boolean;
@@ -46,7 +65,8 @@ export interface FormItemProps {
46
65
  disabledDate?: Function;
47
66
  shortcuts?: any[];
48
67
  tip?: string;
49
- renderDivider?: Function;
68
+ renderDividerBefore?: Function;
69
+ renderDividerAfter?: Function;
50
70
  remark?: string;
51
71
  onChange?: Function;
52
72
  onClear?: Function;
@@ -56,14 +76,16 @@ export interface FormItemProps {
56
76
  tableSelect?: any;
57
77
  tableSelectRows?: any[];
58
78
  tableSelectProps?: {
59
- label: string;
60
79
  value: string | number;
80
+ label: string;
81
+ required?: boolean;
61
82
  };
62
83
  tableSelectDefaultValue?: Function;
63
84
  onTableSelect?: Function;
64
85
  nodeKey?: string;
65
86
  accordion?: boolean;
66
87
  checkStrictly?: boolean;
88
+ checkOnClickNode?: boolean;
67
89
  showCheckbox?: boolean;
68
90
  leafOnly?: boolean;
69
91
  renderAfterExpand?: boolean;
@@ -86,7 +108,7 @@ export declare const tableSelectConfig: {
86
108
  batchDelBtn: boolean;
87
109
  dialogWidth: string;
88
110
  dialogFullscreen: boolean;
89
- closeOnClickModal: boolean;
111
+ dialogCloseOnClickModal: boolean;
90
112
  refreshBtn: boolean;
91
113
  settingBtn: boolean;
92
114
  operations: boolean;
@@ -109,7 +131,7 @@ declare const _default: {
109
131
  batchDelBtn: boolean;
110
132
  dialogWidth: string;
111
133
  dialogFullscreen: boolean;
112
- closeOnClickModal: boolean;
134
+ dialogCloseOnClickModal: boolean;
113
135
  refreshBtn: boolean;
114
136
  settingBtn: boolean;
115
137
  operations: boolean;
@@ -2,6 +2,7 @@ interface CrudTableConfig {
2
2
  btnText?: boolean;
3
3
  btnPlain?: boolean;
4
4
  btnSize?: 'large' | 'default' | 'small';
5
+ dialogCloseOnClickModal?: boolean;
5
6
  }
6
7
  export interface ConfigProviderOptions {
7
8
  theme?: 'light' | 'dark';
@@ -58,7 +58,7 @@ export declare const formatArg: (obj: any) => string;
58
58
  * @param value
59
59
  * @returns
60
60
  */
61
- export declare const isValueExist: (value: any) => boolean;
61
+ export declare const isValueExist: (value: unknown) => boolean;
62
62
  /**
63
63
  * 取真实存在的值
64
64
  * @param arg
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-element-vue",
3
- "version": "0.7.5",
3
+ "version": "0.7.7-dev.1",
4
4
  "author": {
5
5
  "name": "huangteng",
6
6
  "email": "junehunter@163.com"