eservices-core 1.0.393 → 1.0.394
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.394
|
|
3
3
|
* (c) 2022 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -1550,6 +1550,7 @@ var script$U = /*#__PURE__*/ vue.defineComponent({
|
|
|
1550
1550
|
props: {
|
|
1551
1551
|
title: { type: String, required: true },
|
|
1552
1552
|
callback: { type: Function, required: true },
|
|
1553
|
+
wait: { type: Boolean, required: false },
|
|
1553
1554
|
default: { type: Boolean, required: false }
|
|
1554
1555
|
},
|
|
1555
1556
|
setup(__props) {
|
|
@@ -1567,14 +1568,14 @@ var script$U = /*#__PURE__*/ vue.defineComponent({
|
|
|
1567
1568
|
class: "button-wrap",
|
|
1568
1569
|
onClick: _cache[0] || (_cache[0] = ($event) => (vue.unref(pw).call()))
|
|
1569
1570
|
}, [
|
|
1570
|
-
(vue.unref(pw).wait)
|
|
1571
|
+
(vue.unref(pw).wait || __props.wait)
|
|
1571
1572
|
? (vue.openBlock(), vue.createBlock(script$X, {
|
|
1572
1573
|
key: 0,
|
|
1573
1574
|
class: "button-spinner"
|
|
1574
1575
|
}))
|
|
1575
1576
|
: vue.createCommentVNode("v-if", true),
|
|
1576
1577
|
vue.createElementVNode("button", _hoisted_1$O, [
|
|
1577
|
-
vue.createTextVNode(vue.toDisplayString(__props.title), 1 /* TEXT */),
|
|
1578
|
+
vue.createTextVNode(vue.toDisplayString(__props.title) + " ", 1 /* TEXT */),
|
|
1578
1579
|
vue.renderSlot(_ctx.$slots, "default")
|
|
1579
1580
|
])
|
|
1580
1581
|
]));
|
|
@@ -1582,7 +1583,7 @@ var script$U = /*#__PURE__*/ vue.defineComponent({
|
|
|
1582
1583
|
}
|
|
1583
1584
|
});
|
|
1584
1585
|
|
|
1585
|
-
var css_248z$P = "\n.button-wrap[data-v-a88b4694]{\r\n\r\n
|
|
1586
|
+
var css_248z$P = "\n.button-wrap[data-v-a88b4694] {\r\n\r\n position: relative;\n}\n.button-spinner[data-v-a88b4694] {\r\n position: absolute;\r\n top: 0;\r\n bottom: 0;\r\n left: 5px;\r\n margin: auto;\n}\n.button-element[data-v-a88b4694] {\r\n height: 100%;\r\n width: 100%;\r\n padding: 0 20px;\r\n\r\n cursor: pointer;\r\n background-color: transparent;\r\n outline: unset;\r\n border: unset;\r\n color: unset;\r\n\r\n font-weight: unset;\r\n font-size: unset;\n}\r\n";
|
|
1586
1587
|
styleInject(css_248z$P);
|
|
1587
1588
|
|
|
1588
1589
|
script$U.__scopeId = "data-v-a88b4694";
|
|
@@ -6140,7 +6141,7 @@ var script$9 = /*#__PURE__*/ vue.defineComponent({
|
|
|
6140
6141
|
}
|
|
6141
6142
|
});
|
|
6142
6143
|
|
|
6143
|
-
var css_248z$8 = "\n.user-card[data-v-610b1eb4]{\r\n
|
|
6144
|
+
var css_248z$8 = "\n.user-card[data-v-610b1eb4] {\r\n display: flex;\r\n align-items: center;\r\n\r\n gap: 15px;\r\n padding: 0 35px 0 0;\r\n height: 100%;\r\n user-select: none;\r\n cursor: pointer;\n}\n.user-card-image[data-v-610b1eb4] {\r\n height: 40px;\r\n width: 40px;\r\n object-fit: cover;\r\n\r\n border-radius: 50%;\n}\n.user-card__popup[data-v-610b1eb4] {\r\n position: absolute;\r\n right: 0;\r\n min-width: 250px;\r\n z-index: 5;\n}\n.user-card__current-name[data-v-610b1eb4] {\r\n color: white;\r\n padding: 0 0 0 15px;\r\n max-width: 250px;\r\n text-overflow: ellipsis;\r\n overflow: hidden;\r\n white-space: nowrap;\n}\n.user-card__person-name[data-v-610b1eb4] {\r\n color: #d3d2d2;\n}\n.user-card-labels p[data-v-610b1eb4] {\r\n margin: 0;\n}\r\n";
|
|
6144
6145
|
styleInject(css_248z$8);
|
|
6145
6146
|
|
|
6146
6147
|
script$9.__scopeId = "data-v-610b1eb4";
|
|
@@ -7,6 +7,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
type: FunctionConstructor;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
|
+
wait: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
};
|
|
10
14
|
default: {
|
|
11
15
|
type: BooleanConstructor;
|
|
12
16
|
required: false;
|
|
@@ -22,11 +26,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
26
|
type: FunctionConstructor;
|
|
23
27
|
required: true;
|
|
24
28
|
};
|
|
29
|
+
wait: {
|
|
30
|
+
type: BooleanConstructor;
|
|
31
|
+
required: false;
|
|
32
|
+
};
|
|
25
33
|
default: {
|
|
26
34
|
type: BooleanConstructor;
|
|
27
35
|
required: false;
|
|
28
36
|
};
|
|
29
37
|
}>>, {
|
|
38
|
+
wait: boolean;
|
|
30
39
|
default: boolean;
|
|
31
40
|
}>;
|
|
32
41
|
export default _default;
|