@das-fed/ui 6.4.0-dev.26 → 6.4.0-dev.27
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/device-panel/index.js +1131 -1114
- package/packages/business-components/device-panel/index.js.gz +0 -0
- package/packages/business-components/device-panel/style.css +1 -1
- package/packages/business-components/device-panel/style.css.gz +0 -0
- package/packages/business-components/process-search-form/index.js +1 -1
- package/packages/business-components/process-search-form/index.js.gz +0 -0
- package/packages/business-components/process-table/hooks/useProcessTable.d.ts +14 -13
- package/packages/business-components/process-table/index.d.ts +67 -18
- package/packages/business-components/process-table/index.js +527 -522
- package/packages/business-components/process-table/index.js.gz +0 -0
- package/packages/business-components/process-table/src/App.vue.d.ts +16 -4
- package/packages/business-components/process-table/style.css +1 -1
- package/packages/business-components/urgent-panel/index.js +1341 -1324
- package/packages/business-components/urgent-panel/index.js.gz +0 -0
- package/packages/business-components/urgent-panel/src/components/urgentPanelModal/hooks/index.d.ts +4 -1
- package/packages/business-components/urgent-panel/style.css +1 -1
- package/packages/business-components/urgent-panel/style.css.gz +0 -0
- package/packages/business-components/video-dialog/index.js +234 -225
- package/packages/business-components/video-dialog/index.js.gz +0 -0
- package/packages/business-components/video-dialog/src/api.d.ts +3 -0
- package/packages/business-components/video-dialog/src/hooks/use-video/PlayerProvider.d.ts +6 -0
- package/packages/business-components/video-dialog/src/type.d.ts +2 -0
- package/packages/components/edit-table/index.js +959 -957
- package/packages/components/edit-table/index.js.gz +0 -0
- package/packages/components/edit-table/src/index.vue.d.ts +4 -1
- package/packages/components/search/index.js +54 -106
- package/packages/components/search/index.js.gz +0 -0
- package/packages/components/search/src/Index.vue.d.ts +1 -1
- package/packages/components/search/style.css +1 -1
- package/packages/components/search/style.css.gz +0 -0
- package/packages/components/table/index.d.ts +11 -2
- package/packages/components/table/index.js +2886 -2881
- package/packages/components/table/index.js.gz +0 -0
- package/packages/components/table/src/Table.vue.d.ts +1 -0
- package/packages/components/table/src/type.d.ts +3 -4
- package/packages/components/table/style.css +1 -1
- package/packages/components/table/style.css.gz +0 -0
|
Binary file
|
|
@@ -47,6 +47,7 @@ declare function __VLS_template(): {
|
|
|
47
47
|
readonly [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
48
48
|
readonly rowKey?: string | undefined;
|
|
49
49
|
readonly highlightKey?: string | undefined;
|
|
50
|
+
readonly highlightRowId?: any[] | undefined;
|
|
50
51
|
readonly data?: any[] | undefined;
|
|
51
52
|
readonly loading?: boolean | undefined;
|
|
52
53
|
readonly border?: boolean | undefined;
|
|
@@ -1256,6 +1257,7 @@ declare function __VLS_template(): {
|
|
|
1256
1257
|
}, string, {
|
|
1257
1258
|
emptyText: string;
|
|
1258
1259
|
selectionRows: any[];
|
|
1260
|
+
highlightRowId: any[];
|
|
1259
1261
|
pageSizes: number[];
|
|
1260
1262
|
headerCellClassName: import("element-plus").CellCls;
|
|
1261
1263
|
rowClassName: import("element-plus").ColumnCls;
|
|
@@ -1293,6 +1295,7 @@ declare function __VLS_template(): {
|
|
|
1293
1295
|
} & Readonly<{
|
|
1294
1296
|
emptyText: string;
|
|
1295
1297
|
selectionRows: any[];
|
|
1298
|
+
highlightRowId: any[];
|
|
1296
1299
|
pageSizes: number[];
|
|
1297
1300
|
headerCellClassName: import("element-plus").CellCls;
|
|
1298
1301
|
rowClassName: import("element-plus").ColumnCls;
|
|
@@ -1309,7 +1312,7 @@ declare function __VLS_template(): {
|
|
|
1309
1312
|
sumText: string;
|
|
1310
1313
|
}> & Omit<Readonly<import("../../table/src/type").Props> & Readonly<{
|
|
1311
1314
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
1312
|
-
}>, "$table" | "tableScrollTop" | "getCurrentParamsIds" | ("emptyText" | "selectionRows" | "pageSizes" | "headerCellClassName" | "rowClassName" | "paginationProps" | "currentRodioSelection" | "selectionIds" | "hideSelectionText" | "showOperationColumn" | "operationOptions" | "delay" | "showCustomContent" | "disabledIdsList" | "highPerformance" | "sumText")> & import("vue").ShallowUnwrapRef<{
|
|
1315
|
+
}>, "$table" | "tableScrollTop" | "getCurrentParamsIds" | ("emptyText" | "selectionRows" | "highlightRowId" | "pageSizes" | "headerCellClassName" | "rowClassName" | "paginationProps" | "currentRodioSelection" | "selectionIds" | "hideSelectionText" | "showOperationColumn" | "operationOptions" | "delay" | "showCustomContent" | "disabledIdsList" | "highPerformance" | "sumText")> & import("vue").ShallowUnwrapRef<{
|
|
1313
1316
|
$table: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
1314
1317
|
data: {
|
|
1315
1318
|
type: import("vue").PropType<any[]>;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import '@das-fed/ui/packages/components/search/style.css';
|
|
2
|
-
import { withInstall as
|
|
3
|
-
import { defineComponent as
|
|
4
|
-
import
|
|
5
|
-
import {
|
|
6
|
-
import "
|
|
7
|
-
import { setI18nRule as
|
|
8
|
-
import { setThemeRule as
|
|
9
|
-
const
|
|
2
|
+
import { withInstall as y } from "@das-fed/utils/with-install/index";
|
|
3
|
+
import { defineComponent as I, ref as f, watch as x, openBlock as u, createElementBlock as v, normalizeClass as V, createVNode as S, unref as n, mergeProps as k, isRef as B, withCtx as m, createBlock as h, createCommentVNode as p } from "vue";
|
|
4
|
+
import "element-plus/es/components/input/style/css";
|
|
5
|
+
import { ElInput as C } from "element-plus";
|
|
6
|
+
import { DasAutoRegisterIcon as z, DasIcon as b } from "@das-fed/ui/packages/components/icon/index";
|
|
7
|
+
import { setI18nRule as $ } from "@das-fed/web/packages/i18n/index";
|
|
8
|
+
import { setThemeRule as D } from "@das-fed/web/packages/theme/index";
|
|
9
|
+
const L = {
|
|
10
10
|
inheritAttrs: !1
|
|
11
|
-
},
|
|
12
|
-
...
|
|
11
|
+
}, R = /* @__PURE__ */ I({
|
|
12
|
+
...L,
|
|
13
13
|
__name: "Index",
|
|
14
14
|
props: {
|
|
15
15
|
modelValue: {
|
|
@@ -75,124 +75,72 @@ const D = {
|
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
77
|
emits: ["update:modelValue", "change", "blur", "press-enter", "search"],
|
|
78
|
-
setup(e, { emit:
|
|
79
|
-
|
|
78
|
+
setup(e, { emit: i }) {
|
|
79
|
+
z({
|
|
80
80
|
search: import("@das-fed/ui/packages/icons/search"),
|
|
81
81
|
empty: import("@das-fed/ui/packages/icons/empty")
|
|
82
82
|
});
|
|
83
|
-
const
|
|
84
|
-
let
|
|
85
|
-
const a = V({
|
|
86
|
-
get: () => c.modelValue,
|
|
87
|
-
set: (d) => t("update:modelValue", d)
|
|
88
|
-
});
|
|
89
|
-
L(() => {
|
|
90
|
-
});
|
|
83
|
+
const l = e, r = i;
|
|
84
|
+
let t = f(l.modelValue), s = f(l.modelValue);
|
|
91
85
|
const g = () => {
|
|
92
|
-
|
|
93
|
-
},
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
return (d, f) => (n(), w(
|
|
86
|
+
r("update:modelValue", t.value), s.value = t.value, r("change", t.value);
|
|
87
|
+
}, c = (a) => a === null || typeof a > "u" || a === "";
|
|
88
|
+
return x(
|
|
89
|
+
() => l.modelValue,
|
|
90
|
+
(a, o) => {
|
|
91
|
+
t.value = a, !c(o) && !c(s.value) && c(a) && (s.value = "", r("change", t.value));
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
immediate: !0,
|
|
95
|
+
deep: !0
|
|
96
|
+
}
|
|
97
|
+
), (a, o) => (u(), v(
|
|
105
98
|
"div",
|
|
106
99
|
{
|
|
107
|
-
class:
|
|
100
|
+
class: V(`das-ui-search ${e.size}`)
|
|
108
101
|
},
|
|
109
102
|
[
|
|
110
|
-
|
|
111
|
-
type:
|
|
112
|
-
class: `
|
|
113
|
-
|
|
114
|
-
"onUpdate:
|
|
115
|
-
disabled: e.disabled,
|
|
116
|
-
onBlur: g,
|
|
117
|
-
onFocus: x,
|
|
118
|
-
onPressEnter: $
|
|
119
|
-
}), {
|
|
120
|
-
prefix: v(() => [
|
|
121
|
-
e.isIconLeft ? (n(), u(o(s), {
|
|
122
|
-
key: 0,
|
|
123
|
-
icon: e.prefixIcon ? e.prefixIcon : "search",
|
|
124
|
-
onMousedown: r
|
|
125
|
-
}, null, 8, ["icon"])) : i("v-if", !0)
|
|
126
|
-
]),
|
|
127
|
-
suffix: v(() => [
|
|
128
|
-
e.clearable && a.value.length ? (n(), u(o(s), {
|
|
129
|
-
key: 0,
|
|
130
|
-
class: "close-icon",
|
|
131
|
-
size: "large",
|
|
132
|
-
icon: "empty",
|
|
133
|
-
color: "#d9d9d9",
|
|
134
|
-
onMousedown: C,
|
|
135
|
-
onMouseenter: k
|
|
136
|
-
})) : i("v-if", !0),
|
|
137
|
-
e.isIconLeft ? i("v-if", !0) : (n(), u(o(s), {
|
|
138
|
-
key: 1,
|
|
139
|
-
icon: e.suffixIcon ? e.suffixIcon : "search",
|
|
140
|
-
onMousedown: r
|
|
141
|
-
}, null, 8, ["icon"]))
|
|
142
|
-
]),
|
|
143
|
-
_: 1
|
|
144
|
-
/* STABLE */
|
|
145
|
-
}, 16, ["type", "class", "value", "disabled"])) : (n(), u(o(B), p({ key: 1 }, d.$attrs, {
|
|
146
|
-
type: e.searchType,
|
|
147
|
-
class: `das-ui-search-input main-input ${e.size} ${e.border ? "border" : ""} ${e.isIconLeft ? "left" : ""}`,
|
|
148
|
-
value: a.value,
|
|
149
|
-
"onUpdate:value": f[1] || (f[1] = (b) => a.value = b),
|
|
103
|
+
S(n(C), k({ ref: "$refSearch" }, a.$attrs, {
|
|
104
|
+
type: "text",
|
|
105
|
+
class: `main-input ${e.size} ${e.border ? "border" : ""} ${e.isIconLeft ? "left" : ""}`,
|
|
106
|
+
modelValue: n(t),
|
|
107
|
+
"onUpdate:modelValue": o[0] || (o[0] = (d) => B(t) ? t.value = d : t = d),
|
|
150
108
|
disabled: e.disabled,
|
|
151
|
-
|
|
152
|
-
|
|
109
|
+
onChange: g,
|
|
110
|
+
clearable: l.clearable
|
|
153
111
|
}), {
|
|
154
|
-
prefix:
|
|
155
|
-
e.isIconLeft ? (
|
|
112
|
+
prefix: m(() => [
|
|
113
|
+
e.isIconLeft ? (u(), h(n(b), {
|
|
156
114
|
key: 0,
|
|
157
|
-
icon: e.prefixIcon ? e.prefixIcon : "search"
|
|
158
|
-
|
|
159
|
-
}, null, 8, ["icon"])) : i("v-if", !0)
|
|
115
|
+
icon: e.prefixIcon ? e.prefixIcon : "search"
|
|
116
|
+
}, null, 8, ["icon"])) : p("v-if", !0)
|
|
160
117
|
]),
|
|
161
|
-
suffix:
|
|
162
|
-
e.
|
|
118
|
+
suffix: m(() => [
|
|
119
|
+
e.isIconLeft ? p("v-if", !0) : (u(), h(n(b), {
|
|
163
120
|
key: 0,
|
|
164
|
-
class: "close-icon",
|
|
165
|
-
size: "large",
|
|
166
|
-
icon: "empty",
|
|
167
|
-
color: "#d9d9d9",
|
|
168
|
-
onClick: C,
|
|
169
|
-
onMouseenter: k
|
|
170
|
-
})) : i("v-if", !0),
|
|
171
|
-
e.isIconLeft ? i("v-if", !0) : (n(), u(o(s), {
|
|
172
|
-
key: 1,
|
|
173
121
|
icon: e.suffixIcon ? e.suffixIcon : "search",
|
|
174
|
-
|
|
122
|
+
style: { cursor: "pointer" }
|
|
175
123
|
}, null, 8, ["icon"]))
|
|
176
124
|
]),
|
|
177
125
|
_: 1
|
|
178
126
|
/* STABLE */
|
|
179
|
-
}, 16, ["
|
|
127
|
+
}, 16, ["class", "modelValue", "disabled", "clearable"])
|
|
180
128
|
],
|
|
181
129
|
2
|
|
182
130
|
/* CLASS */
|
|
183
131
|
));
|
|
184
132
|
}
|
|
185
|
-
}),
|
|
186
|
-
const
|
|
187
|
-
for (const [
|
|
188
|
-
|
|
189
|
-
return
|
|
190
|
-
},
|
|
133
|
+
}), E = (e, i) => {
|
|
134
|
+
const l = e.__vccOpts || e;
|
|
135
|
+
for (const [r, t] of i)
|
|
136
|
+
l[r] = t;
|
|
137
|
+
return l;
|
|
138
|
+
}, N = /* @__PURE__ */ E(R, [["__scopeId", "data-v-ce975baa"]]), T = {
|
|
191
139
|
"demo-msg": {
|
|
192
140
|
"zh-CN": "这是第一个示例路由页面",
|
|
193
141
|
en: "This is Demo Page"
|
|
194
142
|
}
|
|
195
|
-
},
|
|
143
|
+
}, w = {
|
|
196
144
|
"--demo-alert-bg": {
|
|
197
145
|
light: "#fff",
|
|
198
146
|
dark: "rgba(255,255,255,.2)"
|
|
@@ -202,10 +150,10 @@ const D = {
|
|
|
202
150
|
"--das-ui-search-text": "#212121",
|
|
203
151
|
"--das-ui-search-border-active": "#5582F3"
|
|
204
152
|
};
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
const
|
|
153
|
+
$(T);
|
|
154
|
+
D(w);
|
|
155
|
+
const G = y(N);
|
|
208
156
|
export {
|
|
209
|
-
|
|
210
|
-
|
|
157
|
+
G as DasSearch,
|
|
158
|
+
G as default
|
|
211
159
|
};
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.das-ui-search.small[data-v-
|
|
1
|
+
.das-ui-search[data-v-ce975baa]{position:relative}.das-ui-search[data-v-ce975baa] .el-input__inner{font-size:12px}.das-ui-search.small[data-v-ce975baa]{width:200px}.das-ui-search.small[data-v-ce975baa] .el-input__inner{font-size:12px}.das-ui-search.large[data-v-ce975baa]{width:320px}.das-ui-search.large[data-v-ce975baa] .el-input__inner{font-size:16px}.das-ui-search.middle[data-v-ce975baa]{width:260px}.das-ui-search[data-v-ce975baa] .el-input{border-width:0 0 1px 0!important;border-color:var(--das-ui-search-border);box-shadow:none!important;outline:none}.das-ui-search[data-v-ce975baa] .el-input .el-input__wrapper{border-radius:0;box-shadow:none!important;padding:0 0 1px}.das-ui-search[data-v-ce975baa] .el-input .el-input__wrapper.is-focus .el-input__prefix .el-input__prefix-inner .das-icon,.das-ui-search[data-v-ce975baa] .el-input .el-input__wrapper.is-focus .el-input__suffix .el-input__suffix-inner .das-icon:not(.close-icon){color:var(--das-ui-search-border-active)}.das-ui-search[data-v-ce975baa] .el-input .el-input__wrapper .el-input__inner{position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--das-ui-search-text)}.das-ui-search[data-v-ce975baa] .el-input .el-input__wrapper .el-input__suffix .el-input__suffix-inner .el-input__clear{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1685934237687'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='2634'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='200'%20height='200'%3e%3cpath%20d='M512%20128c212.064%200%20384%20171.936%20384%20384s-171.936%20384-384%20384S128%20724.064%20128%20512%20299.936%20128%20512%20128z%20m-140.384%20198.72a32%2032%200%200%200-42.24%202.656l-2.656%203.008a32%2032%200%200%200%202.656%2042.24L466.72%20512l-137.344%20137.376a32%2032%200%200%200%2045.248%2045.248L512%20557.28l137.376%20137.344%203.008%202.656a32%2032%200%200%200%2042.24-2.656l2.656-3.008a32%2032%200%200%200-2.656-42.24L557.28%20512l137.344-137.376a32%2032%200%200%200-45.248-45.248L512%20466.72l-137.376-137.344z'%20fill='%23d9d9d9'%20fill-opacity='1'%20p-id='2635'%3e%3c/path%3e%3c/svg%3e");background-size:cover;width:16px;height:16px}.das-ui-search[data-v-ce975baa] .el-input .el-input__wrapper .el-input__suffix .el-input__suffix-inner .el-input__clear:hover{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1685934237687'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='2634'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='200'%20height='200'%3e%3cpath%20d='M512%20128c212.064%200%20384%20171.936%20384%20384s-171.936%20384-384%20384S128%20724.064%20128%20512%20299.936%20128%20512%20128z%20m-140.384%20198.72a32%2032%200%200%200-42.24%202.656l-2.656%203.008a32%2032%200%200%200%202.656%2042.24L466.72%20512l-137.344%20137.376a32%2032%200%200%200%2045.248%2045.248L512%20557.28l137.376%20137.344%203.008%202.656a32%2032%200%200%200%2042.24-2.656l2.656-3.008a32%2032%200%200%200-2.656-42.24L557.28%20512l137.344-137.376a32%2032%200%200%200-45.248-45.248L512%20466.72l-137.376-137.344z'%20fill='%23999999'%20fill-opacity='1'%20p-id='2635'%3e%3c/path%3e%3c/svg%3e")}.das-ui-search[data-v-ce975baa] .el-input.border{border-radius:2px;border-width:1px!important}.das-ui-search[data-v-ce975baa] .el-input.border .el-input__wrapper{padding:0 5px 0 8px}.das-ui-search[data-v-ce975baa] .el-input:hover,.das-ui-search[data-v-ce975baa] .el-input:active,.das-ui-search[data-v-ce975baa] .el-input:focus{border-color:var(--das-ui-search-border-active)}.das-ui-search[data-v-ce975baa] .el-input:hover.el-input__prefix .el-input__suffix-inner .das-icon,.das-ui-search[data-v-ce975baa] .el-input:hover.el-input__suffix .el-input__suffix-inner .das-icon:not(.close-icon),.das-ui-search[data-v-ce975baa] .el-input:active.el-input__prefix .el-input__suffix-inner .das-icon,.das-ui-search[data-v-ce975baa] .el-input:active.el-input__suffix .el-input__suffix-inner .das-icon:not(.close-icon),.das-ui-search[data-v-ce975baa] .el-input:focus.el-input__prefix .el-input__suffix-inner .das-icon,.das-ui-search[data-v-ce975baa] .el-input:focus.el-input__suffix .el-input__suffix-inner .das-icon:not(.close-icon){color:var(--das-ui-search-border-active)}.das-ui-search[data-v-ce975baa] .el-input.el-input__suffix{padding:0 0 1px;box-sizing:border-box}.das-ui-search[data-v-ce975baa] .el-input.el-input__suffix.border{padding:5px}.das-ui-search[data-v-ce975baa] .el-input.el-input__suffix.left .el-input__suffix .das-icon.close-icon{margin-right:0}.das-ui-search[data-v-ce975baa] .el-input.el-input__suffix .el-input__prefix .das-icon{color:var(--das-ui-search-icon)}.das-ui-search[data-v-ce975baa] .el-input.el-input__suffix .el-input__prefix .das-icon:hover{color:var(--das-ui-search-border-active)}.das-ui-search[data-v-ce975baa] .el-input.small .el-input__inner{height:22px}.das-ui-search[data-v-ce975baa] .el-input.middle .el-input__inner,.das-ui-search[data-v-ce975baa] .el-input.custom .el-input__inner{height:26px}.das-ui-search[data-v-ce975baa] .el-input.middle-l .el-input__inner{height:28px}.das-ui-search[data-v-ce975baa] .el-input.middle-xl .el-input__inner{height:30px}.das-ui-search[data-v-ce975baa] .el-input.large .el-input__inner{height:34px}.das-ui-search[data-v-ce975baa] .el-input .el-input__wrapper .el-input__inner{position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.das-ui-search[data-v-ce975baa] .el-input .el-input__wrapper .el-input__suffix .el-input__suffix-inner .el-input__clear{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1685934237687'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='2634'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='200'%20height='200'%3e%3cpath%20d='M512%20128c212.064%200%20384%20171.936%20384%20384s-171.936%20384-384%20384S128%20724.064%20128%20512%20299.936%20128%20512%20128z%20m-140.384%20198.72a32%2032%200%200%200-42.24%202.656l-2.656%203.008a32%2032%200%200%200%202.656%2042.24L466.72%20512l-137.344%20137.376a32%2032%200%200%200%2045.248%2045.248L512%20557.28l137.376%20137.344%203.008%202.656a32%2032%200%200%200%2042.24-2.656l2.656-3.008a32%2032%200%200%200-2.656-42.24L557.28%20512l137.344-137.376a32%2032%200%200%200-45.248-45.248L512%20466.72l-137.376-137.344z'%20fill='%23d9d9d9'%20fill-opacity='1'%20p-id='2635'%3e%3c/path%3e%3c/svg%3e");background-size:cover;width:16px;height:16px}.das-ui-search[data-v-ce975baa] .el-input .el-input__wrapper .el-input__suffix .el-input__suffix-inner .el-input__clear:hover{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1685934237687'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='2634'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='200'%20height='200'%3e%3cpath%20d='M512%20128c212.064%200%20384%20171.936%20384%20384s-171.936%20384-384%20384S128%20724.064%20128%20512%20299.936%20128%20512%20128z%20m-140.384%20198.72a32%2032%200%200%200-42.24%202.656l-2.656%203.008a32%2032%200%200%200%202.656%2042.24L466.72%20512l-137.344%20137.376a32%2032%200%200%200%2045.248%2045.248L512%20557.28l137.376%20137.344%203.008%202.656a32%2032%200%200%200%2042.24-2.656l2.656-3.008a32%2032%200%200%200-2.656-42.24L557.28%20512l137.344-137.376a32%2032%200%200%200-45.248-45.248L512%20466.72l-137.376-137.344z'%20fill='%23999999'%20fill-opacity='1'%20p-id='2635'%3e%3c/path%3e%3c/svg%3e")}.das-ui-search[data-v-ce975baa] .el-input .el-input__wrapper .el-input__suffix .el-input__suffix-inner .el-input__clear svg{display:none}
|
|
Binary file
|
|
@@ -6,6 +6,7 @@ declare const DasTableRef: () => import("vue").Ref<({
|
|
|
6
6
|
readonly [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
7
7
|
readonly rowKey?: string | undefined;
|
|
8
8
|
readonly highlightKey?: string | undefined;
|
|
9
|
+
readonly highlightRowId?: any[] | undefined;
|
|
9
10
|
readonly data?: any[] | undefined;
|
|
10
11
|
readonly loading?: boolean | undefined;
|
|
11
12
|
readonly border?: boolean | undefined;
|
|
@@ -1215,6 +1216,7 @@ declare const DasTableRef: () => import("vue").Ref<({
|
|
|
1215
1216
|
}, string, {
|
|
1216
1217
|
emptyText: string;
|
|
1217
1218
|
selectionRows: any[];
|
|
1219
|
+
highlightRowId: any[];
|
|
1218
1220
|
pageSizes: number[];
|
|
1219
1221
|
headerCellClassName: import("element-plus").CellCls;
|
|
1220
1222
|
rowClassName: import("element-plus").ColumnCls;
|
|
@@ -1252,6 +1254,7 @@ declare const DasTableRef: () => import("vue").Ref<({
|
|
|
1252
1254
|
} & Readonly<{
|
|
1253
1255
|
emptyText: string;
|
|
1254
1256
|
selectionRows: any[];
|
|
1257
|
+
highlightRowId: any[];
|
|
1255
1258
|
pageSizes: number[];
|
|
1256
1259
|
headerCellClassName: import("element-plus").CellCls;
|
|
1257
1260
|
rowClassName: import("element-plus").ColumnCls;
|
|
@@ -1268,7 +1271,7 @@ declare const DasTableRef: () => import("vue").Ref<({
|
|
|
1268
1271
|
sumText: string;
|
|
1269
1272
|
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
1270
1273
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
1271
|
-
}>, "$table" | "tableScrollTop" | "getCurrentParamsIds" | ("emptyText" | "selectionRows" | "pageSizes" | "headerCellClassName" | "rowClassName" | "paginationProps" | "currentRodioSelection" | "selectionIds" | "hideSelectionText" | "showOperationColumn" | "operationOptions" | "delay" | "showCustomContent" | "disabledIdsList" | "highPerformance" | "sumText")> & import("vue").ShallowUnwrapRef<{
|
|
1274
|
+
}>, "$table" | "tableScrollTop" | "getCurrentParamsIds" | ("emptyText" | "selectionRows" | "highlightRowId" | "pageSizes" | "headerCellClassName" | "rowClassName" | "paginationProps" | "currentRodioSelection" | "selectionIds" | "hideSelectionText" | "showOperationColumn" | "operationOptions" | "delay" | "showCustomContent" | "disabledIdsList" | "highPerformance" | "sumText")> & import("vue").ShallowUnwrapRef<{
|
|
1272
1275
|
$table: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
1273
1276
|
data: {
|
|
1274
1277
|
type: import("vue").PropType<any[]>;
|
|
@@ -2403,6 +2406,7 @@ declare const DasTableRef: () => import("vue").Ref<({
|
|
|
2403
2406
|
readonly [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
2404
2407
|
readonly rowKey?: string | undefined;
|
|
2405
2408
|
readonly highlightKey?: string | undefined;
|
|
2409
|
+
readonly highlightRowId?: any[] | undefined;
|
|
2406
2410
|
readonly data?: any[] | undefined;
|
|
2407
2411
|
readonly loading?: boolean | undefined;
|
|
2408
2412
|
readonly border?: boolean | undefined;
|
|
@@ -3612,6 +3616,7 @@ declare const DasTableRef: () => import("vue").Ref<({
|
|
|
3612
3616
|
}, string, {
|
|
3613
3617
|
emptyText: string;
|
|
3614
3618
|
selectionRows: any[];
|
|
3619
|
+
highlightRowId: any[];
|
|
3615
3620
|
pageSizes: number[];
|
|
3616
3621
|
headerCellClassName: import("element-plus").CellCls;
|
|
3617
3622
|
rowClassName: import("element-plus").ColumnCls;
|
|
@@ -3649,6 +3654,7 @@ declare const DasTableRef: () => import("vue").Ref<({
|
|
|
3649
3654
|
} & Readonly<{
|
|
3650
3655
|
emptyText: string;
|
|
3651
3656
|
selectionRows: any[];
|
|
3657
|
+
highlightRowId: any[];
|
|
3652
3658
|
pageSizes: number[];
|
|
3653
3659
|
headerCellClassName: import("element-plus").CellCls;
|
|
3654
3660
|
rowClassName: import("element-plus").ColumnCls;
|
|
@@ -3665,7 +3671,7 @@ declare const DasTableRef: () => import("vue").Ref<({
|
|
|
3665
3671
|
sumText: string;
|
|
3666
3672
|
}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
3667
3673
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
3668
|
-
}>, "$table" | "tableScrollTop" | "getCurrentParamsIds" | ("emptyText" | "selectionRows" | "pageSizes" | "headerCellClassName" | "rowClassName" | "paginationProps" | "currentRodioSelection" | "selectionIds" | "hideSelectionText" | "showOperationColumn" | "operationOptions" | "delay" | "showCustomContent" | "disabledIdsList" | "highPerformance" | "sumText")> & import("vue").ShallowUnwrapRef<{
|
|
3674
|
+
}>, "$table" | "tableScrollTop" | "getCurrentParamsIds" | ("emptyText" | "selectionRows" | "highlightRowId" | "pageSizes" | "headerCellClassName" | "rowClassName" | "paginationProps" | "currentRodioSelection" | "selectionIds" | "hideSelectionText" | "showOperationColumn" | "operationOptions" | "delay" | "showCustomContent" | "disabledIdsList" | "highPerformance" | "sumText")> & import("vue").ShallowUnwrapRef<{
|
|
3669
3675
|
$table: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
3670
3676
|
data: {
|
|
3671
3677
|
type: import("vue").PropType<any[]>;
|
|
@@ -6231,6 +6237,7 @@ declare const DasTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
6231
6237
|
}>, {
|
|
6232
6238
|
emptyText: string;
|
|
6233
6239
|
selectionRows: any[];
|
|
6240
|
+
highlightRowId: any[];
|
|
6234
6241
|
pageSizes: number[];
|
|
6235
6242
|
headerCellClassName: import("element-plus").CellCls;
|
|
6236
6243
|
rowClassName: import("element-plus").ColumnCls;
|
|
@@ -7375,6 +7382,7 @@ declare const DasTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
7375
7382
|
}, {}, {}, {}, {
|
|
7376
7383
|
emptyText: string;
|
|
7377
7384
|
selectionRows: any[];
|
|
7385
|
+
highlightRowId: any[];
|
|
7378
7386
|
pageSizes: number[];
|
|
7379
7387
|
headerCellClassName: import("element-plus").CellCls;
|
|
7380
7388
|
rowClassName: import("element-plus").ColumnCls;
|
|
@@ -8520,6 +8528,7 @@ declare const DasTable: import("@das-fed/utils").SFCWithInstall<{
|
|
|
8520
8528
|
}, string, {
|
|
8521
8529
|
emptyText: string;
|
|
8522
8530
|
selectionRows: any[];
|
|
8531
|
+
highlightRowId: any[];
|
|
8523
8532
|
pageSizes: number[];
|
|
8524
8533
|
headerCellClassName: import("element-plus").CellCls;
|
|
8525
8534
|
rowClassName: import("element-plus").ColumnCls;
|