@das-fed/ui 6.4.0-dev.106 → 6.4.0-dev.108
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/package.json +5 -5
- package/packages/business-components/echarts/index.d.ts +5 -5
- package/packages/business-components/echarts/index.js +5 -4
- package/packages/business-components/echarts/index.js.gz +0 -0
- package/packages/business-components/echarts/src/Index.vue.d.ts +1 -1
- package/packages/business-components/echarts/src/type.d.ts +2 -0
- package/packages/business-components/echarts/style.css +1 -1
- package/packages/components/edit-table/index.js +206 -206
- package/packages/components/edit-table/index.js.gz +0 -0
- package/packages/components/table/index.d.ts +26 -2
- package/packages/components/table/index.js +220 -212
- package/packages/components/table/index.js.gz +0 -0
- package/packages/components/table/src/table-column/index.vue.d.ts +17 -7
- package/packages/components/table/src/table-column/type.d.ts +3 -3
- package/packages/components/table/style.css +1 -1
- package/packages/components/table/style.css.gz +0 -0
- package/packages/components/tooltip/index.js +2 -2
- package/packages/components/tooltip/index.js.gz +0 -0
- package/packages/components/tooltip/style.css +1 -1
- package/packages/components/tooltip/style.css.gz +0 -0
|
Binary file
|
|
@@ -3986,11 +3986,11 @@ declare const DasTableColumnRef: () => import("vue").Ref<({
|
|
|
3986
3986
|
readonly placeholder?: string | undefined;
|
|
3987
3987
|
readonly required?: boolean | undefined;
|
|
3988
3988
|
readonly columnFilter?: boolean | undefined;
|
|
3989
|
+
readonly columnFilterMultiple?: boolean | undefined;
|
|
3989
3990
|
readonly columnFilterMode?: "select" | "input" | undefined;
|
|
3990
3991
|
readonly filterDefaultVal?: any[] | undefined;
|
|
3991
3992
|
readonly filterVal?: any[] | undefined;
|
|
3992
3993
|
readonly filterKeywords?: string | undefined;
|
|
3993
|
-
readonly columnFilterMultiple?: boolean | undefined;
|
|
3994
3994
|
readonly columnFilterAllowSearch?: boolean | undefined;
|
|
3995
3995
|
readonly columnFilterAutoClearSearch?: boolean | undefined;
|
|
3996
3996
|
readonly columnFilterOptions?: (Array<{
|
|
@@ -4090,7 +4090,15 @@ declare const DasTableColumnRef: () => import("vue").Ref<({
|
|
|
4090
4090
|
column: any;
|
|
4091
4091
|
$index: any;
|
|
4092
4092
|
}) => any) | undefined;
|
|
4093
|
+
'header-prefix'?: ((props: {
|
|
4094
|
+
column: any;
|
|
4095
|
+
$index: any;
|
|
4096
|
+
}) => any) | undefined;
|
|
4093
4097
|
'header-tips'?: ((props: {}) => any) | undefined;
|
|
4098
|
+
'header-suffix'?: ((props: {
|
|
4099
|
+
column: any;
|
|
4100
|
+
$index: any;
|
|
4101
|
+
}) => any) | undefined;
|
|
4094
4102
|
default?: (((props: {
|
|
4095
4103
|
row: any;
|
|
4096
4104
|
column: any;
|
|
@@ -4129,11 +4137,11 @@ declare const DasTableColumnRef: () => import("vue").Ref<({
|
|
|
4129
4137
|
readonly placeholder?: string | undefined;
|
|
4130
4138
|
readonly required?: boolean | undefined;
|
|
4131
4139
|
readonly columnFilter?: boolean | undefined;
|
|
4140
|
+
readonly columnFilterMultiple?: boolean | undefined;
|
|
4132
4141
|
readonly columnFilterMode?: "select" | "input" | undefined;
|
|
4133
4142
|
readonly filterDefaultVal?: any[] | undefined;
|
|
4134
4143
|
readonly filterVal?: any[] | undefined;
|
|
4135
4144
|
readonly filterKeywords?: string | undefined;
|
|
4136
|
-
readonly columnFilterMultiple?: boolean | undefined;
|
|
4137
4145
|
readonly columnFilterAllowSearch?: boolean | undefined;
|
|
4138
4146
|
readonly columnFilterAutoClearSearch?: boolean | undefined;
|
|
4139
4147
|
readonly columnFilterOptions?: (Array<{
|
|
@@ -4233,7 +4241,15 @@ declare const DasTableColumnRef: () => import("vue").Ref<({
|
|
|
4233
4241
|
column: any;
|
|
4234
4242
|
$index: any;
|
|
4235
4243
|
}) => any) | undefined;
|
|
4244
|
+
'header-prefix'?: ((props: {
|
|
4245
|
+
column: any;
|
|
4246
|
+
$index: any;
|
|
4247
|
+
}) => any) | undefined;
|
|
4236
4248
|
'header-tips'?: ((props: {}) => any) | undefined;
|
|
4249
|
+
'header-suffix'?: ((props: {
|
|
4250
|
+
column: any;
|
|
4251
|
+
$index: any;
|
|
4252
|
+
}) => any) | undefined;
|
|
4237
4253
|
default?: (((props: {
|
|
4238
4254
|
row: any;
|
|
4239
4255
|
column: any;
|
|
@@ -7153,7 +7169,15 @@ declare const DasTableColumn: import("@das-fed/utils").SFCWithInstall<{
|
|
|
7153
7169
|
column: any;
|
|
7154
7170
|
$index: any;
|
|
7155
7171
|
}) => any) | undefined;
|
|
7172
|
+
'header-prefix'?: ((props: {
|
|
7173
|
+
column: any;
|
|
7174
|
+
$index: any;
|
|
7175
|
+
}) => any) | undefined;
|
|
7156
7176
|
'header-tips'?: ((props: {}) => any) | undefined;
|
|
7177
|
+
'header-suffix'?: ((props: {
|
|
7178
|
+
column: any;
|
|
7179
|
+
$index: any;
|
|
7180
|
+
}) => any) | undefined;
|
|
7157
7181
|
default?: (((props: {
|
|
7158
7182
|
row: any;
|
|
7159
7183
|
column: any;
|