eservices-core 1.0.456 → 1.0.458
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
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* eservices-core v1.0.
|
|
2
|
+
* eservices-core v1.0.458
|
|
3
3
|
* (c) 2022 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -1327,8 +1327,8 @@ const _hoisted_1$r = { class: "button-element" };
|
|
|
1327
1327
|
var script$x = /*#__PURE__*/ vue.defineComponent({
|
|
1328
1328
|
__name: 'WidgetButton',
|
|
1329
1329
|
props: {
|
|
1330
|
-
title: { type: String, required:
|
|
1331
|
-
callback: { type: Function, required:
|
|
1330
|
+
title: { type: String, required: false },
|
|
1331
|
+
callback: { type: Function, required: false },
|
|
1332
1332
|
wait: { type: Boolean, required: false },
|
|
1333
1333
|
default: { type: Boolean, required: false }
|
|
1334
1334
|
},
|
|
@@ -3116,6 +3116,11 @@ function getTableCell$1(cell, rowValue) {
|
|
|
3116
3116
|
}
|
|
3117
3117
|
const outputNodes = [];
|
|
3118
3118
|
const cellNodeChildren = [];
|
|
3119
|
+
/**
|
|
3120
|
+
* Если указан hide свойство, и функция возвращает true - возращаем пустую ячейку.
|
|
3121
|
+
* */
|
|
3122
|
+
if (cell.hide && cell.hide(rowValue))
|
|
3123
|
+
return [vue.h("td")];
|
|
3119
3124
|
if (cell.type) {
|
|
3120
3125
|
addClass(`widget-table-cell_${cell.type}`);
|
|
3121
3126
|
switch (cell.type) {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
title: {
|
|
3
3
|
type: StringConstructor;
|
|
4
|
-
required:
|
|
4
|
+
required: false;
|
|
5
5
|
};
|
|
6
6
|
callback: {
|
|
7
7
|
type: FunctionConstructor;
|
|
8
|
-
required:
|
|
8
|
+
required: false;
|
|
9
9
|
};
|
|
10
10
|
wait: {
|
|
11
11
|
type: BooleanConstructor;
|
|
@@ -20,11 +20,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
21
|
title: {
|
|
22
22
|
type: StringConstructor;
|
|
23
|
-
required:
|
|
23
|
+
required: false;
|
|
24
24
|
};
|
|
25
25
|
callback: {
|
|
26
26
|
type: FunctionConstructor;
|
|
27
|
-
required:
|
|
27
|
+
required: false;
|
|
28
28
|
};
|
|
29
29
|
wait: {
|
|
30
30
|
type: BooleanConstructor;
|