eservices-core 1.0.333 → 1.0.334
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 +8 -1
- 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.334
|
|
3
3
|
* (c) 2022 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -3406,6 +3406,13 @@ class Table extends List {
|
|
|
3406
3406
|
this.modifierDataCreate = (data) => {
|
|
3407
3407
|
return data;
|
|
3408
3408
|
};
|
|
3409
|
+
/**
|
|
3410
|
+
* Временное решение. Происходит прослушивание массивов изменения, при изменении одного из них посылаем событие
|
|
3411
|
+
* на верх.
|
|
3412
|
+
*/
|
|
3413
|
+
vue.watch(() => [this.changes.new, this.changes.update, this.changes.delete], () => {
|
|
3414
|
+
this.emit(jenesiusVueForm.Form.EVENT_CHANGED, this.changed);
|
|
3415
|
+
});
|
|
3409
3416
|
/**
|
|
3410
3417
|
* ПРИ ИЗМЕНЕНИИ МАССИВА - МЫ ДОБАВЛЯЕМ К КАЖДОМУ ОБЪЕКТУ СВОЙСВО:
|
|
3411
3418
|
* УНИКАЛЬНЫЙ ИДЕНТИФИКАТОР ТАБЛИЦЫ(ЕСЛИ ЕГО ЕЩЁ В НЁМ НЕТ)
|