eservices-core 1.0.586 → 1.0.587
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/dist/index.js +2 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* eservices-core v1.0.
|
|
2
|
+
* eservices-core v1.0.587
|
|
3
3
|
* (c) 2023 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -4176,16 +4176,12 @@ var script$d = /*#__PURE__*/ vue.defineComponent({
|
|
|
4176
4176
|
if (!isMulti)
|
|
4177
4177
|
return emits('update:selectRows', [v]);
|
|
4178
4178
|
const index = props.selectRows.indexOf(v);
|
|
4179
|
-
console.log(index);
|
|
4180
4179
|
if (index === -1)
|
|
4181
4180
|
return emits('update:selectRows', [...props.selectRows, v]);
|
|
4182
4181
|
return emits('update:selectRows', props.selectRows.filter(t => t !== v));
|
|
4183
4182
|
}
|
|
4184
4183
|
function selectAll() {
|
|
4185
|
-
props.array
|
|
4186
|
-
console.log(data);
|
|
4187
|
-
onSelect(data, true);
|
|
4188
|
-
});
|
|
4184
|
+
return emits('update:selectRows', props.array);
|
|
4189
4185
|
}
|
|
4190
4186
|
return (_ctx, _cache) => {
|
|
4191
4187
|
return (vue.openBlock(), vue.createElementBlock("table", _hoisted_1$a, [
|