fengmao-ui 1.3.8 → 1.3.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/lib/adaptive-page/index.d.ts +21 -36
- package/lib/adaptive-page/src/index.vue.d.ts +7 -12
- package/lib/fengmao-ui.js +1354 -1334
- package/lib/fengmao-ui.js.gz +0 -0
- package/lib/fengmao-ui.umd.cjs +7 -7
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/lib/table/index.d.ts +21 -36
- package/lib/table/src/ColumnSet.vue.d.ts +5 -10
- package/lib/table/src/index.vue.d.ts +7 -12
- package/package.json +2 -2
|
@@ -183,7 +183,7 @@ declare const TAdaptivePage: ({
|
|
|
183
183
|
props: any;
|
|
184
184
|
state: {
|
|
185
185
|
tableData: any;
|
|
186
|
-
columnSet:
|
|
186
|
+
columnSet: any[];
|
|
187
187
|
copyTableData: never[];
|
|
188
188
|
};
|
|
189
189
|
radioVal: import("vue").Ref<null>;
|
|
@@ -200,7 +200,7 @@ declare const TAdaptivePage: ({
|
|
|
200
200
|
initSort: () => void;
|
|
201
201
|
constantEscape: (value: any, list: any, key: any, label: any) => any;
|
|
202
202
|
isEditRules: import("vue").ComputedRef<any>;
|
|
203
|
-
renderColumns: import("vue").ComputedRef<any>;
|
|
203
|
+
renderColumns: import("vue").ComputedRef<any[]>;
|
|
204
204
|
isTableBorder: import("vue").ComputedRef<boolean>;
|
|
205
205
|
handleKeyup: (event: any, index: any, key: any) => void;
|
|
206
206
|
cellClassNameFuc: ({ row }: {
|
|
@@ -317,23 +317,18 @@ declare const TAdaptivePage: ({
|
|
|
317
317
|
default: () => void;
|
|
318
318
|
};
|
|
319
319
|
}, {
|
|
320
|
+
currentPath: string;
|
|
320
321
|
props: any;
|
|
322
|
+
cacheKey: string;
|
|
321
323
|
$attrs: any;
|
|
322
324
|
columnBind: import("vue").ComputedRef<any>;
|
|
323
|
-
getColumnSetCache: () => any;
|
|
324
|
-
initColumnSet: () =>
|
|
325
|
+
getColumnSetCache: () => any[];
|
|
326
|
+
initColumnSet: () => {
|
|
325
327
|
label: any;
|
|
326
328
|
prop: any;
|
|
327
329
|
hidden: boolean;
|
|
328
330
|
checkBoxDisabled: boolean;
|
|
329
|
-
|
|
330
|
-
} | {
|
|
331
|
-
label: any;
|
|
332
|
-
prop: any;
|
|
333
|
-
checkBoxDisabled: boolean;
|
|
334
|
-
hidden: boolean;
|
|
335
|
-
isShowHidden?: undefined;
|
|
336
|
-
})[];
|
|
331
|
+
}[];
|
|
337
332
|
emits: (event: "columnSetting", ...args: any[]) => void;
|
|
338
333
|
state: any;
|
|
339
334
|
checkChanged: (checked: any, index: any) => void;
|
|
@@ -971,7 +966,7 @@ declare const TAdaptivePage: ({
|
|
|
971
966
|
props: any;
|
|
972
967
|
state: {
|
|
973
968
|
tableData: any;
|
|
974
|
-
columnSet:
|
|
969
|
+
columnSet: any[];
|
|
975
970
|
copyTableData: never[];
|
|
976
971
|
};
|
|
977
972
|
radioVal: import("vue").Ref<null>;
|
|
@@ -988,7 +983,7 @@ declare const TAdaptivePage: ({
|
|
|
988
983
|
initSort: () => void;
|
|
989
984
|
constantEscape: (value: any, list: any, key: any, label: any) => any;
|
|
990
985
|
isEditRules: import("vue").ComputedRef<any>;
|
|
991
|
-
renderColumns: import("vue").ComputedRef<any>;
|
|
986
|
+
renderColumns: import("vue").ComputedRef<any[]>;
|
|
992
987
|
isTableBorder: import("vue").ComputedRef<boolean>;
|
|
993
988
|
handleKeyup: (event: any, index: any, key: any) => void;
|
|
994
989
|
cellClassNameFuc: ({ row }: {
|
|
@@ -1105,23 +1100,18 @@ declare const TAdaptivePage: ({
|
|
|
1105
1100
|
default: () => void;
|
|
1106
1101
|
};
|
|
1107
1102
|
}, {
|
|
1103
|
+
currentPath: string;
|
|
1108
1104
|
props: any;
|
|
1105
|
+
cacheKey: string;
|
|
1109
1106
|
$attrs: any;
|
|
1110
1107
|
columnBind: import("vue").ComputedRef<any>;
|
|
1111
|
-
getColumnSetCache: () => any;
|
|
1112
|
-
initColumnSet: () =>
|
|
1108
|
+
getColumnSetCache: () => any[];
|
|
1109
|
+
initColumnSet: () => {
|
|
1113
1110
|
label: any;
|
|
1114
1111
|
prop: any;
|
|
1115
1112
|
hidden: boolean;
|
|
1116
1113
|
checkBoxDisabled: boolean;
|
|
1117
|
-
|
|
1118
|
-
} | {
|
|
1119
|
-
label: any;
|
|
1120
|
-
prop: any;
|
|
1121
|
-
checkBoxDisabled: boolean;
|
|
1122
|
-
hidden: boolean;
|
|
1123
|
-
isShowHidden?: undefined;
|
|
1124
|
-
})[];
|
|
1114
|
+
}[];
|
|
1125
1115
|
emits: (event: "columnSetting", ...args: any[]) => void;
|
|
1126
1116
|
state: any;
|
|
1127
1117
|
checkChanged: (checked: any, index: any) => void;
|
|
@@ -1741,7 +1731,7 @@ declare const TAdaptivePage: ({
|
|
|
1741
1731
|
props: any;
|
|
1742
1732
|
state: {
|
|
1743
1733
|
tableData: any;
|
|
1744
|
-
columnSet:
|
|
1734
|
+
columnSet: any[];
|
|
1745
1735
|
copyTableData: never[];
|
|
1746
1736
|
};
|
|
1747
1737
|
radioVal: import("vue").Ref<null>;
|
|
@@ -1758,7 +1748,7 @@ declare const TAdaptivePage: ({
|
|
|
1758
1748
|
initSort: () => void;
|
|
1759
1749
|
constantEscape: (value: any, list: any, key: any, label: any) => any;
|
|
1760
1750
|
isEditRules: import("vue").ComputedRef<any>;
|
|
1761
|
-
renderColumns: import("vue").ComputedRef<any>;
|
|
1751
|
+
renderColumns: import("vue").ComputedRef<any[]>;
|
|
1762
1752
|
isTableBorder: import("vue").ComputedRef<boolean>;
|
|
1763
1753
|
handleKeyup: (event: any, index: any, key: any) => void;
|
|
1764
1754
|
cellClassNameFuc: ({ row }: {
|
|
@@ -1875,23 +1865,18 @@ declare const TAdaptivePage: ({
|
|
|
1875
1865
|
default: () => void;
|
|
1876
1866
|
};
|
|
1877
1867
|
}, {
|
|
1868
|
+
currentPath: string;
|
|
1878
1869
|
props: any;
|
|
1870
|
+
cacheKey: string;
|
|
1879
1871
|
$attrs: any;
|
|
1880
1872
|
columnBind: import("vue").ComputedRef<any>;
|
|
1881
|
-
getColumnSetCache: () => any;
|
|
1882
|
-
initColumnSet: () =>
|
|
1873
|
+
getColumnSetCache: () => any[];
|
|
1874
|
+
initColumnSet: () => {
|
|
1883
1875
|
label: any;
|
|
1884
1876
|
prop: any;
|
|
1885
1877
|
hidden: boolean;
|
|
1886
1878
|
checkBoxDisabled: boolean;
|
|
1887
|
-
|
|
1888
|
-
} | {
|
|
1889
|
-
label: any;
|
|
1890
|
-
prop: any;
|
|
1891
|
-
checkBoxDisabled: boolean;
|
|
1892
|
-
hidden: boolean;
|
|
1893
|
-
isShowHidden?: undefined;
|
|
1894
|
-
})[];
|
|
1879
|
+
}[];
|
|
1895
1880
|
emits: (event: "columnSetting", ...args: any[]) => void;
|
|
1896
1881
|
state: any;
|
|
1897
1882
|
checkChanged: (checked: any, index: any) => void;
|
|
@@ -119,7 +119,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
119
|
props: any;
|
|
120
120
|
state: {
|
|
121
121
|
tableData: any;
|
|
122
|
-
columnSet:
|
|
122
|
+
columnSet: any[];
|
|
123
123
|
copyTableData: never[];
|
|
124
124
|
};
|
|
125
125
|
radioVal: import("vue").Ref<null>;
|
|
@@ -136,7 +136,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
136
136
|
initSort: () => void;
|
|
137
137
|
constantEscape: (value: any, list: any, key: any, label: any) => any;
|
|
138
138
|
isEditRules: import("vue").ComputedRef<any>;
|
|
139
|
-
renderColumns: import("vue").ComputedRef<any>;
|
|
139
|
+
renderColumns: import("vue").ComputedRef<any[]>;
|
|
140
140
|
isTableBorder: import("vue").ComputedRef<boolean>;
|
|
141
141
|
handleKeyup: (event: any, index: any, key: any) => void;
|
|
142
142
|
cellClassNameFuc: ({ row }: {
|
|
@@ -253,23 +253,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
253
253
|
default: () => void;
|
|
254
254
|
};
|
|
255
255
|
}, {
|
|
256
|
+
currentPath: string;
|
|
256
257
|
props: any;
|
|
258
|
+
cacheKey: string;
|
|
257
259
|
$attrs: any;
|
|
258
260
|
columnBind: import("vue").ComputedRef<any>;
|
|
259
|
-
getColumnSetCache: () => any;
|
|
260
|
-
initColumnSet: () =>
|
|
261
|
+
getColumnSetCache: () => any[];
|
|
262
|
+
initColumnSet: () => {
|
|
261
263
|
label: any;
|
|
262
264
|
prop: any;
|
|
263
265
|
hidden: boolean;
|
|
264
266
|
checkBoxDisabled: boolean;
|
|
265
|
-
|
|
266
|
-
} | {
|
|
267
|
-
label: any;
|
|
268
|
-
prop: any;
|
|
269
|
-
checkBoxDisabled: boolean;
|
|
270
|
-
hidden: boolean;
|
|
271
|
-
isShowHidden?: undefined;
|
|
272
|
-
})[];
|
|
267
|
+
}[];
|
|
273
268
|
emits: (event: "columnSetting", ...args: any[]) => void;
|
|
274
269
|
state: any;
|
|
275
270
|
checkChanged: (checked: any, index: any) => void;
|