tsv2-library 1.0.61-alpha.24 → 1.0.61-alpha.26
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.
|
@@ -171,7 +171,9 @@ export type ButtonSelectTreeEmits = {
|
|
|
171
171
|
*
|
|
172
172
|
* @group Component
|
|
173
173
|
*/
|
|
174
|
-
declare class ButtonSelectTree extends ClassComponent<ButtonSelectTreeProps> {
|
|
174
|
+
declare class ButtonSelectTree extends ClassComponent<ButtonSelectTreeProps> {
|
|
175
|
+
dialogTreeKey: Ref<number>;
|
|
176
|
+
}
|
|
175
177
|
|
|
176
178
|
declare module '@vue/runtime-core' {
|
|
177
179
|
interface GlobalComponents {
|
package/dist/tsv2-library.es.js
CHANGED
|
@@ -40256,7 +40256,7 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
|
|
|
40256
40256
|
fetchTreeOnButtonRender: { type: Boolean, default: false }
|
|
40257
40257
|
},
|
|
40258
40258
|
emits: ["update:keys", "update:selectedNode", "update:selectedNodes", "dialogShown", "dialogHidden", "reset"],
|
|
40259
|
-
setup(__props, { emit: __emit }) {
|
|
40259
|
+
setup(__props, { expose: __expose, emit: __emit }) {
|
|
40260
40260
|
const emit = __emit;
|
|
40261
40261
|
const props = __props;
|
|
40262
40262
|
onMounted(() => {
|
|
@@ -40366,6 +40366,7 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
|
|
|
40366
40366
|
selectedSingleTreeNode.value = node2;
|
|
40367
40367
|
}
|
|
40368
40368
|
);
|
|
40369
|
+
__expose({ dialogTreeKey });
|
|
40369
40370
|
return (_ctx, _cache) => {
|
|
40370
40371
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
40371
40372
|
createVNode(_sfc_main$18, mergeProps(_ctx.$attrs, {
|
|
@@ -56239,8 +56240,8 @@ const selectUserColumns = () => {
|
|
|
56239
56240
|
return {
|
|
56240
56241
|
component: _sfc_main$Q,
|
|
56241
56242
|
props: {
|
|
56242
|
-
thumbnail:
|
|
56243
|
-
preview:
|
|
56243
|
+
thumbnail: data30.profilePicture,
|
|
56244
|
+
preview: data30.profilePicture,
|
|
56244
56245
|
class: "!w-7 !h-7"
|
|
56245
56246
|
}
|
|
56246
56247
|
};
|
|
@@ -56259,7 +56260,8 @@ const selectUserColumns = () => {
|
|
|
56259
56260
|
header: "Empolyee ID",
|
|
56260
56261
|
sortable: true,
|
|
56261
56262
|
bodyTemplate(data30) {
|
|
56262
|
-
|
|
56263
|
+
var _a;
|
|
56264
|
+
return ((_a = data30 == null ? void 0 : data30.employeeId) == null ? void 0 : _a.length) ? data30 == null ? void 0 : data30.employeeId : "-";
|
|
56263
56265
|
}
|
|
56264
56266
|
},
|
|
56265
56267
|
{
|